/* ============================================================
   Shopify-style Homepage — usamodwatch.com
   v2 — optimized: CSS custom properties, shared utilities, deduplication
   ============================================================ */

:root {
    --sh-text: #171717;
    --sh-text-light: #555;
    --sh-text-body: #333;
    --sh-text-body-soft: #444;
    --sh-text-meta: #666;
    --sh-text-muted: #999;
    --sh-text-detail: #777;
    --sh-white: #fff;
    --sh-bg-light: #fafafa;
    --sh-bg-dark: #000;
    --sh-bg-img: #f5f5f5;
    --sh-bg-placeholder: #e5e5e5;
    --sh-border: rgba(23,23,23,0.08);
    --sh-border-light: rgba(23,23,23,0.06);
    --sh-border-strong: rgba(23,23,23,0.1);
    --sh-green: #108474;
    --sh-red: #b74d30;
    --sh-font: 'Inter', sans-serif;
    --sh-section-pad: 80px 0;
    --sh-section-pad-m: 48px 0;
    --sh-container-max: 1400px;
    --sh-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   OVERRIDE WOODMART CONTAINER CONSTRAINTS
   ============================================================ */
body.home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.home .site-content,
body.home .wd-content-area,
body.home .main-page-wrapper,
body.home .website-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
body.home .page-wrapper,
body.home .whb-sticky-header {
    margin-top: 0 !important;
}
body.home .container,
body.home .wd-content-area .container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* ---- Global: font-family on body.home once, inherited everywhere ---- */
body.home,
body.home section[class^="sh-"] {
    font-family: var(--sh-font);
}

/* ---- All sh-* sections reset box-sizing (scoped to known elements, avoid universal) ---- */
section[class^="sh-"],
section[class^="sh-"] div,
section[class^="sh-"] a,
section[class^="sh-"] img,
section[class^="sh-"] p,
section[class^="sh-"] span,
section[class^="sh-"] h2,
section[class^="sh-"] h3,
section[class^="sh-"] button,
section[class^="sh-"] input {
    box-sizing: border-box;
}

/* ---- Container ---- */
.sh-container {
    max-width: var(--sh-container-max);
    margin: 0 auto;
    padding: 0 24px;
    color: var(--sh-text);
}

/* ---- Shared section base (padding + background) ---- */
.sh-about, .sh-collections, .sh-builds, .sh-community,
.sh-flash, .sh-discover, .sh-cta, .sh-team,
.sh-reviews, .sh-faq {
    padding: var(--sh-section-pad);
    background: var(--sh-white);
}
.sh-bestsellers {
    padding: var(--sh-section-pad);
    background: var(--sh-bg-light);
}
.sh-cta {
    background: var(--sh-bg-light);
}

/* ---- Lazy rendering for off-screen sections (improves initial paint) ---- */
.sh-about,
.sh-collections,
.sh-builds,
.sh-community,
.sh-flash,
.sh-bestsellers,
.sh-discover,
.sh-cta,
.sh-team,
.sh-reviews,
.sh-faq {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ---- Scrollbar hide utility ---- */
.sh-scroll,
.sh-collections__track,
.sh-slider__track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sh-scroll::-webkit-scrollbar,
.sh-collections__track::-webkit-scrollbar,
.sh-slider__track::-webkit-scrollbar {
    display: none;
}

/* ---- Section Title ---- */
.sh-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-align: center;
    color: var(--sh-section-heading, var(--sh-text));
    margin: 0 0 2rem;
}
.sh-section-title--left { text-align: left; }

/* ---- Shared body text for text modules ---- */
.sh-about__text p,
.sh-cta__text p,
.sh-team__text p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sh-text-light);
    max-width: 420px;
}

/* ---- Shared CTA button ---- */
.sh-cta .sh-btn--outline,
.sh-team__text .sh-btn--outline {
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
}

/* ---- Buttons ---- */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: 60px;
    padding: 12px 24px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.sh-btn--outline {
    background: transparent;
    color: var(--sh-text);
    border: 1px solid rgba(23,23,23,0.2);
}
.sh-btn--outline:hover {
    background: var(--sh-text);
    color: var(--sh-white);
    border-color: var(--sh-text);
}
.sh-btn--outline-light {
    background: transparent;
    color: var(--sh-white);
    border: 1px solid rgba(255,255,255,0.4);
}
.sh-btn--outline-light:hover {
    background: var(--sh-white);
    color: var(--sh-text);
}

/* ---- Badge ---- */
.sh-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sh-red);
    color: var(--sh-white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 60px;
    line-height: 1;
    z-index: 2;
}

