/* Nakhishly Custom CSS — Exact Design Match */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --font: "Baloo 2", Arial, Helvetica, sans-serif;
    --dark: #242424;
    --text: #777777;
    --light-text: #aaaaaa;
    --border: #e8e8e8;
    --bg: #ffffff;
    --topbar-bg: #323232;
    --blue: rgb(35, 148, 234);
    --heading: #242424;
    --radius: 5px;
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-messages {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}
.site-message {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid var(--border);
    background: #fafafa;
    color: var(--dark);
}
.site-message-title {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}
.site-message-body {
    font-size: 14px;
    line-height: 1.45;
}
.site-message.error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #9f1239;
}
.site-message.success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}
.site-message.warning {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    border: 2px solid transparent;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.btn-dark:hover { background: #444; border-color: #444; color: #fff; }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--dark); }

.btn-block { width: 100%; text-align: center; display: block; }

/* ===================== TOP BAR ===================== */
.top-bar {
    background: var(--topbar-bg);
    color: #c8c8c8;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-text { font-size: 14px; letter-spacing: 0.02em; }
.top-bar-text i { margin-right: 6px; }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a { color: #c8c8c8; font-size: 14px; }
.top-bar-social a:hover { color: #fff; }

/* ===================== HEADER ===================== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.header-announcement {
    background: #121936;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.header-announcement .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-announcement__link,
.header-announcement__text {
    color: inherit;
    display: inline-block;
    text-align: center;
    padding: 8px 0;
}
.header-announcement__link:hover {
    color: #f1d796;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 120px;
    gap: 20px;
}

/* Logo */
.site-logo { display: flex; justify-content: center; align-items: center; }
.logo-img {
    height: 120px;
    max-height: 120px;
    width: auto;
    max-width: none;
    display: block;
}

/* Nav */
.main-nav { display: flex; justify-content: flex-start; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.nav-link i { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link { color: var(--blue); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--dark);
    min-width: 190px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 18px;
    color: var(--dark);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), color var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f8f8f8; color: var(--blue); }

/* Header right */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
.search-toggle, .cart-link, .account-link {
    color: var(--dark);
    font-size: 18px;
    padding: 6px;
    position: relative;
    transition: color var(--transition);
}
.search-toggle:hover, .cart-link:hover, .account-link:hover { color: var(--blue); }
.account-menu {
    position: relative;
}
.account-trigger {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.account-caret {
    font-size: 10px;
    margin-top: 1px;
    transition: transform .18s ease;
}
.account-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 270px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(16, 24, 40, 0.13);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 1002;
}
.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown,
.account-menu.is-open .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.account-menu.is-open .account-caret {
    transform: rotate(180deg);
}
.account-dropdown-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}
.account-dropdown-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.account-dropdown-meta {
    min-width: 0;
}
.account-dropdown-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.2;
}
.account-dropdown-email {
    font-size: 11px;
    color: var(--light-text);
    line-height: 1.2;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-dropdown a,
.account-dropdown button {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
}
.account-dropdown a:hover,
.account-dropdown button:hover {
    background: #f5f7fb;
}
.account-dropdown-divider {
    border-top: 1px solid var(--border);
    margin: 6px 2px;
}
.account-dropdown-muted {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--light-text);
    line-height: 1.5;
}
.account-badge {
    margin-left: auto;
    background: #121936;
    color: #fff;
    font-size: 11px;
    line-height: 1;
    border-radius: 999px;
    padding: 4px 7px;
}

/* Staff: quick link back to backoffice from mobile drawer */
.mobile-admin-to-backoffice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 10px 0 6px;
    background: linear-gradient(135deg, #1e1e2d, #12122a);
    color: #fff !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.mobile-admin-to-backoffice:hover {
    filter: brightness(1.06);
}

/* PWA install: keep header icon on wide screens; on phones use profile dropdown so cart stays visible */
@media (min-width: 901px) {
    .site-pwa-install-btn--dropdown {
        display: none !important;
    }
}
@media (max-width: 900px) {
    .site-pwa-install-btn--header {
        display: none !important;
    }
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
}
.search-overlay.open { display: block; }
.search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}
.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: var(--font);
}
.search-form button {
    padding: 12px 18px;
    background: var(--dark);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
.search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--dark);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.mobile-nav-overlay.active { display: block; }

/* Mini cart drawer */
.mini-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1205;
    pointer-events: none;
}
.mini-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mini-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(370px, 92vw);
    height: 100%;
    background: #fff;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transform: translateX(104%);
    transition: transform 0.28s ease;
    box-shadow: -10px 0 34px rgba(0, 0, 0, 0.14);
}
.mini-cart-drawer.open {
    pointer-events: auto;
}
.mini-cart-drawer.open .mini-cart-backdrop {
    opacity: 1;
}
.mini-cart-drawer.open .mini-cart-panel {
    transform: translateX(0);
}
.mini-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 16px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
}
.mini-cart-close {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 0;
}
.mini-cart-close:hover {
    color: #000;
}
.mini-cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 10px 0;
}
.mini-cart-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
}
.mini-cart-item-image {
    width: 74px;
    height: 74px;
    border-radius: 4px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid var(--border);
}
.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mini-cart-item-name {
    color: var(--heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}
.mini-cart-item-content {
    position: relative;
    padding-right: 24px;
}
.mini-cart-item-remove {
    position: absolute;
    top: -2px;
    right: 0;
    width: 22px;
    height: 22px;
    color: #666;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.mini-cart-item-remove:hover {
    background: #f1f1f1;
    color: #111;
}
.mini-cart-item-sku {
    margin-top: 6px;
    font-size: 11px;
    color: #7b7b7b;
    font-weight: 600;
}
.mini-cart-item-controls {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
}
.mini-cart-qty-btn {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #444;
    font-size: 18px;
    line-height: 1;
}
.mini-cart-qty-btn:hover {
    background: #f5f5f5;
}
.mini-cart-qty-value {
    width: 34px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}
.mini-cart-item-line {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.mini-cart-empty {
    padding: 20px 16px 8px;
    text-align: center;
    color: var(--light-text);
    font-size: 14px;
}
.mini-cart-footer {
    border-top: 1px solid var(--border);
    padding: 14px 16px 16px;
    background: #fff;
}
.mini-cart-subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--heading);
    font-size: 14px;
}
.mini-cart-subtotal-row strong {
    font-size: 17px;
}
.mini-cart-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mini-cart-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: lowercase;
}
.mini-cart-btn-outline {
    border: 1px solid var(--border);
    color: var(--dark);
    background: #fff;
}
.mini-cart-btn-outline:hover {
    background: #f7f7f7;
    color: var(--dark);
}
.mini-cart-btn-solid {
    border: 1px solid var(--dark);
    color: #fff;
    background: var(--dark);
}
.mini-cart-btn-solid:hover {
    background: #111;
    color: #fff;
}

