/* =========================================
   BASE STYLESHEET
   =========================================
   All colors/fonts/spacing use CSS variables defined in
   data/theme.php (rendered inline via renderThemeVariables()).
   When you send design screenshots, we will refine THIS file
   and the section-specific styles below it — never inline
   styles inside PHP section files.
   ========================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }

.btn {
    display: inline-block;
    border-radius: var(--btn-radius);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn--primary   { background: var(--color-primary); color: #fff; }
.btn--secondary { background: var(--color-secondary); color: #fff; }
.btn--outline   { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }

.section { padding: calc(var(--spacing-unit) * 8) 0; }
.section__title { text-align: center; margin-bottom: calc(var(--spacing-unit) * 4); }

/* =========================================
   ICONS (shared inline-SVG set from includes/icons.php)
   ========================================= */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announcement-bar {
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13px;
    text-align: center;
    position: relative;
}
.announcement-bar__item { display: none; }
.announcement-bar__item.is-active { display: block; }
.announcement-bar__item a { text-decoration: underline; font-weight: 600; margin-left: 6px; }
.announcement-bar__next {
    position: absolute;
    right: 20px;
    background: none; border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center;
}
.announcement-bar__next .icon { width: 16px; height: 16px; }

/* =========================================
   HEADER — base
   ========================================= */
.site-header {
    background: var(--color-bg);
    color: var(--color-text);
    width: 100%;
    z-index: 100;
}
.site-header a { color: inherit; }

/* Transparent-over-hero variant (homepage only, set via
   $header_transparent = true before including header.php).
   Default (mouse away): floats over the hero, no background,
   only the compact nav row is visible, text is white.
   On hover: expands to show the utility+logo rows and turns
   solid white, like the reference design. */
.site-header--transparent {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: transparent;
    color: #fff;
    transition: background .3s ease, color .3s ease;
}
.site-header--transparent .site-nav__link,
.site-header--transparent .header-search__toggle,
.site-header--transparent .icon-link { color: #fff; }

.site-header--transparent .site-header__expandable {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
}
.site-header--transparent:hover {
    background: #fff;
    color: var(--color-text);
}
.site-header--transparent:hover .site-nav__link,
.site-header--transparent:hover .header-search__toggle,
.site-header--transparent:hover .icon-link {
    color: var(--color-text);
}
.site-header--transparent:hover .site-header__expandable {
    max-height: 220px;
    opacity: 1;
}

/* Utility row (Sign In / Find a Store / Customer Service ... account/rewards/cart) */
.utility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: .02em;
}
.utility-row__left a { margin-right: 4px; }
.utility-row__left .divider { color: var(--color-text-muted); }
.utility-row__right { display: flex; align-items: center; gap: 20px; }
.icon-link { display: flex; align-items: center; gap: 6px; }
.icon-link .icon { width: 18px; height: 18px; }
.icon-link--text span { font-size: 12px; font-weight: 600; }

/* Logo row (centered brand mark, desktop only) */
.logo-row { display: flex; justify-content: center; padding: 4px 20px 14px; }
.site-header__logo img { height: 150px; }

/* Main row: nav links + search — always visible on desktop,
   this is the row that "floats" over the hero when transparent */
.site-header__main .main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--color-border);
}
.site-header--transparent .site-header__main .main-row { border-top-color: transparent; }

.site-nav { flex: 1; }
.site-nav__list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
}
.site-nav__link { font-size: 13px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.site-nav__link.is-active { color: var(--color-secondary); }

/* Expanding search box in the main row */
.header-search { position: relative; display: flex; align-items: center; }
.header-search__toggle { background: none; border: none; cursor: pointer; padding: 4px; }
.header-search__form {
    max-width: 0; overflow: hidden; opacity: 0;
    transition: max-width .3s ease, opacity .2s ease;
}
.header-search__form.is-open { max-width: 220px; opacity: 1; margin-left: 10px; }
.header-search__form input {
    width: 100%; padding: 8px 12px;
    border: 1px solid var(--color-border); border-radius: var(--border-radius);
}

/* =========================================
   MOBILE HEADER (hidden on desktop)
   ========================================= */
.site-header__mobile { display: none; }

.mobile-top-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
}
.site-header__logo--mobile img { height: 50px; }
.mobile-top-row__icons { display: flex; align-items: center; gap: 18px; position: relative; }
.mobile-top-row__icons .cart-icon { position: relative; }
.cart-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--color-accent); color: #fff;
    font-size: 10px; line-height: 1; min-width: 16px; height: 16px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-toggle { background: none; border: none; cursor: pointer; padding: 4px; }

