:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #6f7378;
  --paper: #f5f4f1;
  --card: #ffffff;
  --line: #e4e5e7;
  --line-strong: #cfd2d5;
  --accent: #0f766e;
  --commerce-accent: #fe2c55;
  --commerce-accent-dark: #e8294e;
  --commerce-soft: #f2f2f2;
  --star: #f2a10d;
  --shadow: 0 24px 70px rgba(22, 24, 26, 0.14);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { width: 100%; max-width: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: hidden; overflow-x: clip; color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.5; text-rendering: optimizeLegibility; overscroll-behavior-x: none; }
main, .product-shell, .gallery, .product-panel, .reviews, .related-videos, .feature-section { min-width: 0; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(15, 118, 110, 0.28); outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(18, 20, 22, 0.08);
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; font-weight: 760; letter-spacing: -0.02em; text-decoration: none; }
.brand__logo { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; background: #fff; }
.cart-button { position: relative; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid rgba(18, 20, 22, 0.08); border-radius: 999px; color: var(--ink); background: #fff; cursor: pointer; }
.cart-icon { display: block; width: 24px; height: 24px; }
.cart-count { position: absolute; top: -2px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid #faf9f7; border-radius: 999px; color: #fff; background: var(--commerce-accent); font-size: 0.7rem; font-weight: 800; line-height: 16px; text-align: center; }

.product-shell { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); min-height: calc(100vh - 72px); }
.gallery { overflow: hidden; padding: clamp(20px, 4vw, 64px); background: #e9e7e2; }
.gallery__stage { position: relative; aspect-ratio: 1; min-height: 0; overflow: hidden; border-radius: 28px; background: #fff; touch-action: pan-y; }
.gallery__stage img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; user-select: none; -webkit-user-drag: none; }
.gallery__stage img.is-entering-next { animation: gallery-image-next 240ms cubic-bezier(.2, .75, .25, 1); }
.gallery__stage img.is-entering-previous { animation: gallery-image-previous 240ms cubic-bezier(.2, .75, .25, 1); }
.gallery__nav { position: absolute; z-index: 2; top: 50%; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(21, 21, 21, 0.1); border-radius: 50%; color: var(--ink); background: rgba(255, 255, 255, 0.9); box-shadow: 0 6px 18px rgba(21, 21, 21, 0.12); font-size: 1.8rem; line-height: 1; cursor: pointer; transform: translateY(-50%); backdrop-filter: blur(8px); }
.gallery__nav:hover { background: #fff; }
.gallery__nav--previous { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__thumbs { display: flex; width: 100%; max-width: 100%; gap: 10px; padding-top: 14px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scrollbar-width: none; -ms-overflow-style: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; width: 0; height: 0; }
.thumb { width: 68px; height: 68px; flex: 0 0 68px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 14px; background: #fff; cursor: pointer; }
.thumb[aria-current="true"] { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }

.product-panel { padding: clamp(34px, 6vw, 92px) clamp(24px, 4vw, 62px) clamp(14px, 2vw, 24px); background: #fff; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2 { margin: 0; line-height: 1.04; letter-spacing: -0.042em; }
h1 { max-width: none; font-size: clamp(2.3rem, 4.3vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
.product-panel h1 { width: 100%; max-width: none; color: #202020; font-family: TikTokSans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 20px; font-weight: 600; line-height: 25px; letter-spacing: 0.3px; overflow-wrap: anywhere; text-wrap: pretty; }
.rating-line { display: flex; width: 100%; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; color: var(--muted); font-size: 0.9rem; }
.rating-line strong { color: var(--ink); font-size: 0.95rem; }
.stars { color: var(--star); letter-spacing: 0.08em; }
.sold-count { display: inline-flex; align-items: center; gap: 8px; color: #454a4e; font-weight: 650; }
.sold-count::before { content: ""; width: 1px; height: 14px; background: var(--line-strong); }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 0 0 12px; }
.discount-percentage { color: var(--commerce-accent); font-size: 1.1rem; font-weight: 750; letter-spacing: -0.01em; }
.price { margin: 0; font-size: 2rem; font-weight: 760; letter-spacing: -0.025em; }
.compare-at-price { color: #7b7e83; font-size: 1rem; font-weight: 650; }
.variants { display: grid; gap: 18px; margin: 22px 0; }
.variant-group { padding: 0; border: 0; margin: 0; }
.variant-group legend { margin-bottom: 10px; font-weight: 720; }
.variant-options { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option__content { display: inline-flex; min-height: 48px; align-items: center; gap: 9px; padding: 5px 13px 5px 5px; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--ink); background: #fff; cursor: pointer; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.variant-option__content--text-only { padding: 11px 16px; border-radius: 999px; }
.variant-option__image { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 7px; object-fit: contain; background: #f6f6f5; }
.variant-option__label { font-size: 0.88rem; font-weight: 650; line-height: 1.2; }
.variant-option:hover .variant-option__content { border-color: #8d9194; }
.variant-option input:focus-visible + .variant-option__content { outline: 3px solid rgba(15, 118, 110, 0.28); outline-offset: 3px; }
.variant-option input:checked + .variant-option__content { border-color: var(--ink); background: #f5f5f4; box-shadow: inset 0 0 0 1px var(--ink); }
.variant-sheet-trigger { display: none; width: 100%; min-height: 72px; align-items: center; gap: 12px; padding: 9px 13px 9px 9px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); text-align: left; background: #fff; cursor: pointer; }
.variant-sheet-trigger__media { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; overflow: hidden; border-radius: 8px; background: #f5f5f4; }
.variant-sheet-trigger__media img { width: 100%; height: 100%; object-fit: contain; }
.variant-sheet-trigger__copy { display: grid; min-width: 0; flex: 1; gap: 4px; }
.variant-sheet-trigger__copy strong { font-size: 0.92rem; }
.variant-sheet-trigger__copy small { overflow: hidden; color: var(--muted); font-size: 0.82rem; text-overflow: ellipsis; white-space: nowrap; }
.variant-sheet-trigger__chevron { color: #62666a; font-size: 1.8rem; line-height: 1; }
.purchase-actions { display: grid; gap: 10px; margin-top: 24px; }
.commerce-button { width: 100%; min-height: 52px; padding: 0 24px; border: 0; border-radius: 999px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform 160ms ease, background 160ms ease, opacity 160ms ease; }
.commerce-button--buy { color: #fff; background: var(--commerce-accent); }
.commerce-button--buy:hover { background: var(--commerce-accent-dark); transform: translateY(-1px); }
.commerce-button--cart { color: #111; background: var(--commerce-soft); }
.commerce-button--cart:hover { background: #e8e8e8; transform: translateY(-1px); }
.commerce-button:disabled { cursor: not-allowed; opacity: 0.46; transform: none; }
.policy-list { margin-top: 18px; border-top: 1px solid var(--line); }
.policy-row { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border: 0; border-bottom: 1px solid var(--line); text-align: left; background: transparent; cursor: pointer; }
.policy-row__lead { display: flex; min-width: 0; align-items: center; gap: 15px; }
.policy-row__lead > span:last-child { display: grid; gap: 5px; }
.policy-row small { color: var(--muted); }
.policy-icon { display: inline-block; width: 28px; height: 28px; flex: 0 0 28px; color: #242729; background-position: center; background-repeat: no-repeat; background-size: contain; }
.policy-icon--shipping { background-image: url("assets/tiktok-shop-shipping.svg"); }
.policy-icon--returns { background-image: url("assets/tiktok-shop-returns.svg"); }

.feature-section { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(24px, 4vw, 54px); padding: clamp(26px, 3.5vw, 42px) clamp(24px, 7vw, 110px); color: #fff; background: #17211f; }
.feature-section__heading { align-self: start; }
.feature-section__content { min-width: 0; }
.product-detail-sections { position: relative; display: grid; }
.product-detail-sections.is-collapsed { max-height: 620px; overflow: hidden; }
.product-detail-sections.is-collapsed::after { position: absolute; right: 0; bottom: 0; left: 0; height: 110px; background: linear-gradient(180deg, rgba(23, 33, 31, 0), #17211f 88%); content: ""; pointer-events: none; }
.product-details-toggle { min-width: 150px; min-height: 46px; padding: 0 22px; margin-top: 22px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 999px; color: #fff; background: transparent; font-weight: 750; cursor: pointer; }
.product-details-toggle:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.product-detail-block { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.product-detail-block:first-child { padding-top: 0; border-top: 0; }
.product-detail-block h3 { margin: 0 0 15px; color: #fff; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.product-detail-block p { margin: 0 0 15px; color: #d5dfdc; font-size: clamp(1rem, 1.3vw, 1.16rem); line-height: 1.7; }
.product-detail-block ul { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.product-detail-block li { position: relative; padding: 13px 0 13px 21px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #e6ecea; line-height: 1.55; }
.product-detail-block li::before { content: ""; position: absolute; top: 22px; left: 1px; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.product-faq { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.product-faq summary { position: relative; padding: 17px 32px 17px 0; color: #fff; font-weight: 750; cursor: pointer; list-style: none; }
.product-faq summary::-webkit-details-marker { display: none; }
.product-faq summary::after { content: "+"; position: absolute; top: 15px; right: 2px; font-size: 1.25rem; font-weight: 400; }
.product-faq[open] summary::after { content: "−"; }
.product-faq p { margin-bottom: 19px; font-size: 0.98rem; }

.reviews { padding: clamp(14px, 2vw, 24px) clamp(24px, 7vw, 110px) clamp(26px, 3.5vw, 42px); background: #fff; }
.reviews__summary, .review-toolbar, .review-grid, .review-load-more { width: min(100%, 920px); margin-inline: auto; }
.reviews__summary h2 { margin-bottom: 21px; }
.reviews__score { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 25px; color: var(--ink); font-size: 1.05rem; font-weight: 750; }
.reviews__score strong { font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.reviews__score-star { font-size: 2rem; line-height: 1; }
.reviews__score-divider { width: 1px; height: 25px; margin-inline: 2px; background: var(--line); }
.rating-distribution { display: grid; gap: 11px; padding-bottom: 22px; }
.rating-distribution[hidden] { display: none; }
.rating-distribution__row { display: grid; grid-template-columns: 43px minmax(0, 1fr) 62px; align-items: center; gap: 12px; }
.rating-distribution__label { color: #26292b; font-size: 0.9rem; font-weight: 750; white-space: nowrap; }
.rating-distribution__track { height: 8px; overflow: hidden; border-radius: 99px; background: #eee; }
.rating-distribution__fill { display: block; height: 100%; border-radius: inherit; background: #242627; }
.rating-distribution__value { color: #878b8e; font-size: 0.88rem; text-align: right; }
.review-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0 28px; border-top: 1px solid var(--line); }
.review-sort-controls { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 4px; border-radius: 13px; background: #f0f0ef; }
.review-sort-button { min-width: 130px; min-height: 40px; padding: 0 16px; border: 0; border-radius: 10px; color: #555a5e; background: transparent; font-size: 0.82rem; font-weight: 750; cursor: pointer; }
.review-sort-button:hover { color: var(--ink); background: rgba(255, 255, 255, 0.62); }
.review-sort-button[aria-pressed="true"] { color: #fff; background: var(--ink); box-shadow: 0 2px 8px rgba(21, 21, 21, 0.16); }
.review-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.review-card { min-width: 0; padding: 25px 0; border-bottom: 1px solid var(--line); background: #fff; }
.review-card:first-child { padding-top: 0; }
.review-card__layout { display: grid; min-width: 0; }
.review-card--with-media .review-card__layout { grid-template-columns: minmax(0, 1fr) 220px; align-items: start; gap: 24px; }
.review-card__copy { min-width: 0; }
.review-card__header { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 11px; }
.review-avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #2f3c3a, #0f766e); font-weight: 800; object-fit: cover; }
.review-identity { display: grid; gap: 3px; min-width: 0; }
.review-identity strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.verified-badge { color: var(--accent); font-size: 0.76rem; font-weight: 700; }
.review-card time { color: var(--muted); font-size: 0.76rem; }
.review-rating-row { display: flex; align-items: center; gap: 10px; margin-top: 13px; }
.review-stars { font-size: 0.82rem; }
.review-card blockquote { margin: 10px 0 0; color: #202326; font-size: 0.95rem; line-height: 1.62; }
.purchased-product { margin: 9px 0 0; color: #74787b; font-size: 0.78rem; line-height: 1.45; }
.purchased-product span { margin-right: 5px; color: var(--muted); }
.review-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.review-media[data-count="1"] { grid-template-columns: minmax(0, 1fr); }
.review-media__button { position: relative; aspect-ratio: 1; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: 10px; background: #111; cursor: zoom-in; }
.review-media__button > img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.review-media__button:hover > img { transform: scale(1.035); }
.review-media__play { position: absolute; top: 50%; left: 50%; width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 50%; background: rgba(0, 0, 0, 0.56); transform: translate(-50%, -50%); }
.review-media__play::after { content: ""; position: absolute; top: 10px; left: 14px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 10px solid #fff; }
.review-media__more { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(0, 0, 0, 0.56); font-size: 1.2rem; font-weight: 800; }
.review-load-more { display: block; min-height: 48px; margin-top: 24px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink); background: #fff; font-weight: 750; cursor: pointer; }
.review-load-more[hidden] { display: none; }
.review-load-more:hover { background: #f5f5f4; }

.related-videos { padding: clamp(26px, 3.5vw, 42px) clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); background: #fff; }
.section-heading { display: grid; max-width: 760px; gap: 4px; margin-bottom: 18px; }
.video-grid { display: grid; width: min(100%, 760px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.video-card__launch { position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; overflow: hidden; border: 0; background: #111; cursor: pointer; }
.video-card__launch > img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.video-card__launch:hover > img { transform: scale(1.02); }
.video-card__launch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.16), transparent 34%); pointer-events: none; }
.video-card__play { position: absolute; z-index: 1; top: 50%; left: 50%; width: 54px; height: 54px; border: 1px solid rgba(255, 255, 255, 0.78); border-radius: 50%; background: rgba(0, 0, 0, 0.48); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); transform: translate(-50%, -50%); }
.video-card__play::after { content: ""; position: absolute; top: 16px; left: 21px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid #fff; }
.video-card__copy { display: grid; gap: 12px; padding: 14px; }
.video-card__copy h3 { display: -webkit-box; margin: 0; overflow: hidden; font-size: 0.95rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.video-card__meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.78rem; }
.video-creator { display: flex; min-width: 0; align-items: center; gap: 7px; }
.video-creator__avatar { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 50%; color: #fff; background: #34403d; font-size: 0.7rem; object-fit: cover; }
.video-creator__copy { display: grid; min-width: 0; gap: 2px; }
.video-creator strong { overflow: hidden; color: #3a3e41; text-overflow: ellipsis; white-space: nowrap; }
.video-likes { flex: 0 0 auto; color: #616568; white-space: nowrap; }
.video-load-more { display: block; width: min(100%, 760px); min-height: 48px; margin-top: 20px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink); background: #fff; font-weight: 750; cursor: pointer; }
.video-load-more[hidden] { display: none; }
.video-load-more:hover { background: #f5f5f4; }

.dialog { width: min(560px, calc(100% - 32px)); padding: 34px; border: 0; border-radius: 24px; box-shadow: var(--shadow); }
.dialog::backdrop { background: rgba(8, 11, 13, 0.58); backdrop-filter: blur(4px); }
.dialog__close { position: absolute; top: 14px; right: 16px; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: #f2f2f2; font-size: 1.5rem; cursor: pointer; }
.dialog p { line-height: 1.65; }

.dialog--variant { inset: auto 0 0; width: min(620px, 100%); max-width: none; max-height: min(68dvh, 620px); padding: 0; margin: auto auto 0; overflow: hidden; border-radius: 20px 20px 0 0; background: #fff; }
.dialog--variant[open] { display: grid; grid-template-rows: auto auto auto minmax(0, 1fr) auto; animation: variant-sheet-in 220ms cubic-bezier(.2, .75, .25, 1) both; }
.variant-sheet__handle { display: block; width: 38px; height: 4px; margin: 8px auto 0; border-radius: 999px; background: #d5d6d8; }
.variant-sheet__header { display: flex; min-height: 56px; align-items: center; justify-content: space-between; padding: 8px 18px; border-bottom: 1px solid var(--line); }
.variant-sheet__header h2 { font-size: 1.1rem; line-height: 1.25; letter-spacing: -0.01em; }
.variant-sheet__close { position: static; width: 36px; height: 36px; flex: 0 0 36px; font-size: 1.3rem; }
.variant-sheet__product { display: grid; grid-template-columns: 68px minmax(0, 1fr); align-items: center; gap: 13px; padding: 14px 18px; }
.variant-sheet__product > img { width: 68px; height: 68px; border-radius: 9px; object-fit: contain; background: #f5f5f4; }
.variant-sheet__product > div { display: grid; gap: 5px; }
.variant-sheet__product strong { font-size: 1.35rem; }
.variant-sheet__product span { color: var(--muted); font-size: 0.85rem; }
.variant-sheet__options { display: grid; gap: 20px; padding: 4px 18px 18px; overflow-y: auto; overscroll-behavior: contain; }
.variant-sheet__options .variant-group legend { margin-bottom: 11px; font-size: 1rem; font-weight: 700; }
.variant-sheet__options .variant-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.variant-sheet__options .variant-option__content { width: 100%; min-height: 58px; padding: 5px 9px 5px 5px; }
.variant-sheet__options .variant-option__image { width: 46px; height: 46px; flex-basis: 46px; }
.variant-sheet__options .variant-option__label { font-size: 0.78rem; }
.variant-sheet__footer { padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }

.video-player-dialog { width: min(440px, calc(100vw - 24px), calc(56.25dvh - 13.5px)); max-height: calc(100dvh - 24px); padding: 0; overflow: hidden; border: 0; border-radius: 20px; color: #fff; background: #050505; box-shadow: var(--shadow); }
.video-player-dialog[open] { display: grid; }
.video-player-dialog::backdrop { background: rgba(3, 4, 5, 0.86); backdrop-filter: blur(8px); }
.video-player-dialog__close { z-index: 2; top: 10px; right: 10px; color: #fff; background: rgba(255, 255, 255, 0.16); }
.video-player-dialog iframe { display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; background: #050505; }
.video-player-page { min-height: 100dvh; padding: 0; overflow: hidden; color: #fff; background: #050505; }
.video-player-shell { position: relative; display: grid; min-height: 100dvh; place-items: center; overflow: hidden; background: #050505; }
.video-player-shell video { display: block; width: 100%; height: 100dvh; object-fit: contain; background: #050505; }
.video-player-start { position: absolute; top: 50%; left: 50%; display: grid; width: 66px; height: 66px; padding: 0; place-items: center; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 50%; background: rgba(0, 0, 0, 0.58); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36); cursor: pointer; transform: translate(-50%, -50%); }
.video-player-start span { width: 0; height: 0; margin-left: 5px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 18px solid #fff; }
.video-player-error { position: absolute; inset: auto 24px 48px; margin: 0; color: #ddd; font-size: 0.9rem; text-align: center; }

.review-viewer { width: min(960px, calc(100% - 32px)); height: min(82dvh, 760px); max-height: none; padding: 0; overflow: hidden; border: 0; border-radius: 20px; color: #fff; background: #111; box-shadow: var(--shadow); }
.review-viewer[open] { display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.review-viewer::backdrop { background: rgba(4, 5, 6, 0.82); backdrop-filter: blur(7px); }
.review-viewer__stage { display: grid; min-width: 0; min-height: 0; place-items: center; padding: 54px 72px 24px; overflow: hidden; }
.review-viewer__stage img, .review-viewer__stage video { display: block; max-width: 100%; max-height: 100%; border-radius: 8px; object-fit: contain; }
.review-viewer__close { z-index: 2; top: 12px; right: 12px; color: #fff; background: rgba(255, 255, 255, 0.14); }
.review-viewer__nav { position: absolute; z-index: 2; top: 50%; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 0; border-radius: 50%; color: #fff; background: rgba(255, 255, 255, 0.15); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.review-viewer__nav--prev { left: 14px; }
.review-viewer__nav--next { right: 14px; }
.review-viewer__nav:disabled { cursor: default; opacity: 0.22; }
.review-viewer__footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 58px; padding: 14px 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #d6d7d8; }
.review-viewer__footer strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dialog--cart { inset: 0 0 0 auto; width: min(470px, 100%); max-width: none; height: 100dvh; max-height: 100dvh; padding: 0; margin: 0; overflow: hidden; border-radius: 24px 0 0 24px; background: #f7f7f6; }
.dialog--cart[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; animation: cart-drawer-in 220ms ease-out both; }
.dialog--cart[open]::backdrop { animation: backdrop-in 180ms ease-out both; }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 28px 26px 22px; border-bottom: 1px solid var(--line); background: #fff; }
.drawer-header .eyebrow { margin-bottom: 6px; color: var(--muted); }
.drawer-header h2 { font-size: 1.65rem; letter-spacing: -0.035em; }
.drawer-header h2 span { color: var(--muted); font-size: 1rem; font-weight: 600; }
.drawer-header .dialog__close { position: static; flex: 0 0 auto; }
.drawer-body { padding: 22px 26px; overflow-y: auto; }
.cart-empty { display: grid; min-height: 58vh; align-content: center; justify-items: center; margin: 0; padding: 40px 16px; color: var(--muted); text-align: center; }
.cart-empty[hidden] { display: none; }
.cart-empty h3 { margin: 18px 0 4px; color: var(--ink); font-size: 1.15rem; }
.cart-empty p { max-width: 30ch; margin: 0; font-size: 0.9rem; }
.empty-bag-icon { position: relative; width: 62px; height: 58px; border: 2px solid #b9bdc0; border-radius: 8px 8px 14px 14px; }
.empty-bag-icon::before { content: ""; position: absolute; top: -16px; left: 17px; width: 24px; height: 26px; border: 2px solid #b9bdc0; border-bottom: 0; border-radius: 18px 18px 0 0; }
.cart-item { display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: 17px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 5px 18px rgba(20, 22, 24, 0.04); }
.cart-item[hidden] { display: none; }
.cart-item > img { width: 116px; height: 116px; border-radius: 14px; object-fit: cover; background: var(--paper); }
.cart-item__content { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.cart-item h3 { display: -webkit-box; margin: 0 0 6px; overflow: hidden; font-size: 0.95rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cart-item__meta { margin: 0 0 8px; color: var(--muted); font-size: 0.8rem; }
.cart-item__actions { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; }
.quantity-stepper { display: grid; grid-template-columns: 32px 30px 32px; align-items: center; min-height: 34px; border: 1px solid var(--line-strong); border-radius: 999px; text-align: center; }
.quantity-stepper button { height: 32px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.quantity-stepper span { font-size: 0.85rem; font-weight: 750; }
.text-button { padding: 0; border: 0; color: #555a5e; background: transparent; font-size: 0.8rem; font-weight: 650; text-decoration: underline; cursor: pointer; }
.drawer-footer { padding: 20px 26px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -10px 30px rgba(20, 22, 24, 0.06); }
.drawer-footer[hidden] { display: none; }
.drawer-subtotal { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem; }
.drawer-subtotal strong { font-size: 1.25rem; }
.drawer-footer p { margin: 7px 0 18px; color: var(--muted); font-size: 0.8rem; }

.checkout-page { min-height: 100vh; background: #f4f4f2; }
.checkout-header { position: sticky; z-index: 5; top: 0; display: grid; grid-template-columns: 1fr auto 1fr; min-height: 74px; align-items: center; padding: 12px clamp(20px, 4vw, 58px); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px); }
.checkout-back { justify-self: start; padding: 10px 0; border: 0; color: #34383b; background: transparent; font-weight: 600; cursor: pointer; }
.checkout-brand { display: inline-flex; align-items: center; gap: 10px; }
.checkout-brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.secure-label { justify-self: end; color: var(--muted); font-size: 0.82rem; font-weight: 650; }
.secure-label::before { content: "▣"; margin-right: 7px; color: var(--accent); }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 710px) minmax(340px, 430px); justify-content: center; gap: clamp(28px, 5vw, 76px); max-width: 1320px; padding: 50px clamp(22px, 5vw, 76px) 80px; margin: 0 auto; }
.checkout-main { display: grid; gap: 18px; min-width: 0; }
.checkout-intro { padding: 5px 0 12px; }
.checkout-intro h1 { max-width: none; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; }
.checkout-order-details { display: none; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #eeefed; }
.checkout-order-details summary { display: grid; min-height: 64px; grid-template-columns: minmax(0, 1fr) auto 18px; align-items: center; gap: 12px; padding: 12px 16px; cursor: pointer; list-style: none; }
.checkout-order-details summary::-webkit-details-marker { display: none; }
.checkout-order-details__label { display: grid; gap: 3px; }
.checkout-order-details__label strong { font-size: 0.94rem; }
.checkout-order-details__label small { color: var(--muted); font-size: 0.76rem; }
.checkout-order-details summary > b { font-size: 0.98rem; white-space: nowrap; }
.checkout-order-details__chevron { width: 9px; height: 9px; border-right: 2px solid #555a5e; border-bottom: 2px solid #555a5e; transform: rotate(45deg) translateY(-2px); transition: transform 160ms ease; }
.checkout-order-details[open] .checkout-order-details__chevron { transform: rotate(225deg) translate(-2px, -2px); }
.checkout-order-details__content { padding: 0 16px 18px; border-top: 1px solid #d5d7d5; }
.checkout-order-details__content .summary-product { padding-top: 18px; }
.checkout-card { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.checkout-card__heading { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 13px; align-items: center; margin-bottom: 24px; }
.checkout-card__heading > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 0.86rem; font-weight: 800; }
.checkout-card h2 { font-size: 1.22rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.012em; }
.checkout-card__heading p { margin: 5px 0 0; color: var(--muted); font-size: 0.86rem; }
.checkout-fields, .card-fields { display: grid; gap: 14px; }
.checkout-main label { display: grid; gap: 7px; color: #33373a; font-size: 0.9rem; font-weight: 600; line-height: 1.35; }
.checkout-main label > span { color: var(--muted); font-weight: 400; }
.checkout-main .field-label { display: inline-flex; align-items: baseline; gap: 5px; color: #33373a; font-weight: 600; }
.field-label small { color: var(--muted); font-size: inherit; font-weight: 400; }
.checkout-main input:not([type="radio"]), .checkout-main select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line-strong); border-radius: 9px; color: var(--ink); background: #fff; font-size: 1rem; font-weight: 400; line-height: 1.4; letter-spacing: 0; }
.checkout-main input::placeholder { color: #7b8084; font-weight: 400; opacity: 1; }
.checkout-main input:focus, .checkout-main select:focus { border-color: #62676a; outline: 3px solid rgba(21, 21, 21, 0.07); }
.phone-input-shell { display: flex; min-height: 48px; align-items: stretch; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 9px; background: #fff; transition: border-color 140ms ease, box-shadow 140ms ease; }
.phone-input-shell:focus-within { border-color: #62676a; box-shadow: 0 0 0 3px rgba(21, 21, 21, 0.07); }
.phone-prefix { display: inline-flex; min-width: 92px; align-items: center; justify-content: center; gap: 8px; padding: 0 13px; border-right: 1px solid var(--line); color: #313538; background: #f7f7f6; }
.phone-prefix > span { font-size: 1.15rem; }
.phone-prefix strong { font-size: 0.9rem; font-weight: 600; }
.phone-input-shell input { min-width: 0; border: 0 !important; border-radius: 0 !important; outline: 0 !important; box-shadow: none !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.shipping-options { display: grid; gap: 10px; }
.shipping-option { display: grid !important; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px !important; padding: 16px; border: 1px solid var(--line-strong); border-radius: 12px; cursor: pointer; }
.shipping-option:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.shipping-option input[type="radio"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 0;
  border: 1.5px solid #8b9094;
  border-radius: 50%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.shipping-option input[type="radio"]:checked {
  border-color: var(--ink);
  background: radial-gradient(circle at center, var(--ink) 0 5px, #fff 5.5px);
}
.shipping-option input[type="radio"]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(21, 21, 21, 0.1);
}
.shipping-option > span { display: grid; gap: 4px; color: var(--ink) !important; }
.shipping-option strong { font-weight: 600; }
.shipping-option small { color: var(--muted); font-size: 0.82rem; font-weight: 400; line-height: 1.4; }
.shipping-option b { font-size: 0.9rem; font-weight: 600; }
.delivery-disclaimer { margin: 14px 0 0; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }
.card-payment-surface { display: grid; gap: 14px; }
.card-payment-title { margin: 0; color: #33373a; font-size: 1rem; font-weight: 600; line-height: 1.4; letter-spacing: 0; }
.card-brand-row { display: flex; min-height: 0; align-items: center; justify-content: flex-start; padding: 0; color: var(--muted); }
.card-brand-row > div { display: grid; width: 100%; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.card-brand-row img { width: 100%; height: 38px; padding: 7px 10px; border: 1px solid #d9dcde; border-radius: 7px; object-fit: contain; background: #fff; box-shadow: 0 1px 2px rgba(20, 22, 24, 0.04); }
.card-payment-surface .card-fields { gap: 15px; }
.card-input-shell { position: relative; }
.card-input-shell input { padding-right: 66px !important; }
.card-network-slot { position: absolute; top: 50%; right: 11px; display: grid; width: 42px; height: 28px; place-items: center; transform: translateY(-50%); }
.card-network-slot img { width: 42px; height: 27px; padding: 3px; border: 1px solid var(--line); border-radius: 5px; object-fit: contain; background: #fff; }
.card-generic-icon { position: relative; width: 29px; height: 20px; border: 1.6px solid #7c8185; border-radius: 4px; }
.card-generic-icon::after { content: ""; position: absolute; top: 5px; right: 0; left: 0; height: 3px; background: #7c8185; }
.payment-status { margin: 16px 0; padding: 12px 14px; border-radius: 10px; color: #5b6064; background: #f4f4f2; font-size: 0.8rem; line-height: 1.5; }
.payment-status[hidden] { display: none; }
.payment-status[hidden] + #payment-button { margin-top: 16px; }
.checkout-fields input[aria-invalid="true"], .checkout-fields select[aria-invalid="true"], .card-fields input[aria-invalid="true"], .phone-input-shell.is-invalid, .card-input-shell.is-invalid { border-color: #ff2b55; box-shadow: 0 0 0 2px rgba(255, 43, 85, 0.12); }
.checkout-field-error { display: block; margin-top: 6px; color: #d9103c; font-size: 0.76rem; font-weight: 650; line-height: 1.35; }
.checkout-summary { position: sticky; top: 106px; align-self: start; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #eeefed; }
.checkout-summary__header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid #d5d7d5; }
.checkout-summary h2 { font-size: 1.35rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; }
.checkout-summary__header span { color: var(--muted); font-size: 0.84rem; }
.summary-product { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; gap: 14px; align-items: start; padding: 22px 0; border-bottom: 1px solid #d5d7d5; }
.summary-product img { width: 78px; height: 78px; border-radius: 12px; object-fit: cover; background: #fff; }
.summary-product > div { display: grid; gap: 5px; min-width: 0; }
.summary-product strong { display: -webkit-box; overflow: hidden; font-size: 0.9rem; font-weight: 600; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.summary-product small, .summary-product span { color: var(--muted); font-size: 0.76rem; }
.summary-product b { font-size: 0.86rem; white-space: nowrap; }
.summary-totals { display: grid; gap: 14px; margin: 22px 0 0; }
.summary-totals > div { display: flex; justify-content: space-between; gap: 16px; color: #4d5255; font-size: 0.88rem; }
.summary-totals dt, .summary-totals dd { margin: 0; }
.summary-totals dd { text-align: right; }
.summary-totals .summary-total { align-items: baseline; padding-top: 17px; border-top: 1px solid #d5d7d5; color: var(--ink); font-size: 1.05rem; font-weight: 700; }
.summary-total dd { font-size: 1.35rem; }

.site-footer { padding: 42px clamp(20px, 6vw, 80px) 28px; border-top: 1px solid var(--line); background: #f4f4f2; }
.site-footer__inner { width: min(100%, 1180px); margin: 0 auto; }
.site-footer__menu h2 { margin: 0 0 13px; font-size: 0.92rem; letter-spacing: 0; }
.site-footer__nav { display: grid; justify-items: start; gap: 8px; }
.site-footer__nav a { padding: 2px 0; color: #62676a; font-size: 0.86rem; line-height: 1.45; text-decoration: none; }
.site-footer__nav a:hover, .site-footer__nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__copyright { margin: 34px 0 0; padding-top: 20px; border-top: 1px solid #dcdedc; color: #7a7f82; font-size: 0.76rem; }

.support-page { display: flex; min-height: 100vh; flex-direction: column; background: #f4f5f5; }
.support-header { display: grid; min-height: 72px; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 12px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); }
.support-home { justify-self: start; color: #3d4245; font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.support-brand { display: inline-flex; align-items: center; gap: 10px; }
.support-brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; background: #fff; }
.support-main { width: min(100%, 1240px); flex: 1; padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 76px) clamp(72px, 9vw, 120px); margin: 0 auto; }
.support-main h1 { max-width: none; font-size: clamp(3rem, 7vw, 6.2rem); }
.support-kicker { margin: 0 0 28px; color: #0d5e45; font-size: 0.8rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.support-intro { max-width: 760px; margin: 28px 0 0; color: #687078; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.65; }
.support-form-card { display: grid; gap: 26px; padding: clamp(24px, 4vw, 42px); margin-top: 46px; border: 1px solid #d9dee3; border-radius: 18px; background: #fff; box-shadow: 0 18px 46px rgba(29, 35, 39, 0.06); }
.support-form-card label { display: grid; gap: 10px; color: #2e3336; font-size: 0.96rem; font-weight: 650; }
.support-form-card input, .support-form-card textarea { width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid #cfd6dc; border-radius: 10px; color: var(--ink); background: #fff; resize: vertical; }
.support-form-card textarea { min-height: 220px; line-height: 1.55; }
.support-form-card input:focus, .support-form-card textarea:focus { border-color: #566068; outline: 3px solid rgba(15, 118, 110, 0.1); }
.support-form-card button { min-height: 50px; padding: 0 24px; border: 0; border-radius: 10px; color: #fff; background: #11563f; font-weight: 800; cursor: pointer; }
.support-form-card button:hover { background: #0d4935; }
.support-form-card--lookup { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; align-items: end; }
.support-form-card--lookup button { min-width: 170px; }
.support-form-card--contact { max-width: 980px; }
.support-form-card--contact button { width: fit-content; }
.support-status { grid-column: 1 / -1; margin: -4px 0 0; padding: 14px 16px; border-radius: 10px; font-size: 0.9rem; line-height: 1.5; }
.support-status--error { color: #9d3327; background: #fff1ef; }
.support-status--success { color: #155b42; background: #eaf7f1; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

@keyframes cart-drawer-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes variant-sheet-in { from { opacity: 0.85; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes gallery-image-next { from { opacity: 0.25; transform: translateX(8%); } to { opacity: 1; transform: translateX(0); } }
@keyframes gallery-image-previous { from { opacity: 0.25; transform: translateX(-8%); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 960px) {
  .product-shell, .feature-section { grid-template-columns: 1fr; }
  .gallery__stage { min-height: 0; }
  .product-panel { padding-top: 48px; }
  .checkout-layout { grid-template-columns: minmax(0, 1fr); max-width: 760px; }
  .checkout-summary { position: static; display: block; grid-row: auto; }
  .checkout-order-details { display: block; }
  .support-form-card--lookup { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .support-form-card--lookup button { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 64px; padding-inline: 16px; }
  .brand__logo { width: 36px; height: 36px; }
  .gallery { padding: 12px; }
  .gallery__stage { min-height: 0; border-radius: 18px; }
  .gallery__nav { width: 38px; height: 38px; font-size: 1.55rem; }
  .gallery__nav--previous { left: 10px; }
  .gallery__nav--next { right: 10px; }
  .product-panel { padding: 6px 20px 8px; }
  h1 { max-width: none; font-size: clamp(1.95rem, 8.2vw, 2.65rem); }
  .product-panel h1 { font-size: 20px; line-height: 25px; letter-spacing: 0.3px; }
  h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .price-row { margin: 0 0 12px; }
  .price { font-size: 1.85rem; }
  .variants { display: none; }
  .variant-sheet-trigger { display: flex; margin: 20px 0 0; }
  .purchase-actions { position: fixed; z-index: 20; right: 0; bottom: 0; left: 0; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; margin: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(18, 20, 22, 0.1); background: rgba(255, 255, 255, 0.96); box-shadow: 0 -12px 30px rgba(18, 20, 22, 0.1); backdrop-filter: blur(16px); }
  .commerce-button { min-height: 50px; padding-inline: 14px; }
  .feature-section, .related-videos { padding: 24px 20px; }
  .reviews { padding: 12px 20px 24px; }
  .product-detail-sections.is-collapsed { max-height: 520px; }
  .reviews__summary h2 { font-size: 1.55rem; }
  .reviews__score { gap: 8px; }
  .reviews__score strong { font-size: 2.25rem; }
  .reviews__score-star { font-size: 1.75rem; }
  .review-grid, .field-row { grid-template-columns: 1fr; }
  .rating-distribution__row { grid-template-columns: 39px minmax(0, 1fr) 48px; gap: 9px; }
  .review-toolbar { align-items: stretch; flex-direction: column; gap: 10px; padding: 20px 0 26px; }
  .review-sort-controls { width: 100%; }
  .review-sort-button { min-width: 0; padding-inline: 10px; }
  .review-card--with-media .review-card__layout { grid-template-columns: minmax(0, 1fr) 120px; gap: 13px; }
  .review-avatar { width: 36px; height: 36px; }
  .review-card__header { grid-template-columns: 36px minmax(0, 1fr); gap: 9px; }
  .review-card blockquote { font-size: 0.88rem; }
  .review-media { gap: 5px; }
  .review-media__button { border-radius: 7px; }
  .review-media__play { width: 30px; height: 30px; }
  .review-media__play::after { top: 8px; left: 12px; border-top-width: 6px; border-bottom-width: 6px; border-left-width: 9px; }
  .review-viewer { width: calc(100% - 16px); height: 78dvh; border-radius: 16px; }
  .review-viewer__stage { padding: 52px 48px 18px; }
  .review-viewer__nav { width: 38px; height: 38px; }
  .review-viewer__nav--prev { left: 7px; }
  .review-viewer__nav--next { right: 7px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .video-card { border-radius: 12px; }
  .video-card__copy { padding: 10px; }
  .video-card__copy h3 { font-size: 0.82rem; -webkit-line-clamp: 2; }
  .video-creator__avatar { width: 24px; height: 24px; flex-basis: 24px; }
  .video-creator strong { max-width: 78px; font-size: 0.7rem; }
  .video-likes { font-size: 0.7rem; }
  .video-card__play { width: 46px; height: 46px; }
  .video-card__play::after { top: 13px; left: 18px; border-top-width: 9px; border-bottom-width: 9px; border-left-width: 13px; }
  .video-player-dialog { width: calc(100% - 16px); border-radius: 16px; }
  .dialog { padding: 28px 20px 22px; }
  .dialog--variant { width: 100%; min-height: 50dvh; max-height: 68dvh; padding: 0; }
  .dialog--cart { width: 100%; border-radius: 0; }
  .drawer-header { padding: 22px 20px 18px; }
  .drawer-body { padding: 18px 16px; }
  .drawer-footer { padding: 18px 16px calc(18px + env(safe-area-inset-bottom)); }
  .cart-item { grid-template-columns: 96px minmax(0, 1fr); padding: 13px; }
  .cart-item > img { width: 96px; height: 96px; }
  .checkout-page { padding-bottom: 0; }
  .checkout-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 10px 16px; }
  .checkout-brand { justify-self: end; }
  .checkout-brand img { width: 34px; height: 34px; }
  .secure-label { display: none; }
  .checkout-layout { gap: 16px; padding: 26px 14px 50px; }
  .checkout-summary { padding: 20px; }
  .checkout-card { padding: 20px 16px; }
  .checkout-card__heading { grid-template-columns: 30px minmax(0, 1fr); }
  .checkout-card__heading > span { width: 30px; height: 30px; }
  .card-brand-row { align-items: flex-start; }
  .summary-product { grid-template-columns: 68px minmax(0, 1fr); }
  .summary-product img { width: 68px; height: 68px; }
  .summary-product > b { grid-column: 2; }
  .support-page { padding-bottom: 0; }
  .support-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 10px 16px; }
  .support-brand { justify-self: end; }
  .support-brand strong { display: none; }
  .support-main { padding: 44px 18px 72px; }
  .support-main h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .support-kicker { margin-bottom: 20px; }
  .support-intro { margin-top: 20px; }
  .support-form-card { gap: 20px; padding: 20px 16px; margin-top: 32px; }
  .support-form-card--lookup { grid-template-columns: 1fr; }
  .support-form-card--lookup button { grid-column: auto; width: 100%; }
  .support-form-card--contact button { width: 100%; }
  .support-form-card textarea { min-height: 180px; }
  .site-footer { padding: 34px 20px 24px; }
  .site-footer__copyright { margin-top: 28px; padding-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__stage img.is-entering-next, .gallery__stage img.is-entering-previous { animation: none; }
  .dialog--cart[open], .dialog--cart[open]::backdrop, .dialog--variant[open] { animation: none; }
}