/* Mobile nav top panel (search + view all) */
.mobile-nav-top {
    display: none;
    padding: 16px 20px 0;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}
.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    padding: 0 0 10px;
    line-height: 1;
}
.mobile-search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0;
}
.mobile-search-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
}
.mobile-search-form button {
    padding: 10px 14px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
}
.mobile-view-all-link {
    display: block;
    padding: 14px 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    border-bottom: 1px solid var(--border);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #f5f0eb;
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* pan-y alone blocked horizontal swipes on mobile; allow both axes for scroll + swipe */
    touch-action: pan-x pan-y pinch-zoom;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 465px;
    --hero-bg: #f5f0eb;
    --hero-title: #2a2218;
    --hero-text: #75695f;
    --hero-subtitle: #b08d6a;
    --hero-card: #ffffff;
    --hero-btn-border: #2a2218;
    --hero-btn-bg: transparent;
    --hero-btn-text: #2a2218;
    --hero-overlay: rgba(42, 34, 24, 0.45);
    background: var(--hero-bg);
    color: var(--hero-title);
    isolation: isolate;
}

.hero-slide__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
    position: relative;
    z-index: 2;
    min-height: 465px;
    padding: 42px clamp(20px, 3vw, 44px);
}

.hero-slide__text {
    max-width: 560px;
}

.hero-slide__subtitle {
    display: block;
    font-family: var(--font);
    font-size: 12px;
    letter-spacing: 3.4px;
    text-transform: uppercase;
    color: #b08d6a;
    margin-bottom: 12px;
}

.hero-slide__title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    color: var(--hero-title);
    line-height: 1.2;
    margin-bottom: 14px;
    text-wrap: balance;
}