.mobile-search-row {
    display: flex; align-items: center;
    margin: 0 16px 14px; border: 1px solid var(--color-border); border-radius: var(--border-radius);
    overflow: hidden;
}
.mobile-search-row input { flex: 1; border: none; padding: 10px 12px; }
.mobile-search-row button { background: none; border: none; padding: 0 12px; cursor: pointer; }

/* Off-canvas mobile nav */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transition: opacity .25s ease;
    z-index: 199;
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-nav-panel {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100%;
    background: #fff; z-index: 200; padding: 20px;
    transition: left .3s ease; overflow-y: auto;
}
.mobile-nav-panel.is-open { left: 0; }
.mobile-nav-panel__close { background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.mobile-nav-panel__nav ul { list-style: none; }
.mobile-nav-panel__nav li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); font-weight: 600; }
.mobile-nav-panel__utility { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }

@media (max-width: 900px) {
    .site-header__expandable,
    .site-header__main { display: none; }
    .site-header__mobile { display: block; }
    .site-header--transparent {
        position: static;
        background: var(--color-bg);
        color: var(--color-text);
    }
    .site-header--transparent .icon-link { color: var(--color-text); }
}

/* Product Grid / Card */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.product-card { border: 1px solid var(--color-border); border-radius: var(--border-radius); overflow: hidden; }
.product-card__image-wrap { position: relative; display: block; }
.product-card__image-wrap img { width: 100%; height: 280px; object-fit: cover; }
.product-card__badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.product-card__wishlist {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.9); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.product-card__wishlist .icon { width: 16px; height: 16px; }
.product-card__wishlist.is-active .icon { color: var(--color-accent); }
.badge { background: var(--color-accent); color: #fff; font-size: 12px; padding: 2px 8px; border-radius: 3px; }
.product-card__info { padding: 12px; }
.price--old { text-decoration: line-through; color: var(--color-text-muted); margin-left: 8px; }
.price--current { font-weight: 600; color: var(--color-primary); }

/* Footer — dark, multi-column (Shop / Need Help / About / Privacy / Connect) */
.site-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,.55);
    margin-top: 40px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding: 56px 20px 40px;
}
.site-footer__col h4 {
    color: #fff;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a {
    font-size: 12px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    transition: color .15s ease;
}
.site-footer__col a:hover { color: #fff; }

.site-footer__social { display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer__social a {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.site-footer__social .icon { width: 14px; height: 14px; }

.site-footer__bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 11px;
}

@media (max-width: 900px) {
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.category-card img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--border-radius); }

/* =========================================
   HERO SLIDER (video or image, full-bleed)
   ========================================= */
.hero-slider { position: relative; width: 100%; }
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    display: none;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero-slide.is-active { display: flex; }

.hero-slide__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-slide__media--image { background-size: cover; background-position: center; }

.hero-slide__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%);
    pointer-events: none;
}