/* ---- Placeholder ---- */
.sh-placeholder {
    width: 100%;
    height: 100%;
    background: var(--sh-bg-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--sh-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   HORIZONTAL SCROLL CAROUSEL (shared for product sections)
   ============================================================ */
.sh-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}
.sh-scroll__item {
    flex: 0 0 auto;
    width: 280px;
    max-width: 80vw;
    scroll-snap-align: start;
}

/* ---- Product Card ---- */
.sh-product-card {
    display: block;
    text-decoration: none;
    color: inherit !important;
    background: var(--sh-bg-light);
    border-radius: clamp(0.625rem, 1.053vw, 1.25rem);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sh-product-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    color: inherit !important;
}
.sh-product-card__img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--sh-bg-img);
}
.sh-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sh-product-card__info { padding: 16px; }
.sh-product-card__title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    line-height: 1.3;
    margin-bottom: 6px;
}
.sh-product-card__price {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
}
.sh-product-card__price del {
    color: var(--sh-text-muted);
    font-weight: 400;
    margin-right: 4px;
    font-size: 13px;
}
.sh-product-card__price ins {
    text-decoration: none;
    font-weight: 600;
}

/* ============================================================
   1. HERO — 基础结构样式（首帧渲染用，防止 CSS 加载闪烁）
   box-sizing 在 section style.css 中覆盖为 content-box
   ============================================================ */
.sh-hero {
    position: relative;
    width: 100%;
    min-height: 66.67vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
.sh-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.35));
    pointer-events: none;
}
.sh-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sh-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 100px 1.5rem 3rem;
    max-width: 780px;
}
.sh-hero__title {
    font-size: clamp(1.75rem, 2.526vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 16px;
    text-transform: uppercase;
    color: var(--sh-section-heading, #fff);
}
.sh-hero__subtitle { font-size: 17.5px; font-weight: 400; margin: 0 0 6px; color: #fff; }
.sh-hero__desc { font-size: 14px; margin: 0 0 28px; color: #fff; }

/* ============================================================
   2. TRUST BAR (marquee)
   ============================================================ */
.sh-trust {
    background: var(--sh-bg-dark);
    color: var(--sh-white);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}
.sh-trust__inner {
    display: inline-flex;
    animation: sh-marquee 20s linear infinite;
}
.sh-trust__inner span {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0 clamp(24px, 4vw, 48px);
    flex-shrink: 0;
}
@keyframes sh-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   3. ABOUT — THE HEART OF CUSTOM HOROLOGY
   ============================================================ */
.sh-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(20px, 2.5vw, 32px);
    align-items: center;
}
.sh-about__text h2 { text-align: left; }
.sh-about__images { display: contents; }
.sh-about__images img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sh-about__images img:hover { transform: scale(1.03); }

/* ============================================================
   5. FEATURED COLLECTIONS (CSS scroll-snap + JS navigation)
   ============================================================ */
.sh-collections__carousel { position: relative; }
.sh-collections__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 4px;
}
.sh-collections__card {
    flex: 0 0 calc(70vw - 32px);
    max-width: 300px;
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    color: inherit !important;
    position: relative;
    border: 10px solid transparent;
    border-radius: 12px;
    overflow: hidden;
}
.sh-collections__img {
    aspect-ratio: 9.6 / 13;
    overflow: hidden;
    border-radius: 2px;
    background: var(--sh-bg-img);
    position: relative;
}
.sh-collections__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.4,0,0,1);
}
.sh-collections__card:hover .sh-collections__img img { transform: scale(1.1); }
.sh-collections__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.4));
    pointer-events: none;
}
.sh-collections__name {
    position: absolute;
    bottom: 38px; left: 0; right: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 3px;
    color: var(--sh-white);
    text-transform: uppercase;
    z-index: 1;
    padding: 0 10px;
}

@media (min-width: 480px) {
    .sh-collections__card { flex-basis: 240px; max-width: none; }
}
@media (min-width: 768px) {
    .sh-collections__card { flex-basis: 260px; }
    .sh-collections__track { gap: 24px; }
}
@media (min-width: 1024px) {
    .sh-collections__card { flex-basis: 380px; }
    .sh-collections__track { gap: 30px; }
}
@media (max-width: 480px) {
    .sh-collections__name { font-size: 14px; letter-spacing: 2px; bottom: 28px; }
}

/* Navigation arrows (collections) */
.sh-collections__prev,
.sh-collections__next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--sh-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: none;
    outline: none;
}
.sh-collections__prev:hover,
.sh-collections__next:hover {
    background: var(--sh-white);
    color: #121212;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.sh-collections__prev { left: 12px; }
.sh-collections__next { right: 12px; }
@media (min-width: 1024px) {
    .sh-collections__prev,
    .sh-collections__next { display: flex; }
}

/* ============================================================
   PRODUCT SLIDER — shared for BUILDS / FLASH / BEST SELLERS
   ============================================================ */
.sh-slider__wrap { position: relative; }
.sh-slider__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 4px;
}
.sh-slider__slide {
    flex: 0 0 calc(75vw - 16px);
    max-width: 360px;
    scroll-snap-align: start;
}
@media (min-width: 480px) {
    .sh-slider__slide { flex-basis: 280px; max-width: none; }
    .sh-slider__track { gap: 20px; }
}
@media (min-width: 768px) {
    .sh-slider__slide { flex-basis: 300px; }
    .sh-slider__track { gap: 24px; }
}
@media (min-width: 1024px) {
    .sh-slider__slide { flex-basis: 310px; }
    .sh-slider__track { gap: 30px; }
}