.hero-slide__description {
    font-family: var(--font);
    font-size: 15px;
    color: var(--hero-text);
    line-height: 1.72;
    margin-bottom: 26px;
    max-width: 500px;
    text-wrap: pretty;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slide__description--promo {
    font-weight: 500;
}

.btn-slide {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid var(--hero-btn-border);
    border-radius: 999px;
    background: var(--hero-btn-bg);
    color: var(--hero-btn-text);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: none;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 10px 22px rgba(39, 30, 20, 0.12);
}
.btn-slide:hover {
    background: var(--hero-title);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(39, 30, 20, 0.2);
}
.btn-slide--solid { background: var(--hero-title); color: #fff; }

.hero-slide__media {
    position: relative;
}

.hero-media-stack {
    position: relative;
    height: 323px;
}

.hero-media-card {
    position: absolute;
    background: var(--hero-card);
    padding: 8px 8px 26px;
    box-shadow: 0 14px 30px rgba(16, 11, 6, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.hero-media-card:hover {
    transform: scale(1.03) rotate(0deg) !important;
    box-shadow: 0 20px 34px rgba(16, 11, 6, 0.24);
}

.hero-media-card img,
.hero-editorial__image img,
.hero-focus__media img,
.hero-full__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hero-media-card:hover img,
    .hero-editorial__image:hover img,
    .hero-focus__main:hover img,
    .hero-focus__detail:hover img {
        transform: scale(1.3);
    }
}

.hero-media-card--main {
    width: 158px;
    height: 173px;
    top: 15px;
    left: 30px;
    transform: rotate(-4deg);
    z-index: 3;
}
.hero-media-card--secondary {
    width: 143px;
    height: 158px;
    top: 45px;
    left: 150px;
    transform: rotate(3deg);
    z-index: 2;
}
.hero-media-card--tertiary {
    width: 128px;
    height: 143px;
    top: 105px;
    left: 83px;
    transform: rotate(-1.5deg);
    z-index: 4;
}

.hero--split .hero-slide__decor {
    position: absolute;
    top: -60px;
    left: -105px;
    width: 420px;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(232, 216, 196, 0.85) 0%, rgba(229, 210, 185, 0.55) 45%, transparent 70%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    z-index: 1;
    pointer-events: none;
}

.hero--split {
    background-image:
        linear-gradient(90deg, rgba(244, 236, 224, 0.86) 0%, rgba(244, 236, 224, 0.78) 38%, rgba(244, 236, 224, 0.62) 62%, rgba(244, 236, 224, 0.5) 100%),
        var(--hero-split-bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero--split .hero-slide__text {
    padding-left: clamp(6px, 1vw, 16px);
}

.hero--split .hero-slide__media {
    padding-right: clamp(4px, 1vw, 14px);
}

/* Split Luxury: cards 50% larger, without increasing slide height */
.hero--split .hero-media-stack {
    height: 323px;
}
.hero--split .hero-media-card--main {
    width: 237px;
    height: 260px;
    top: 8px;
    left: 26px;
}
.hero--split .hero-media-card--secondary {
    width: 215px;
    height: 237px;
    top: 40px;
    left: 180px;
}
.hero--split .hero-media-card--tertiary {
    width: 192px;
    height: 215px;
    top: 108px;
    left: 100px;
}

.hero--editorial .hero-slide__inner {
    grid-template-columns: minmax(150px, 1fr) minmax(320px, 1.2fr) minmax(150px, 1fr);
    gap: 26px;
}

.hero--editorial {
    background-image:
        linear-gradient(90deg, rgba(245, 238, 228, 0.84) 0%, rgba(245, 238, 228, 0.78) 50%, rgba(245, 238, 228, 0.72) 100%),
        var(--hero-editorial-bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-slide__text--center {
    text-align: center;
    margin-inline: auto;
}

.hero-slide__text--center .hero-slide__description {
    margin-inline: auto;
}

.hero-editorial__image {
    height: 315px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(20, 12, 6, 0.16);
}

.hero-editorial__image--left {
    transform: translateY(12px);
}

.hero-editorial__image--right {
    transform: translateY(-8px);
}

.hero--full {
    color: var(--hero-title);
    overflow: hidden;
    background: #d7c2a2;
    background-image: var(--hero-full-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-full__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--hero-full-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    padding: 0;
}

.hero-full__image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    filter: saturate(1.06) contrast(1.03);
    transition: none;
}

.hero-full__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-slide__inner--full {
    grid-template-columns: 1fr;
    position: relative;
    z-index: 2;
}

.hero-slide__text--full {
    max-width: min(560px, 52%);
    margin-left: auto;
    padding-right: clamp(12px, 2vw, 24px);
}

.hero--focus .hero-slide__inner {
    grid-template-columns: 1fr 1fr;
}

.hero--focus {
    background-image:
        linear-gradient(90deg, rgba(245, 238, 228, 0.86) 0%, rgba(245, 238, 228, 0.76) 42%, rgba(245, 238, 228, 0.5) 100%),
        var(--hero-focus-bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-focus__media {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 18px;
}

.hero-focus__main {
    height: 323px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.15);
}

.hero-focus__detail {
    width: 101px;
    height: 128px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero-theme--light {
    --hero-bg: #f5f0eb;
    --hero-title: #2a2218;
    --hero-text: #75695f;
    --hero-subtitle: #b08d6a;
    --hero-card: #ffffff;
    --hero-btn-border: #2a2218;
    --hero-btn-bg: transparent;
    --hero-btn-text: #2a2218;
    --hero-overlay: rgba(42, 34, 24, 0.45);
}

.hero-theme--warm {
    --hero-bg: #efe4d7;
    --hero-title: #3b2819;
    --hero-text: #6a4f3a;
    --hero-subtitle: #bf8352;
    --hero-card: #fffaf4;
    --hero-btn-border: #3b2819;
    --hero-btn-bg: transparent;
    --hero-btn-text: #3b2819;
    --hero-overlay: rgba(56, 33, 18, 0.48);
}

.hero-theme--dark {
    --hero-bg: #1d1b20;
    --hero-title: #f4ece3;
    --hero-text: #d7cdc3;
    --hero-subtitle: #deb282;
    --hero-card: #2b2830;
    --hero-btn-border: #f4ece3;
    --hero-btn-bg: transparent;
    --hero-btn-text: #f4ece3;
    --hero-overlay: rgba(8, 8, 10, 0.56);
}

/* Slider navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    color: #2a2218;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(16, 11, 6, 0.2);
    z-index: 10;
    border: 1px solid rgba(42, 34, 24, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.slider-btn:hover {
    background: #2a2218;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 28px rgba(16, 11, 6, 0.28);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(42,34,24,0.24);
    border: 1px solid rgba(42, 34, 24, 0.18);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), width var(--transition), border-color var(--transition);
}
.dot.active {
    width: 24px;
    background: #2a2218;
    border-color: #2a2218;
    transform: none;
}

/* ===================== SECTIONS ===================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-discover {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-text);
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-more {
    text-align: center;
    margin-top: 40px;
}

/* ===================== CATEGORY BANNERS ===================== */
.section-categories { padding: 70px 0; }

.category-banners {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.category-banner {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 465px;
    aspect-ratio: auto;
    min-width: 0;
}

.banner-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f4f4f4;
}
.banner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.category-banner:hover .banner-img-wrap img { transform: scale(1.03); }

.banner-brand-mark {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 2;
    color: rgba(39, 39, 39, 0.6);
    font-family: 'Lora', 'Georgia', serif;
    font-size: clamp(24px, 2vw, 44px);
    line-height: 1;
    letter-spacing: 0.02em;
    pointer-events: none;
    user-select: none;
}

.banner-label-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    text-align: left;
    padding: 30px 14px 14px;
}
.banner-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
.banner-shop-now {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
    text-transform: lowercase;
}

/* ===================== PRODUCT GRID ===================== */
.section-products { padding: 60px 0; background: #fff; }
.section-products-secondary { padding-top: 30px; padding-bottom: 75px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    min-width: 0;
}
.product-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-top {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f4f4f4;
}
.product-img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-link img { transform: scale(1.04); }

/* Add to cart overlay button (top-right) */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-atc {
    background: var(--dark);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
    font-family: var(--font);
    white-space: nowrap;
    transition: background var(--transition);
}
.btn-atc:hover { background: var(--blue); }

.btn-atc-icon,
.btn-qv {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.btn-atc-icon i,
.btn-qv i {
    font-size: 14px;
    line-height: 1;
}
.btn-atc-icon:hover,
.btn-qv:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-1px);
}

.product-bottom {
    padding: 14px 16px 16px;
}
.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-name a { color: var(--heading); }
.product-name a:hover { color: var(--blue); }

.product-price .price { color: var(--dark); font-weight: 700; font-size: 15px; }
.product-price .price-old { color: var(--light-text); text-decoration: line-through; font-size: 13px; margin-right: 6px; }
.product-price .price-sale { color: #e44; font-weight: 700; font-size: 15px; }

/* ===================== QUICK VIEW MODAL ===================== */
.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}
.quick-view-modal.open { display: block; }
.quick-view-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 13, 12, 0.68);
}
.quick-view-dialog {
    position: relative;
    max-width: 900px;
    width: calc(100% - 72px);
    margin: 5vh auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 18px;
}
.quick-view-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.84);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.quick-view-media {
    background: #f6f6f6;
    border-radius: 4px;
    overflow: hidden;
}
.quick-view-media img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.quick-view-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
}
.quick-view-title {
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.15;
    color: var(--heading);
    margin: 0;
}
.quick-view-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
}
.quick-view-price .qv-price-old {
    font-size: 18px;
    color: var(--light-text);
    text-decoration: line-through;
    margin-right: 10px;
}
.quick-view-price .qv-price-sale {
    color: #e44;
}
.quick-view-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 6px 0 0;
}
.quick-view-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    border: 1px solid #8ec96b;
    color: #3e7a24;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
}
.quick-view-stock::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #78bc4f;
}
.quick-view-stock.is-out {
    border-color: #d7a5a5;
    color: #9e4242;
}
.quick-view-stock.is-out::before { background: #cc6565; }
.quick-view-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.quick-view-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    overflow: hidden;
}
.qv-qty-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #444;
    font-size: 22px;
}
#qv-qty-display {
    width: 44px;
    height: 40px;
    border: none;
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    text-align: center;
    font-size: 18px;
    color: #444;
    background: #fff;
}
.quick-view-btn-atc,
.quick-view-btn-buy {
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.quick-view-btn-atc {
    background: #222;
    color: #fff;
}
.quick-view-btn-atc:hover { background: #111; }
.quick-view-atc-form,
.quick-view-buy-form {
    display: inline-flex;
}
.quick-view-btn-buy {
    border: none;
    background: #7cbc44;
    color: #fff;
}
.quick-view-btn-buy:hover { background: #66a535; color: #fff; }

/* ===================== VIDEO SECTION ===================== */
.video-section { background: #fff; overflow: hidden; }
.video-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 465px;
}
.video-col {
    position: relative;
    overflow: hidden;
    background: #f5ddd0;
}
.video-col video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 70px;
    background: #fff;
}
.video-title {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--heading);
    line-height: 1.25;
    margin: 14px 0 36px;
}
.video-text-col .section-discover {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: none;
    font-weight: 400;
}

/* ===================== BREADCRUMB ===================== */
.page-breadcrumb {
    padding: 14px 0;
    background: #f8f8f8;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--light-text);
}
.page-breadcrumb a { color: var(--text); }
.page-breadcrumb a:hover { color: var(--blue); }
.page-breadcrumb span { color: var(--dark); }

/* ===================== SHOP PAGE ===================== */
.shop-section { padding: 50px 0 80px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }

/* Sidebar */
.shop-sidebar { }
.widget { margin-bottom: 36px; }
.widget-title { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--dark); }
.category-list li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.category-list li:last-child { border-bottom: none; }
.category-list a { font-size: 14px; color: var(--text); }
.category-list li.active a, .category-list a:hover { color: var(--blue); font-weight: 600; }
.sub-category-list { padding-left: 14px; margin-top: 4px; }
.sub-category-list li { border-bottom: none; padding: 3px 0; }

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.shop-title { font-size: 22px; font-weight: 700; color: var(--heading); }
.product-count { font-size: 13px; color: var(--light-text); }

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
}
.shop-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.shop-pagination-link {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text);
    background: #fff;
}
.shop-pagination-link:hover {
    border-color: var(--dark);
    color: var(--dark);
}
.shop-pagination-link.disabled {
    color: var(--light-text);
    background: #f8f8f8;
    pointer-events: none;
}
.shop-pagination-current {
    font-size: 13px;
    color: var(--light-text);
}