.hero-slide__content {
    position: relative;
    color: #fff;
    text-align: center;
    padding-bottom: 90px;
}
.hero-slide__eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: .15em;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero-slide__title {
    color: #fff;
    font-size: clamp(24px, 4vw, 42px);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hero-slide__subtitle { margin-bottom: 20px; opacity: .9; }
.btn--hero {
    background: #fff; color: var(--color-primary);
    border-radius: 2px; padding: 14px 34px;
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    font-size: 13px;
}

/* Play / pause control (bottom-left, like the reference design) */
.hero-slide__play-toggle {
    position: absolute;
    left: 24px; bottom: 24px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.hero-slide__play-toggle .icon { width: 18px; height: 18px; color: var(--color-primary); }

/* Dot navigation for multiple slides */
.hero-slider__dots {
    position: absolute; bottom: 24px; right: 24px;
    display: flex; gap: 8px; z-index: 2;
}
.hero-slider__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0;
}
.hero-slider__dot.is-active { background: #fff; }

@media (max-width: 900px) {
    .hero-slide { height: 70vh; min-height: 420px; }
    .hero-slide__title { font-size: 22px; }
}

/* Slider (basic horizontal scroll, no JS lib required) */
.product-slider { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 8px; }
.product-slider__item { flex: 0 0 240px; }

/* Testimonials / Instagram */
.testimonials-grid, .instagram-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.instagram-grid img { width: 100%; height: 200px; object-fit: cover; }

/* =========================================
   QUICK SHOP LINKS (pill/box row under hero)
   ========================================= */
.quick-shop-links { padding: 32px 0; }
.quick-shop-links__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.quick-shop-links__item {
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: background .2s ease, color .2s ease;
}
.quick-shop-links__item:hover {
    background: var(--color-primary);
    color: #fff;
}

@media (max-width: 600px) {
    .quick-shop-links__row { gap: 8px; }
    .quick-shop-links__item { padding: 8px 14px; font-size: 11px; }
}
/* =========================================
   CATEGORY TYPE NAV (icon row, no box/border)
   ========================================= */
.category-type-nav { padding: 40px 0; }
.category-type-nav__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}
.category-type-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
}
.category-type-nav__item img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}
.category-type-nav__item span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--color-text);
}

@media (max-width: 700px) {
    .category-type-nav__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 0 16px;
    }
    .category-type-nav__item { width: 90px; flex: 0 0 auto; }
    .category-type-nav__item img { width: 100px; height: 100px; }
}
/* =========================================
   SHOP THE SALE (title + arrows + horizontal scroll grid)
   ========================================= */
.shop-the-sale__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.shop-the-sale__title {
    font-size: 28px;
    text-transform: uppercase;
}
.shop-the-sale__arrows { display: flex; gap: 18px; }
.shop-the-sale__arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 4px;
    transition: opacity .2s ease;
}
.shop-the-sale__arrow .icon { width: 22px; height: 22px; }
.shop-the-sale__arrow.is-disabled { opacity: .3; cursor: default; pointer-events: none; }

.shop-the-sale__track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.shop-the-sale__track::-webkit-scrollbar { display: none; }
.shop-the-sale__item { flex: 0 0 280px; }

@media (max-width: 700px) {
    .shop-the-sale__item { flex: 0 0 220px; }
}

/* Sale product card (distinct design from the default product-card) */
.sale-card {
    background: var(--color-surface);
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 620px;   /* ye line add karein — apni pasand ka number rakhein */
}
.sale-card .btn--add-bag {
    margin-top: auto;   /* button ko hamesha card ke neeche push karega */
}
.sale-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.sale-card__rating { font-size: 13px; color: var(--color-secondary); }
.sale-card__rating span { color: var(--color-text-muted); margin-left: 4px; }
.sale-card__badge {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.sale-card__image-wrap { display: block; margin-bottom: 16px; }
.sale-card__image-wrap img { width: 290px; height: 320px; object-fit: contain; }
.sale-card__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 8px;
}
.sale-card__price { margin-bottom: 8px; }
.sale-card__price .price--old { margin-right: 8px; }
.sale-card__price .price--current { color: var(--color-danger); font-weight: 700; }
.sale-card__desc {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    min-height: 32px;
}
.sale-card__shade {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.sale-card__swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
}
.sale-card__shade-name { font-size: 11px; letter-spacing: .02em; color: var(--color-text-muted); }
.btn--add-bag {
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
/* Shop the Sale — apna alag container, kam left/right space ke sath */
.shop-the-sale-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2px;   /* number kam/zyada kar ke space adjust karein */
}
/* =========================================
   PROMO IMAGE BANNER (adjustable height, image always fits)
   ========================================= */