/* Slider nav arrows */
.sh-slider__prev,
.sh-slider__next {
    display: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--sh-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    outline: none;
}
.sh-slider__prev:hover,
.sh-slider__next:hover { background: var(--sh-white); box-shadow: 0 4px 16px rgba(0,0,0,0.16); }
.sh-slider__prev { left: 8px; }
.sh-slider__next { right: 8px; }
@media (min-width: 1024px) {
    .sh-slider__prev,
    .sh-slider__next { display: flex; }
}

/* ============================================================
   7. EXPLORE COMMUNITY MODS — seamless scroll
   ============================================================ */
.sh-community { overflow: hidden; }
.sh-community__row { overflow: hidden; display: flex; gap: 16px; }
.sh-community__scroll {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    animation: sh-community-scroll 74s linear infinite;
}
.sh-community__item {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0;
}
.sh-community__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes sh-community-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (min-width: 768px) { .sh-community__item { width: 300px; } }
@media (max-width: 480px) { .sh-community__scroll { animation-duration: 58s; } }

/* ============================================================
   8. FLASH CLEARANCE
   ============================================================ */
.sh-flash__subtitle {
    font-size: 14px;
    color: var(--sh-text-detail);
    text-align: center;
    font-style: italic;
    margin: -0.5rem 0 1.5rem;
}
.sh-flash__btn-wrap { text-align: center; margin-top: 28px; }
.sh-flash__btn-wrap .sh-btn { padding: 14px 32px; font-size: 13px; font-weight: 600; }

/* ============================================================
   10. DISCOVER — 6-col grid
   ============================================================ */
.sh-discover__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 480px) { .sh-discover__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .sh-discover__grid { grid-template-columns: repeat(6, 1fr); gap: 24px; } }

.sh-discover__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit !important;
    background: var(--sh-bg-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sh-discover__item:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.sh-discover__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--sh-bg-light);
    border-radius: 20px 20px 0 0;
}
.sh-discover__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-discover__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 12px 20px;
}
.sh-discover__name {
    font-size: clamp(16px, 1.5vw, 28px);
    font-weight: 700;
    color: var(--sh-text);
    letter-spacing: -0.05em;
    line-height: 1.2;
    text-align: center;
}
.sh-discover__arrow {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--sh-text);
    transition: transform 0.2s;
}
.sh-discover__item:hover .sh-discover__arrow { transform: translateX(3px); }

/* ============================================================
   11. THE ART OF PERSONAL HOROLOGY — left image, right text
   ============================================================ */
.sh-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}
.sh-cta__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    background: var(--sh-bg-placeholder);
}
.sh-cta__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-cta__text h2 { text-align: left; }

/* ============================================================
   12. MEET THE PEOPLE — left text, right image (mirror)
   ============================================================ */
.sh-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}
.sh-team__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    background: var(--sh-bg-placeholder);
}
.sh-team__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-team__text h2 { text-align: left; }

/* ============================================================
   13. REVIEWS — JOIN 1400+ WATCH ENTHUSIASTS
   ============================================================ */