/* Subcategory nav */
.subcategory-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.subcat-link {
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text);
    transition: all var(--transition);
}
.subcat-link:hover, .subcat-link.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* ===================== PRODUCT DETAIL ===================== */
.product-detail-section { padding: 50px 0 80px; }
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: #f4f4f4;
    aspect-ratio: 1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main video { width: 100%; height: 100%; object-fit: cover; display: block; background: #111; }

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.thumb {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-video { position: relative; }
.thumb-video-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.28);
}
.thumb.active, .thumb:hover { border-color: var(--dark); }

.product-category-tag { margin-bottom: 8px; }
.product-category-tag a { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--light-text); }
.product-category-tag a:hover { color: var(--blue); }

.product-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: var(--heading); margin: 10px 0 16px; line-height: 1.2; }

.product-price-detail { margin-bottom: 20px; }
.product-price-detail .price { font-size: 24px; font-weight: 700; color: var(--dark); }
.product-price-detail .price-old { font-size: 18px; color: var(--light-text); text-decoration: line-through; margin-right: 8px; }
.product-price-detail .price-sale { font-size: 24px; font-weight: 700; color: #e44; }

.product-short-desc { color: var(--text); margin-bottom: 20px; line-height: 1.7; font-size: 14px; }
.product-short-desc p { margin-bottom: 8px; }

.product-stock { font-size: 14px; font-weight: 600; margin-bottom: 22px; }
.in-stock { color: #28a745; }
.out-of-stock { color: #dc3545; }

.add-to-cart-form { margin-bottom: 24px; }
.qty-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-btn { width: 36px; height: 42px; font-size: 18px; background: #f4f4f4; color: var(--dark); transition: background var(--transition); }
.qty-btn:hover { background: #eee; }
.qty-input { width: 52px; height: 42px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 15px; outline: none; }
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-addcart { padding: 12px 32px; }

.product-meta { font-size: 13px; color: var(--light-text); margin-top: 16px; }

/* Product tabs */
.product-tabs { margin-bottom: 60px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 12px 24px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--transition); color: var(--text); }
.tab-btn.active { border-bottom-color: var(--dark); color: var(--dark); }
.tab-content { font-size: 14px; color: var(--text); line-height: 1.8; }
.tab-content p { margin-bottom: 12px; }

.related-products { margin-top: 60px; }

/* ===================== CART PAGE ===================== */
.cart-section { padding: 50px 0 80px; }
.page-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--heading); margin-bottom: 30px; }

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; background: #f8f8f8; color: var(--dark); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; border-bottom: 2px solid var(--border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }

.cart-product-info { display: flex; align-items: center; gap: 14px; }
.cart-product-info img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.cart-product-name { font-size: 14px; font-weight: 600; color: var(--heading); }
.cart-product-name:hover { color: var(--blue); }

.remove-btn { color: #ccc; font-size: 16px; transition: color var(--transition); }
.remove-btn:hover { color: #e44; }

.cart-actions { margin-top: 20px; }

/* Cart Summary */
.cart-summary { background: #f8f8f8; border-radius: var(--radius); padding: 28px; }
.cart-summary h3 { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--dark); }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-shipping span:last-child { font-size: 12px; color: var(--light-text); }
.summary-total { font-weight: 700; font-size: 16px !important; color: var(--dark); border-bottom: none; }
.cart-summary .btn-block { margin-top: 20px; }

.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart i { color: var(--border); margin-bottom: 20px; }
.empty-cart p { font-size: 18px; color: var(--light-text); margin-bottom: 24px; }

/* ===================== CHECKOUT ===================== */
.checkout-section { padding: 50px 0 80px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: start; }
.checkout-form h3, .checkout-summary h3 { font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--dark); }

.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group .required { color: #e44; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--dark); }
.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; cursor: pointer; padding-right: 36px; }
.select-wrapper::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 12px; color: var(--text); }

/* Checkout Order Table */
.checkout-order-table { width: 100%; border-collapse: collapse; margin-bottom: 0; }
.checkout-order-table thead tr { border-bottom: 1px solid var(--border); }
.checkout-order-table th { font-size: 12px; font-weight: 400; color: var(--text); padding: 10px 0; text-align: left; letter-spacing: 0.5px; }
.checkout-order-table th.col-subtotal { text-align: right; }
.checkout-item-row { border-bottom: 1px solid var(--border); }
.checkout-item-cell { display: flex; align-items: flex-start; gap: 10px; padding: 14px 0; position: relative; }
.checkout-item-price { padding: 14px 0; text-align: right; font-size: 14px; white-space: nowrap; vertical-align: middle; }
.checkout-remove-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text); font-size: 16px; line-height: 1;
    text-decoration: none;
    padding: 0 4px 0 0; flex-shrink: 0; margin-top: 2px;
}
.checkout-remove-btn:hover { color: var(--dark); }
.remove-form { display: inline; margin: 0; padding: 0; }
.checkout-item-img { width: 66px; height: 66px; flex-shrink: 0; overflow: hidden; border-radius: 4px; border: 1px solid var(--border); }
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.checkout-qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); display: inline-flex; border-radius: 3px; overflow: hidden; }
.qty-btn {
    background: none; border: none; cursor: pointer;
    width: 28px; height: 28px; font-size: 16px; line-height: 1;
    color: var(--dark); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.qty-btn:hover { background: var(--bg); }
.qty-display { font-size: 13px; padding: 0 8px; min-width: 28px; text-align: center; line-height: 28px; }
.qty-form { display: inline; }
.checkout-edit-cart-link {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    font-size: 12px;
    color: var(--text);
    border-left: 1px solid var(--border);
    line-height: 28px;
    text-decoration: none;
}
.checkout-edit-cart-link:hover { color: var(--dark); }

.checkout-subtotal-row td, .checkout-total-row td { padding: 12px 0; font-size: 14px; }
.checkout-subtotal-row td:last-child, .checkout-total-row td:last-child { text-align: right; }
.checkout-total-row td { font-size: 15px; border-top: 1px solid var(--border); }

/* Payment Info Section */
.payment-info-section { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.payment-info-section h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 16px; }
.payment-method-item { background: #fafafa; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 16px; }
.payment-method-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; cursor: pointer; }
.payment-method-desc { font-size: 12px; color: var(--text); margin: 8px 0 0 24px; }
.terms-wrapper { margin-bottom: 20px; }
.terms-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text); cursor: pointer; line-height: 1.5; }
.terms-label input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; width: auto; }
.terms-label a { color: var(--dark); text-decoration: underline; }
.terms-label abbr { color: #e44; margin-left: 4px; }
.terms-link { cursor: pointer; }
.checkout-account-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    background: #fafcff;
}
.checkout-code-row { margin-top: 12px; }
.checkout-signup-copy {
    margin-bottom: 12px;
    padding: 10px 12px;
    border: 1px solid #e8edf7;
    border-radius: 10px;
    background: #fff;
}
.checkout-signup-copy__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}
.checkout-signup-copy__desc {
    font-size: 12px;
    color: var(--light-text);
    line-height: 1.6;
}
.checkout-code-inline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}
.checkout-code-inline .btn {
    min-width: 122px;
    padding: 11px 14px;
}
.checkout-code-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--light-text);
}