.promo-banner {
    position: relative;
    width: 100%;
    height: 420px;              /* <-- CHANGE THIS NUMBER to resize the container */
    overflow: hidden;
    display: flex;
    align-items: center;
}
.promo-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* image always fills the box, cropped not stretched */
    object-position: center;
    z-index: 0;
}
.promo-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 60px;
    max-width: 480px;
}
.promo-banner__content h2 {
    font-size: clamp(22px, 3vw, 34px);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}
.promo-banner__content p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}
.promo-banner__btn {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* Text alignment variants */
.promo-banner__content--left   { margin-right: auto; text-align: left; }
.promo-banner__content--right  { margin-left: auto; text-align: left; }
.promo-banner__content--center { margin: 0 auto; text-align: center; }

@media (max-width: 700px) {
    .promo-banner { height: 320px; }
    .promo-banner__content { padding: 0 24px; max-width: 100%; }
}
/* =========================================
   VIDEO + PRODUCT CAROUSEL SECTION
   ========================================= */
.video-product-feature {
    padding-left: 150px;
    padding-right: 150px;
    box-sizing: border-box;
}
.video-product-feature__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    align-items: stretch;
}

/* Left: video column */
.video-product-feature__video {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}
.video-product-feature__video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-product-feature__play-toggle {
    position: absolute;
    left: 20px; bottom: 20px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.video-product-feature__play-toggle .icon { width: 16px; height: 16px; color: var(--color-primary); }
.video-product-feature__caption {
    position: absolute;
    left: 20px; bottom: 70px;
    z-index: 2;
    color: #fff;
}
.video-product-feature__caption p {
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.video-product-feature__caption a {
    text-decoration: underline;
    font-size: 13px;
}

/* Right: product carousel column */
.video-product-feature__carousel {
    position: relative;
    padding: 20px;
}
.video-product-feature__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    height: 100%;
}
.video-product-feature__track::-webkit-scrollbar { display: none; }
.video-product-feature__item { flex: 0 0 calc(33.333% - 14px); }

.video-product-feature__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 3;
}
.video-product-feature__arrow--prev { left: 4px; }
.video-product-feature__arrow--next { right: 4px; }
.video-product-feature__arrow .icon { width: 16px; height: 16px; }
.video-product-feature__arrow .icon--flip { transform: scaleX(-1); }
.video-product-feature__arrow.is-disabled { opacity: .3; pointer-events: none; }

/* Carousel product card */
.carousel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.carousel-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.carousel-card__badge {
    background: var(--color-text-muted);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 8px;
}
.carousel-card__wishlist {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
}
.carousel-card__wishlist .icon { width: 18px; height: 18px; }
.carousel-card__image-wrap { display: block; margin-bottom: 14px; }
.carousel-card__image-wrap img { width: 100%; height: 220px; object-fit: contain; }
.carousel-card__name {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .02em;
    margin-bottom: 8px;
}
.carousel-card__rating {
    text-align: center;
    font-size: 13px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}