.sh-reviews__stats { display: flex; align-items: center; gap: 12px; margin-bottom: 2.5rem; }
.sh-reviews__stars { display: flex; gap: 3px; }
.sh-reviews__rating { font-size: 15px; color: var(--sh-text-meta); }
.sh-reviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sh-reviews__card {
    background: var(--sh-white);
    border: 1px solid var(--sh-border);
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s ease;
}
.sh-reviews__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sh-reviews__card-text { font-size: 15px; line-height: 1.75; color: var(--sh-text-body); margin: 0 0 16px; }
.sh-reviews__card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.sh-reviews__card-author { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sh-reviews__card-name { font-size: 14px; font-weight: 700; color: var(--sh-text); }
.sh-reviews__verified {
    font-size: 11px;
    color: var(--sh-green);
    font-weight: 600;
    border: 1px solid var(--sh-green);
    padding: 2px 6px;
    border-radius: 3px;
}
.sh-reviews__card-product { font-size: 13px; color: var(--sh-text-muted); font-style: italic; margin: 0; }

/* ============================================================
   14. FAQ
   ============================================================ */
.sh-faq__wrapper {
    background: var(--sh-white) !important;
    border: 1px solid var(--sh-border-strong);
    border-radius: 12px;
    overflow: hidden;
}
.sh-faq__item { border-bottom: 1px solid var(--sh-border); background: var(--sh-white) !important; }
.sh-faq__item:last-child { border-bottom: none; }
.sh-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 44px;
    background: var(--sh-white) !important;
    border: none !important;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--sh-text);
    transition: color 0.15s, background 0.15s;
}
.sh-faq__trigger:hover { color: var(--sh-text-light); background: var(--sh-bg-light) !important; }
.sh-faq__trigger span { flex: 1; padding-right: 32px; line-height: 1.5; text-align: left; }
.sh-faq__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.sh-faq__item.is-open .sh-faq__icon { transform: rotate(45deg); }
.sh-faq__panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 44px;
    background: var(--sh-white);
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.sh-faq__item.is-open .sh-faq__panel { max-height: 600px; padding: 12px 44px 36px; }
.sh-faq__panel p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--sh-text-body-soft);
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--sh-border-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sh-about__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sh-about__text { grid-column: 1 / -1; }
    .sh-about__images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .sh-about__text p { max-width: none; }
    .sh-about__images img { aspect-ratio: 1; }
    .sh-discover__grid { grid-template-columns: repeat(3, 1fr); }
    .sh-reviews__cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sh-about .sh-container { max-width: none; padding: 0; }
    .sh-about__text { padding: 0 20px; }
    .sh-about__text p { font-size: 14px; line-height: 1.8; }
    .sh-about__grid { gap: 32px; }
    .sh-about__images {
        grid-column: 1 / -1 !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 0 12px;
    }
    .sh-about__images img { aspect-ratio: 4 / 3; border-radius: 4px; }

    .sh-about,
    .sh-collections,
    .sh-builds,
    .sh-community,
    .sh-flash,
    .sh-bestsellers,
    .sh-discover,
    .sh-cta,
    .sh-team,
    .sh-reviews,
    .sh-faq { padding: var(--sh-section-pad-m); }

    .sh-container { padding: 0 16px; }
    .sh-hero { min-height: 75vh; }
    .sh-hero__content { padding: 80px 1rem 2.5rem; }
    /* 移动端首页：页头绝对定位覆盖 Hero，内容区顶部留空 */
    body.home .sh-hero__content {
        padding-top: 100px;
    }
    .sh-hero__title { font-size: 1.5rem; }
    .sh-hero__subtitle { font-size: 14px; }
    .sh-section-title { font-size: clamp(1.35rem, 4vw, 1.75rem); margin-bottom: 1.25rem; }
    .sh-trust { padding: 12px 0; }
    .sh-trust__inner span { font-size: 12px; padding: 0 clamp(16px, 3vw, 28px); }

    .sh-cta__grid,
    .sh-team__grid { grid-template-columns: 1fr; }
    .sh-cta__text p,
    .sh-team__text p { max-width: none; }
    .sh-team__image { order: -1; }

    .sh-discover__grid { grid-template-columns: repeat(2, 1fr); }
    .sh-discover__content { padding: 12px 8px 16px; }
    .sh-reviews__card { padding: 24px; }
    .sh-reviews__card-text { font-size: 14px; }
    .sh-scroll__item { width: 260px; }

    .sh-faq__trigger { padding: 24px 28px; font-size: 16px; }
    .sh-faq__panel { padding: 0 28px; }
    .sh-faq__item.is-open .sh-faq__panel { padding: 10px 28px 28px; }
    .sh-faq__panel p { font-size: 14px; }
    .sh-faq__icon { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    .sh-hero { min-height: 55vh; }
    body.home .sh-hero__content { padding-top: 80px; } /* header overlap compensation */
    .sh-hero__title { font-size: 1.25rem; }

    .sh-about .sh-container { max-width: none !important; padding: 0 !important; }
    .sh-about__text { padding: 0 16px; }
    .sh-about__text p { font-size: 13px; line-height: 1.75; }
    .sh-about__grid { gap: 24px; }
    .sh-about__images { grid-column: 1 / -1 !important; grid-template-columns: 1fr !important; gap: 6px; padding: 0 8px; }
    .sh-about__images img { aspect-ratio: 4 / 3; border-radius: 3px; }

    .sh-discover__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sh-product-card__info { padding: 12px; }
    .sh-product-card__title { font-size: 12px; }
    .sh-product-card__price { font-size: 12px; }
    .sh-slider__slide { flex-basis: calc(80vw - 16px); max-width: none; }

    .sh-faq__trigger { padding: 20px 20px; font-size: 15px; }
    .sh-faq__panel { padding: 0 20px; }
    .sh-faq__item.is-open .sh-faq__panel { padding: 8px 20px 24px; }
    .sh-faq__panel p { font-size: 14px; }
    .sh-faq__icon { width: 16px; height: 16px; }
}