/* Terms Modal */
.terms-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}
.terms-modal-overlay.open { display: flex; }
.terms-modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.terms-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.terms-modal-header h3 { font-size: 18px; font-weight: 700; color: var(--heading); margin: 0; }
.terms-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition);
}
.terms-modal-close:hover { color: var(--dark); }
.terms-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

.payment-info { background: #fffbf0; border: 1px solid #ffe9a0; padding: 14px 16px; border-radius: var(--radius); font-size: 13px; color: #7a6500; margin-bottom: 20px; line-height: 1.6; }
.payment-info i { margin-right: 6px; }

.btn-place-order { padding: 15px; font-size: 15px; }

/* ===================== SIMPLE PAGES (IP, Delivery) ===================== */
.simple-page-section { padding: 60px 0 80px; }
.simple-page-container { max-width: 860px; margin: 0 auto; }
.simple-page-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--heading); text-align: center; margin-bottom: 48px; }
.simple-page-content { font-size: 15px; color: #333; line-height: 1.85; }
.simple-page-content h3 { font-size: 18px; font-weight: 700; color: var(--heading); margin: 28px 0 10px; }
.simple-page-content ul { padding-left: 20px; margin: 10px 0; }
.simple-page-content li { margin-bottom: 6px; }
.simple-page-content a { color: var(--dark); text-decoration: underline; }
.simple-page-content a.contact-cta-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.simple-page-section.sp-width-narrow .simple-page-container { max-width: 700px; }
.simple-page-section.sp-width-wide .simple-page-container { max-width: 1040px; }

.simple-page-section.sp-align-left .simple-page-title { text-align: left; margin-bottom: 28px; }
.simple-page-section.sp-align-left .simple-page-content { text-align: left; }

.simple-page-section.sp-title-compact .simple-page-title { font-size: clamp(24px, 3vw, 36px); }
.simple-page-section.sp-title-hero .simple-page-title { font-size: clamp(34px, 5vw, 58px); }

.simple-page-section.sp-body-small .simple-page-content { font-size: 14px; line-height: 1.75; }
.simple-page-section.sp-body-large .simple-page-content { font-size: 17px; line-height: 1.9; }

.simple-page-section.sp-font-serif .simple-page-title,
.simple-page-section.sp-font-serif .simple-page-content {
    font-family: "Lora", Georgia, "Times New Roman", serif;
}
.simple-page-section.sp-font-sans .simple-page-title,
.simple-page-section.sp-font-sans .simple-page-content {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.simple-page-section.sp-surface-soft .simple-page-container,
.about-section.sp-surface-soft .about-layout {
    background: linear-gradient(180deg, #fffefb, #fbf8f0);
    border: 1px solid #eee5d0;
    border-radius: 16px;
    padding: 34px 30px;
}
.simple-page-section.sp-surface-card .simple-page-container,
.about-section.sp-surface-card .about-layout {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

/* ===================== FOOTER UPDATES ===================== */
.footer-contact-list { list-style: none; padding: 0; margin-top: 12px; }
.footer-contact-list li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-list li a:hover { color: #fff; }


/* ===================== ORDER SUCCESS ===================== */
.order-success-section { padding: 80px 0; }
.order-success-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 50px 40px;
}
.success-icon { font-size: 64px; color: #28a745; margin-bottom: 20px; }
.order-success-box h1 { font-size: 28px; font-weight: 800; color: var(--heading); margin-bottom: 16px; }
.success-message { font-size: 16px; color: var(--text); margin-bottom: 36px; line-height: 1.7; }

.order-details { text-align: left; border-top: 2px solid var(--border); padding-top: 28px; margin-bottom: 28px; }
.order-details h3 { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 18px; }
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 24px; font-size: 14px; }
.order-info-grid div { color: var(--text); }
.order-info-grid strong { color: var(--dark); }

.order-items-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.order-items-table th, .order-items-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.order-items-table th { background: #f8f8f8; font-weight: 600; color: var(--dark); }
.order-items-table tfoot td { border-bottom: none; border-top: 2px solid var(--border); }

.success-actions { margin-top: 24px; }

/* ===================== CUSTOMER ACCOUNT ===================== */
.account-section {
    padding: 48px 0 80px;
}
.account-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
    align-items: start;
}
.account-main-stack {
    display: grid;
    gap: 20px;
}
.account-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.account-card-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}
.account-card-body {
    padding: 18px 20px;
}
.account-links {
    display: grid;
    gap: 8px;
}
.account-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--dark);
    font-size: 13px;
    background: #f7f9fc;
}
.account-links a:hover {
    background: #eef3fb;
}
.account-links--pro a.is-active {
    background: #121936;
    color: #fff;
}
.account-links--pro a.is-active .account-soft-badge,
.account-links--pro a.is-active .account-badge {
    background: #fff;
    color: #121936;
}
.account-nav-card .account-card-body {
    padding: 20px;
}
.account-user-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.account-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading);
}
.account-user-email {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 3px;
    word-break: break-word;
}
.account-sidebar-logout {
    margin-top: 14px;
}
.account-logout-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.account-soft-badge {
    margin-left: auto;
    background: #e8edf6;
    color: #111827;
    font-size: 11px;
    line-height: 1;
    border-radius: 999px;
    padding: 4px 7px;
    font-weight: 600;
}
.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.account-summary-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 14px 16px;
}
.account-summary-label {
    font-size: 12px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.account-summary-value {
    margin-top: 6px;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
}
.account-orders-table {
    width: 100%;
    border-collapse: collapse;
}
.account-orders-table th,
.account-orders-table td {
    border-bottom: 1px solid var(--border);
    padding: 10px 8px;
    font-size: 13px;
    text-align: left;
}
.account-orders-table th {
    font-weight: 700;
    color: var(--heading);
}
.account-status-badge {
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 8px;
    background: #eef2ff;
    color: #2d3a8c;
}
.account-message-thread {
    display: grid;
    gap: 10px;
}
.account-message-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}
.account-message-item.admin {
    background: #f7f9fc;
}
.account-feed-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.account-feed-item:last-child {
    border-bottom: 0;
}
.account-feed-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.account-feed-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}
.account-feed-meta {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 4px;
}
.account-feed-body {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
}
.account-feed-link {
    margin-top: 7px;
    display: inline-block;
    font-size: 13px;
    text-decoration: underline;
}
.account-thread-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.account-thread-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.account-thread-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading);
}
.account-thread-meta {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 4px;
}
.account-thread-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.account-thread-preview {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.account-receipt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}
.account-receipt-row {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fcfdff;
    padding: 9px 10px;
    display: grid;
    gap: 4px;
}
.account-receipt-row span {
    font-size: 11px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.account-receipt-row strong {
    font-size: 13px;
    color: var(--heading);
    word-break: break-word;
}
.account-receipt-subhead {
    margin: 16px 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--heading);
}
.account-empty-hint {
    font-size: 13px;
    color: var(--light-text);
    margin-top: 8px;
}
.form-error {
    margin-top: 6px;
    font-size: 12px;
    color: #a12e2e;
}
.account-auth-wrap {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.auth-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 22px;
}
.auth-card h2 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--heading);
}
.auth-divider {
    margin: 8px 0 12px;
    border-top: 1px dashed var(--border);
}
.auth-help {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 8px;
}