.carousel-card__rating span { color: var(--color-text-muted); margin-left: 4px; }
.carousel-card__shade-label {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.carousel-card__shade-label strong { color: var(--color-text); }
.carousel-card__swatches {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.carousel-card__swatch {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    cursor: pointer;
}
.carousel-card__price {
    text-align: center;
    font-weight: 700;
    margin-bottom: 14px;
}
.carousel-card .btn--add-bag { margin-top: auto; }

@media (max-width: 900px) {
    .video-product-feature__grid { grid-template-columns: 1fr; }
    .video-product-feature__video { min-height: 380px; }
    .video-product-feature__item { flex: 0 0 70%; }
}
/* =========================================
   GALLERY PAGE (category/collection listing — shop.php)
   ========================================= */
.gallery-page__header { text-align: center; padding: 40px 20px 0; }
.gallery-page__header h1 { font-size: 32px; text-transform: uppercase; margin-bottom: 12px; }
.gallery-page__description {
    max-width: 640px;
    margin: 0 auto 20px;
    color: var(--color-text-muted);
}
.gallery-page__pills { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.gallery-pill {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
}

.gallery-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-surface);
    padding: 14px 20px;
    margin-bottom: 24px;
}
.gallery-page__count { font-size: 13px; color: var(--color-text-muted); }
.gallery-page__sort select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.gallery-page__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding-bottom: 60px;
}
.gallery-page__filters h4 { font-size: 13px; text-transform: uppercase; margin: 20px 0 10px; }
.gallery-page__filters ul { list-style: none; }
.gallery-page__filters li { margin-bottom: 8px; font-size: 13px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

/* Gallery product card */
.gallery-card { display: flex; flex-direction: column; }
.gallery-card__image-wrap { position: relative; display: block; margin-bottom: 12px; }
.gallery-card__image-wrap img { width: 100%; height: 240px; object-fit: contain; background: var(--color-surface); }
.gallery-card__badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--color-text-muted);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 8px;
}
.gallery-card__wishlist {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.gallery-card__wishlist .icon { width: 16px; height: 16px; }
.gallery-card__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 8px;
}
.gallery-card__shade {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}
.gallery-card__shade strong { color: var(--color-text); }
.gallery-card__swatch {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    display: inline-block;
}
.gallery-card__price { font-weight: 700; margin-bottom: 12px; }
.btn--notify {
    background: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 800px) {
    .gallery-page__layout { grid-template-columns: 1fr; }
    .gallery-page__filters { display: none; }
}
/* =========================================
   PRODUCT DETAIL PAGE (redesign)
   ========================================= */
.breadcrumb {
    padding: 16px 20px;
    font-size: 12px;
    color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb span { margin: 0 6px; }

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.product-detail__main-image img { width: 100%; height: 660px; object-fit: contain; background: var(--color-surface); }
.product-detail__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-detail__thumb { width: 64px; height: 64px; object-fit: contain; border: 1px solid var(--color-border); cursor: pointer; }

.product-detail__info h1 { font-size: 26px; margin-bottom: 10px; }
.product-detail__price { margin-bottom: 10px; }
.product-detail__price .price--old { margin-left: 8px; }
.product-detail__short-desc { color: var(--color-text-muted); margin-bottom: 10px; }
.product-detail__rating-link { display: inline-block; color: var(--color-secondary); margin-bottom: 20px; }
.product-detail__rating-link span { color: var(--color-text-muted); margin-left: 6px; text-decoration: underline; }

.product-detail__shades-label { font-size: 13px; margin-bottom: 10px; }
.product-detail__shade-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.product-detail__shade-swatch {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}
.product-detail__shade-swatch.is-selected { border-color: var(--color-primary); }

.product-detail__stock, .product-detail__sku { font-size: 13px; color: var(--color-text-muted); margin-bottom: 4px; }

.product-detail__actions { display: flex; align-items: center; gap: 12px; margin: 20px 0 12px; flex-wrap: wrap; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--border-radius); }
.qty-stepper__btn { width: 36px; height: 44px; background: none; border: none; cursor: pointer; font-size: 16px; }
.qty-stepper__input { width: 40px; text-align: center; border: none; height: 44px; }
.btn--add-cart-lg { flex: 1; min-width: 160px; }

.product-detail__wishlist-link {
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; margin-bottom: 24px;
}
.product-detail__wishlist-link .icon { width: 16px; height: 16px; }

/* Frequently Bought Together */
.fbt { border: 1px solid var(--color-border); padding: 20px; border-radius: var(--border-radius); }
.fbt h4 { font-size: 13px; text-transform: uppercase; margin-bottom: 14px; }
.fbt__row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.fbt__row img { width: 64px; height: 64px; object-fit: contain; background: var(--color-surface); }
.fbt__plus { font-size: 20px; color: var(--color-text-muted); }
.fbt__names { font-size: 13px; margin-bottom: 6px; }
.fbt__total { font-weight: 700; margin-bottom: 14px; }