/* ===================== ABOUT PAGE ===================== */
.about-section { padding: 60px 0 80px; }
.about-layout { display: grid; gap: 36px; align-items: center; }
.about-layout--centered { justify-items: center; text-align: center; }
.about-text--centered { max-width: 860px; margin: 0 auto; }
.about-text h1 {
    font-size: clamp(32px, 4.2vw, 52px);
    font-family: 'Lora', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--heading);
    margin: 14px 0 24px;
}
.about-text p {
    color: var(--text);
    line-height: 1.95;
    margin: 0 auto 16px;
    max-width: 760px;
    font-size: 17px;
}
.about-img { width: min(100%, 560px); }
.about-features { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 8px; }
.feature { text-align: center; padding: 20px 12px; border: 1px solid var(--border); border-radius: var(--radius); }
.feature i { font-size: 28px; color: var(--dark); margin-bottom: 10px; }
.feature h4 { font-size: 14px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--light-text); margin: 0; }
.about-img img { border-radius: var(--radius); width: 100%; }

.about-section.sp-width-narrow .about-layout { max-width: 760px; margin: 0 auto; }
.about-section.sp-width-wide .about-layout { max-width: 1120px; margin: 0 auto; }
.about-section.sp-align-left .about-layout--centered { justify-items: stretch; text-align: left; }
.about-section.sp-align-left .about-text--centered { margin: 0; max-width: none; }
.about-section.sp-title-compact .about-text h1 { font-size: clamp(26px, 3vw, 40px); }
.about-section.sp-title-hero .about-text h1 { font-size: clamp(40px, 5.4vw, 66px); }
.about-section.sp-body-small .about-text p { font-size: 15px; line-height: 1.8; }
.about-section.sp-body-large .about-text p { font-size: 19px; line-height: 2; }
.about-section.sp-font-serif .about-text,
.about-section.sp-font-serif .feature {
    font-family: "Lora", Georgia, "Times New Roman", serif;
}
.about-section.sp-font-sans .about-text,
.about-section.sp-font-sans .feature {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===================== FOOTER ===================== */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text); margin: 16px 0 20px; line-height: 1.7; }
.footer-logo {
    height: 78px;
    max-height: 78px;
    width: auto;
    max-width: none;
    margin-bottom: 12px;
    display: block;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #f4f4f4; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--dark); transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--dark); color: #fff; }

.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--dark); }
.footer-col ul li { padding: 5px 0; }
.footer-col ul a { font-size: 14px; color: var(--text); }
.footer-col ul a:hover { color: var(--blue); }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); padding: 5px 0; }
.contact-list i { color: var(--dark); width: 16px; text-align: center; }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: 13px; color: var(--light-text); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .category-banners { grid-template-columns: repeat(4, 1fr); }
    .category-banner { height: 390px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-slide,
    .hero-slide__inner { min-height: 390px; }
    .hero-media-stack { height: 270px; }
    .hero-media-card--main { width: 135px; height: 150px; left: 9px; }
    .hero-media-card--secondary { width: 124px; height: 139px; left: 109px; }
    .hero-media-card--tertiary { width: 109px; height: 124px; left: 56px; top: 89px; }
    .hero-editorial__image { height: 255px; }
    .hero-focus__main { height: 270px; }

    .hero--split .hero-media-stack { height: 270px; }
    .hero--split .hero-media-card--main { width: 203px; height: 225px; left: 14px; top: 5px; }
    .hero--split .hero-media-card--secondary { width: 186px; height: 209px; left: 144px; top: 24px; }
    .hero--split .hero-media-card--tertiary { width: 164px; height: 186px; left: 74px; top: 84px; }
    .video-inner { min-height: 390px; }
}