/* Tabs */
.product-detail__tabs { margin-top: 60px; }
.tabs { display: flex; gap: 24px; border-bottom: 1px solid var(--color-border); margin-bottom: 24px; }
.tabs__btn {
    background: none; border: none; cursor: pointer;
    padding: 12px 0; font-size: 13px; font-weight: 700; text-transform: uppercase;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
}
.tabs__btn.is-active { color: var(--color-text); border-bottom-color: var(--color-primary); }
.tabs__panel { display: none; max-width: 720px; }
.tabs__panel.is-active { display: block; }
.tabs__panel p { margin-bottom: 12px; color: var(--color-text-muted); }
.product-detail__features { list-style: disc; padding-left: 20px; }
.product-detail__features li { margin-bottom: 8px; }

@media (max-width: 900px) {
    .product-detail__grid { grid-template-columns: 1fr; }
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section { background: var(--color-surface); padding: 50px 0; }
.reviews-section__summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.reviews-section__score { display: flex; align-items: center; gap: 16px; }
.reviews-section__number { font-size: 48px; font-weight: 700; }
.reviews-section__stars { color: var(--color-secondary); font-size: 16px; }
.reviews-section__count { font-size: 12px; color: var(--color-text-muted); }

.reviews-section__bar-row { display: grid; grid-template-columns: 50px 1fr 30px; align-items: center; gap: 10px; font-size: 12px; margin-bottom: 6px; }
.reviews-section__bar { background: rgba(0,0,0,.08); height: 8px; border-radius: 4px; overflow: hidden; }
.reviews-section__bar-fill { background: var(--color-secondary); height: 100%; }

.reviews-section__list h3 { font-size: 18px; margin-bottom: 20px; text-transform: uppercase; }
.review-card { background: #fff; padding: 20px; border-radius: var(--border-radius); margin-bottom: 16px; }
.review-card__stars { color: var(--color-secondary); margin-bottom: 6px; }
.review-card h4 { font-size: 14px; margin-bottom: 6px; }
.review-card__meta { font-size: 12px; color: var(--color-text-muted); margin-bottom: 8px; }
.review-card__verified { color: var(--color-success); font-weight: 600; margin-left: 6px; }

@media (max-width: 700px) {
    .reviews-section__summary { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page__header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.contact-page__header h1 { font-size: 30px; text-transform: uppercase; margin-bottom: 12px; }
.contact-page__header p { color: var(--color-text-muted); }

.contact-page__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.contact-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}
.contact-card__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.contact-card__icon .icon { width: 22px; height: 22px; color: var(--color-primary); }
.contact-card h4 { font-size: 14px; text-transform: uppercase; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--color-text-muted); }
.contact-card a { color: var(--color-text-muted); }

.contact-page__form-wrap { max-width: 640px; margin: 0 auto; }
.contact-page__form-wrap h2 { text-align: center; font-size: 22px; margin-bottom: 24px; text-transform: uppercase; }
.contact-page__success {
    background: var(--color-surface);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    padding: 14px 18px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
}
.contact-form button { align-self: center; padding: 14px 48px; }

@media (max-width: 700px) {
    .contact-page__cards { grid-template-columns: 1fr; }
    .contact-form__row { grid-template-columns: 1fr; }
}
/* =========================================
   LEGAL PAGES (Privacy Policy / Terms & Conditions)
   ========================================= */
.legal-page__inner { max-width: 780px; margin: 0 auto; }
.legal-page__inner h1 { font-size: 30px; text-transform: uppercase; margin-bottom: 8px; }
.legal-page__updated { font-size: 13px; color: var(--color-text-muted); margin-bottom: 30px; }
.legal-page__inner p { margin-bottom: 16px; color: var(--color-text-muted); line-height: 1.7; }
.legal-page__inner h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 32px 0 12px;
    color: var(--color-text);
}
.legal-page__inner ul { margin: 0 0 16px 20px; color: var(--color-text-muted); }
.legal-page__inner li { margin-bottom: 8px; }
.legal-page__inner a { color: var(--color-secondary); text-decoration: underline; }