@media (max-width: 900px) {
    .container { padding: 0 16px; }
    .header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 92px;
        gap: 10px;
    }
    .logo-img {
        height: 82px;
        max-height: 82px;
        max-width: min(66vw, 360px);
    }
    .header-right { gap: 10px; }
    .search-toggle,
    .cart-link,
    .account-link {
        font-size: 20px;
        padding: 4px;
    }
    .account-dropdown {
        min-width: min(92vw, 300px);
        right: -6px;
    }
    .main-nav { display: none; order: 4; grid-column: 1 / -1; }
    .main-nav.open { display: flex; }
    .hamburger { display: flex; }
    .site-logo { justify-content: center; }

    .main-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }
    .main-nav.open { left: 0; }
    .mobile-nav-top { display: flex; }
    .nav-list { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
    .nav-link { padding: 14px 24px; border-bottom: 1px solid var(--border); }
    .dropdown { position: static; box-shadow: none; border: none; border-top: none; opacity: 1; visibility: visible; transform: none; display: none; background: #f9f9f9; }
    .nav-item.active .dropdown { display: block; }

    /* Slider responsive */
    .hero-slider {
        background: transparent;
        padding: 12px 12px 4px;
    }
    .slide {
        border-radius: 20px;
        box-shadow: 0 16px 34px rgba(17, 12, 8, 0.14);
    }
    .hero-slide,
    .hero-slide__inner { min-height: clamp(390px, 86vw, 480px); }
    /* No overlay pseudo — text sits directly on the photo; contrast via text-shadow below. */
    .hero-slide__inner {
        position: relative;
        z-index: 2;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 16px calc(60px + env(safe-area-inset-bottom));
        align-content: end;
    }
    .hero-slide__text {
        max-width: min(86%, 420px);
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
        display: grid;
        gap: 6px;
        min-height: 0;
    }
    .hero-slide__subtitle {
        font-size: 10px;
        letter-spacing: 2.3px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.92);
        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.85),
            0 0 18px rgba(0, 0, 0, 0.45);
    }
    .hero-slide__title {
        font-size: clamp(32px, 8vw, 44px);
        margin-bottom: 0;
        color: #ffffff;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.75),
            0 4px 24px rgba(0, 0, 0, 0.5);
    }
    .hero-slide__description {
        max-width: 100%;
        margin-bottom: 2px;
        font-size: 13px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        color: rgba(255, 255, 255, 0.95);
        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 0 16px rgba(0, 0, 0, 0.4);
    }
    .btn-slide,
    .btn-slide--solid {
        min-width: 138px;
        text-align: center;
        padding: 10px 20px;
        font-size: 12px;
        box-shadow: none;
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: none;
    }
    .btn-slide:hover,
    .btn-slide--solid:hover {
        background: transparent;
        color: #fff;
        transform: none;
        box-shadow: none;
    }
    .hero-media-stack,
    .hero-editorial__image,
    .hero-focus__media { display: none; }
    .hero--split .hero-slide__decor { display: none; }
    /* Full-bleed photo only — no cream wash overlay on top of the image. */
    .hero--split {
        background-image: var(--hero-split-bg-image-mobile, var(--hero-split-bg-image));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .hero--editorial {
        background-image: var(--hero-editorial-bg-image-mobile, var(--hero-editorial-bg-image));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .hero--focus {
        background-image: var(--hero-focus-bg-image-mobile, var(--hero-focus-bg-image));
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .hero--editorial .hero-slide__inner { grid-template-columns: 1fr; }
    .hero--focus .hero-slide__inner { grid-template-columns: 1fr; }
    .hero-slide__text--center { text-align: left; }
    .hero-slide__text--center .hero-slide__description { margin-inline: 0; }
    .hero-full__image-wrap { background-position: center center; }
    .hero-full__image {
        object-fit: cover;
        object-position: center center;
    }
    .hero-full__overlay { background: transparent; }
    .hero-slide__text--full { max-width: 100%; margin-left: 0; padding-right: 0; }
    .category-banners { grid-template-columns: repeat(2, 1fr); }
    .category-banner { height: 390px; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .slider-btn { display: none; }
    /* Invisible tap strips (prev/next) — upper area only so bottom CTA links stay usable */
    .slider-tap-zones {
        position: absolute;
        inset: 0;
        z-index: 6;
        pointer-events: none;
    }
    .slider-tap-zone {
        position: absolute;
        top: 0;
        bottom: 38%;
        width: min(30%, 140px);
        pointer-events: auto;
        border: 0;
        padding: 0;
        margin: 0;
        background: transparent;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .slider-tap-zone--prev { left: 0; }
    .slider-tap-zone--next { right: 0; }
    .slider-dots {
        bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 6px;
        padding: 5px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 8px 18px rgba(16, 11, 6, 0.2);
        backdrop-filter: blur(6px);
    }
    .dot {
        width: 7px;
        height: 7px;
    }
    .dot.active { width: 18px; }
    .section-categories { padding: 54px 0 58px; }
    .product-actions {
        opacity: 1;
        transform: none;
        top: 10px;
        right: 10px;
    }

    .quick-view-dialog {
        width: calc(100% - 26px);
        margin: 3vh auto;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
    }
    .quick-view-media img {
        max-height: min(42dvh, 360px);
        object-fit: contain;
    }
    .quick-view-content {
        max-height: none;
        overflow: visible;
    }
    .quick-view-title { font-size: clamp(24px, 6vw, 34px); }
    .quick-view-price { font-size: 24px; }
    .quick-view-desc { font-size: 15px; }
    .quick-view-btn-atc,
    .quick-view-btn-buy { font-size: 16px; }

    .product-detail-layout { grid-template-columns: 1fr; gap: 30px; }
    .checkout-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .video-inner { grid-template-columns: 1fr; min-height: 390px; }
    .video-col { min-height: 390px; }
    .video-text-col { padding: 40px 30px; align-items: center; text-align: center; }
    .account-shell { grid-template-columns: 1fr; }
    .account-summary-grid { grid-template-columns: 1fr 1fr; }
    .account-thread-top { flex-direction: column; align-items: flex-start; }
    .account-receipt-grid { grid-template-columns: 1fr; }
    .account-auth-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .mobile-nav-top { display: flex; }    /* already set at 900px */
    .container { padding: 0 12px; }
    .top-bar-inner { justify-content: center; gap: 10px; }
    .top-bar-social { gap: 10px; }
    .header-inner {
        grid-template-columns: 36px 1fr auto;
        min-height: 82px;
        gap: 8px;
    }
    .site-logo a {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .logo-img {
        height: 68px;
        max-height: 68px;
        max-width: min(72vw, 300px);
    }
    .hamburger { padding: 4px; }
    .hamburger span { width: 21px; }
    .header-right { gap: 8px; }
    .account-caret { display: none; }
    .account-dropdown {
        right: -8px;
        min-width: min(94vw, 300px);
    }

    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr { display: block; }
    .cart-table tr {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        position: relative;
    }
    .cart-table tr td { display: flex; justify-content: space-between; align-items: center; padding: 5px 42px 5px 0; border: none; font-size: 14px; }
    .cart-table tr td::before { content: attr(data-label); color: var(--text); font-size: 13px; font-weight: 400; }
    .cart-table .col-product { padding: 0 42px 10px 0; }
    .cart-table .col-product::before { display: none; }
    .cart-table .col-total { font-weight: 700; }
    .cart-table .col-total::before { font-weight: 700; }
    .cart-table .col-remove { position: absolute; right: 0; top: 14px; padding: 0; border: none; display: block; }
    .cart-table .col-remove::before { display: none; }
    .account-summary-grid { grid-template-columns: 1fr; }

    .hero-slider { padding: 10px 10px 4px; }
    .slide { border-radius: 16px; }
    .hero-slide,
    .hero-slide__inner { min-height: clamp(350px, 90vw, 430px); }
    .hero-slide__inner { padding: 18px 12px calc(54px + env(safe-area-inset-bottom)); }
    .hero-slide__text {
        max-width: min(88%, 360px);
        padding: 0;
        min-height: 0;
    }
    .hero-slide__title { font-size: clamp(30px, 8.2vw, 40px); }
    .hero-slide__description {
        font-size: 12px;
        line-height: 1.48;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }
    .btn-slide { padding: 10px 18px; font-size: 11px; min-width: 126px; }
    .category-banner { height: clamp(210px, 56vw, 300px); }
    .video-inner { min-height: 315px; }
    .video-col { min-height: 315px; }
    .hero-slide__text--full { max-width: 100%; padding-right: 0; }
    .slider-dots {
        bottom: calc(10px + env(safe-area-inset-bottom));
        padding: 4px 9px;
    }
    .slider-btn { display: none; }
    .category-banners { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .product-info { padding: 12px 12px 14px; }
    .product-name { font-size: 13px; }
    .product-price .price { font-size: 14px; }
    .btn-atc-icon,
    .btn-qv {
        width: 34px;
        height: 34px;
    }
    .quick-view-dialog {
        width: calc(100% - 14px);
        margin: 8px auto;
        padding: 12px;
        border-radius: 10px;
        max-height: calc(100dvh - 16px);
    }
    .quick-view-media img { max-height: min(38dvh, 300px); }
    .quick-view-title { font-size: 34px; line-height: 1.15; }
    .quick-view-price { font-size: 32px; }
    .quick-view-desc { font-size: 14px; line-height: 1.55; }
    .quick-view-actions {
        gap: 10px;
    }
    .quick-view-btn-atc,
    .quick-view-btn-buy {
        width: 100%;
        min-height: 42px;
    }
    .quick-view-atc-form,
    .quick-view-buy-form {
        width: 100%;
    }
    .quick-view-close {
        width: 34px;
        height: 34px;
        top: 8px;
        right: 8px;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-layout { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .simple-page-section.sp-surface-soft .simple-page-container,
    .simple-page-section.sp-surface-card .simple-page-container,
    .about-section.sp-surface-soft .about-layout,
    .about-section.sp-surface-card .about-layout {
        padding: 24px 16px;
    }
    .form-row.two-col { grid-template-columns: 1fr; }
    .order-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .hero-slide,
    .hero-slide__inner { min-height: clamp(320px, 92vw, 390px); }
    .hero-slide__title { font-size: clamp(26px, 7.4vw, 34px); }
    .hero-slide__subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .hero-slide__description {
        font-size: 11px;
        -webkit-line-clamp: 1;
    }
    .category-banners,
    .products-grid {
        gap: 10px;
    }
    .category-banner { height: 220px; }
}

/* Contact form */
.contact-form-card{
    margin-top:0;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:24px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15, 23, 42, .08);
}
.contact-form-title{
    margin:0 0 14px;
    font-size:24px;
    font-weight:700;
}
.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    margin-bottom:14px;
}
.contact-field{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.contact-field label{
    font-size:13px;
    color:#374151;
    font-weight:600;
}
.contact-field-full{
    grid-column:1 / -1;
}
.contact-form-input{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:11px 12px;
    font-size:14px;
    line-height:1.35;
    outline:none;
    background:#fff;
}
.contact-form-input:focus{
    border-color:#111827;
}
.contact-form-textarea{
    resize:vertical;
    min-height:120px;
}
.contact-form-errors{
    margin-bottom:12px;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #fecaca;
    background:#fef2f2;
    color:#b91c1c;
    font-size:13px;
}

.contact-page{
    padding:52px 0 84px;
    background:linear-gradient(180deg, #faf8f5 0%, #ffffff 70%);
}
.contact-hero{
    max-width:760px;
    margin:0 auto 26px;
    text-align:center;
}
.contact-kicker{
    margin:0 0 10px;
    font-size:13px;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:#9a7f53;
}
.contact-hero h1{
    margin:0 0 12px;
    font-size:clamp(34px, 5vw, 56px);
    line-height:1.06;
}
.contact-hero-desc{
    color:#4b5563;
    font-size:16px;
    line-height:1.8;
}
.contact-layout{
    display:grid;
    grid-template-columns:330px minmax(0,1fr);
    gap:22px;
    align-items:start;
}
.contact-side-card{
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:22px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15, 23, 42, .05);
}
.contact-side-card h3{
    margin:0 0 14px;
    font-size:22px;
}
.contact-side-card ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:12px;
}
.contact-side-card li{
    margin:0;
    padding:10px 0;
    border-bottom:1px solid #f1f5f9;
}
.contact-side-card li:last-child{
    border-bottom:0;
}
.contact-side-card span{
    display:block;
    margin-bottom:4px;
    font-size:12px;
    color:#6b7280;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.contact-side-card a,
.contact-side-card strong{
    font-size:15px;
    color:#111827;
    font-weight:600;
}
.contact-upload-hint{
    margin-bottom:12px;
    font-size:13px;
    color:#6b7280;
}
@media (max-width: 767px){
    .contact-page{
        padding:34px 0 54px;
    }
    .contact-layout{
        grid-template-columns:1fr;
        gap:14px;
    }
    .contact-form-card,
    .contact-side-card{
        padding:16px;
    }
    .contact-form-title{
        font-size:21px;
    }
    .contact-form-grid{
        grid-template-columns:1fr;
    }
}
