/* ============================================================
   LAMA Aruba — Theme CSS  (Carbon-layout edition)
   Loaded as a plain static file via layout.xml <link> tag.
   No SCSS bundle compilation — changes apply immediately.
   ============================================================ */

/* ─── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
    --lama-sand:        #E2CEB3;
    --lama-sand-light:  #F0E8DC;
    --lama-sand-mid:    #D4C0A0;
    --lama-sand-dark:   #C9AF8E;
    --lama-terra:       #C4623C;
    --lama-terra-dark:  #A84D2C;
    --lama-brown:       #8B5A3A;
    --lama-teal:        #7B9DAA;
    --lama-teal-dark:   #5C7E8C;
    --lama-gray:        #9C948A;
    --lama-cream:       #F8F4EF;
    --lama-charcoal:    #1C1A18;
    --lama-charcoal-mid:#2C2925;
    --lama-charcoal-lt: #3C3733;

    /* Legacy aliases kept for backward compat */
    --lama-clay:   #A84D2C;
    --lama-slate:  #7B9DAA;
    --lama-mist:   #F0E8DC;
    --lama-stone:  #9C948A;
    --lama-white:  #F8F4EF;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Easing */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── 2. RESETS ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* ─── 3. BASE TYPOGRAPHY ─────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--lama-charcoal);
    background-color: var(--lama-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--lama-charcoal);
    line-height: 1.1;
}

.lama-eyebrow {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lama-terra);
}

/* ─── 4. ANNOUNCEMENT BAR ────────────────────────────────────── */
.s_lama_announce {
    background: var(--lama-charcoal-mid);
    color: rgba(240, 232, 220, 0.72);
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 24px;
    line-height: 1;
    position: relative;
    z-index: 201;
}
.s_lama_announce strong {
    color: var(--lama-sand);
    font-weight: 700;
}

/* ─── 5. NAVIGATION ──────────────────────────────────────────── */

/* Remove Odoo's padding offset for fixed headers */
#wrapwrap {
    padding-top: 0 !important;
}

/* Always-dark sticky nav */
#wrapwrap > header.lama-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--lama-charcoal) !important;
    border-bottom: 1px solid rgba(226, 206, 179, 0.07);
    box-shadow: none;
    transition: none;
}

/* Logo */
#wrapwrap > header.lama-header .navbar-brand img {
    height: 28px;
    width: auto;
    filter: invert(1) brightness(0.88) sepia(0.12);
    transition: opacity 0.2s ease;
}
#wrapwrap > header.lama-header .navbar-brand:hover img {
    opacity: 0.85;
}

/* Nav links */
#wrapwrap > header.lama-header .nav-link {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(240, 232, 220, 0.72) !important;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}
#wrapwrap > header.lama-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lama-sand);
    transition: width 0.25s ease;
}
#wrapwrap > header.lama-header .nav-link:hover,
#wrapwrap > header.lama-header .nav-link:focus-visible {
    color: var(--lama-sand-light) !important;
}
#wrapwrap > header.lama-header .nav-link:hover::after,
#wrapwrap > header.lama-header .nav-link:focus-visible::after {
    width: 100%;
}
#wrapwrap > header.lama-header .nav-link.active {
    color: var(--lama-sand) !important;
}
#wrapwrap > header.lama-header .nav-link.active::after {
    width: 100%;
}

/* Nav icon buttons (search, cart, wishlist) */
#wrapwrap > header.lama-header .o_header_btn,
#wrapwrap > header.lama-header .o_searchbar_form,
#wrapwrap > header.lama-header [data-action] {
    color: rgba(240, 232, 220, 0.72) !important;
    transition: color 0.2s ease;
}
#wrapwrap > header.lama-header .o_header_btn:hover,
#wrapwrap > header.lama-header [data-action]:hover {
    color: var(--lama-sand-light) !important;
}

/* Dropdown menus (regular — New Arrivals, Sale, etc.) */
/* Target every possible selector Odoo might use for nav dropdowns */
#wrapwrap header .dropdown-menu:not(.o_mega_menu),
#wrapwrap > header .dropdown-menu:not(.o_mega_menu),
#wrapwrap > header.lama-header .dropdown-menu:not(.o_mega_menu),
header .dropdown-menu:not(.o_mega_menu),
.o_header_standard .dropdown-menu:not(.o_mega_menu),
#top_menu .dropdown-menu:not(.o_mega_menu),
nav .dropdown-menu:not(.o_mega_menu) {
    background: #252220 !important;
    background-color: #252220 !important;
    border: 1px solid rgba(226, 206, 179, 0.10) !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    padding: 8px 0 !important;
}
#wrapwrap header .dropdown-menu:not(.o_mega_menu) .dropdown-item,
#wrapwrap header .dropdown-menu:not(.o_mega_menu) a,
header .dropdown-menu:not(.o_mega_menu) .dropdown-item,
header .dropdown-menu:not(.o_mega_menu) a,
nav .dropdown-menu:not(.o_mega_menu) .dropdown-item {
    color: rgba(240, 232, 220, 0.78) !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 0.04em;
    padding: 7px 20px !important;
    background: transparent !important;
    transition: color 0.15s ease, background 0.15s ease;
}
#wrapwrap header .dropdown-menu:not(.o_mega_menu) .dropdown-item:hover,
#wrapwrap header .dropdown-menu:not(.o_mega_menu) a:hover,
header .dropdown-menu:not(.o_mega_menu) .dropdown-item:hover,
nav .dropdown-menu:not(.o_mega_menu) .dropdown-item:hover {
    color: #F0E8DC !important;
    background: rgba(226, 206, 179, 0.08) !important;
}

/* Dropdown on hover (desktop) */
@media (min-width: 992px) {
    #wrapwrap > header.lama-header .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    #wrapwrap > header.lama-header .nav-item.dropdown > .dropdown-menu {
        transition: opacity 0.2s ease;
    }
}

/* Hide the Contact / Contact Us nav link */
#wrapwrap > header.lama-header .nav-item a.nav-link[href="/contactus"],
#wrapwrap > header.lama-header .nav-item a.nav-link[href="/contact"],
#wrapwrap > header.lama-header .nav-item a.nav-link[href*="contactus"],
#wrapwrap > header.lama-header .nav-item a.nav-link[href*="contact"] {
    display: none !important;
}

/* ── Mega Menu (full-width category dropdown) ── */
@media (min-width: 992px) {
    #wrapwrap > header.lama-header .dropdown-menu.o_mega_menu {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        position: fixed !important;
        top: auto !important;
        margin-top: 0 !important;
        background: #252220 !important;
        border: none !important;
        border-top: 1px solid rgba(226, 206, 179, 0.07) !important;
        border-bottom: 1px solid rgba(226, 206, 179, 0.07) !important;
        border-radius: 0 !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45) !important;
        padding: 0 !important;
        z-index: 1050;
        opacity: 1 !important;
    }
    #wrapwrap > header.lama-header .nav-item.dropdown:hover > .dropdown-menu.o_mega_menu {
        display: block;
    }
}

/* Mega menu inner grid */
.lm-mega { padding: 0; margin: 0; }
.lm-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 48px 40px;
    background: #252220;
}
.lm-mega-col {
    padding: 0 28px;
    border-right: 1px solid rgba(226, 206, 179, 0.06);
}
.lm-mega-col:first-child { padding-left: 0; }
.lm-mega-col:last-child { border-right: none; padding-right: 0; }

/* Mega menu headings */
.lm-mega-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lama-sand) !important;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(226, 206, 179, 0.1);
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.lm-mega-heading:hover { color: var(--lama-sand-light) !important; }

/* Sub-headings (e.g., Tops, Bottoms) */
.lm-mega-subhead {
    display: block;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(240, 232, 220, 0.88) !important;
    margin-top: 16px;
    margin-bottom: 5px;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.lm-mega-subhead:first-child,
.lm-mega-heading + .lm-mega-subhead { margin-top: 0; }
.lm-mega-subhead:hover { color: #F0E8DC !important; }

/* Category links */
.lm-mega-link {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(240, 232, 220, 0.78) !important;
    padding: 2.5px 0 2.5px 8px;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.lm-mega-link:hover { color: var(--lama-sand-light) !important; }

/* Featured column */
.lm-mega-feat {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240, 232, 220, 0.85) !important;
    padding: 8px 0;
    text-decoration: none !important;
    transition: color 0.15s ease;
}
.lm-mega-feat:hover { color: var(--lama-sand-light) !important; }
.lm-mega-sale { color: var(--lama-terra) !important; }
.lm-mega-sale:hover { color: #E07050 !important; }

/* Mega menu — reset ALL Odoo wrappers + solid dark background on every layer */
.o_mega_menu .s_mega_menu_odoo_menu,
.o_mega_menu > section,
.o_mega_menu > div,
.o_mega_menu .container,
.o_mega_menu .container-fluid,
.o_mega_menu .row,
.o_mega_menu .col,
.o_mega_menu > * {
    padding: 0 !important;
    margin: 0 !important;
    background: #252220 !important;
    max-width: 100% !important;
}

/* Responsive: mobile mega menu */
@media (max-width: 991px) {
    /* Container: render inline inside hamburger nav, not as a floating panel */
    #wrapwrap > header.lama-header .dropdown-menu.o_mega_menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        background: var(--lama-charcoal-mid, #252220) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        display: none;
    }
    /* Show when parent .dropdown has .show class (Bootstrap mobile toggle) */
    #wrapwrap > header.lama-header .nav-item.dropdown.show > .dropdown-menu.o_mega_menu {
        display: block !important;
    }

    /* Stack columns vertically */
    .lm-mega-inner {
        grid-template-columns: 1fr;
        padding: 8px 16px 16px;
        gap: 0;
    }
    .lm-mega-col {
        padding: 0;
        border-right: none;
        border-bottom: none;
        padding-bottom: 8px;
    }

    /* Tighter spacing for mobile headings */
    .lm-mega-heading {
        font-size: 9px;
        margin-bottom: 8px;
        padding-bottom: 6px;
        margin-top: 12px;
    }
    .lm-mega-col:first-child .lm-mega-heading:first-child { margin-top: 0; }
    .lm-mega-subhead {
        font-size: 11px;
        margin-top: 10px;
        margin-bottom: 3px;
    }
    .lm-mega-link {
        font-size: 10.5px;
        padding: 3px 0 3px 6px;
    }

    /* Featured column: inline row on mobile */
    .lm-mega-feat { font-size: 10px; padding: 4px 0; }
}

/* Remove old scrolled-state rules if they exist */
#wrapwrap > header.lama-header.lama-header--scrolled {
    background: var(--lama-charcoal) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
#wrapwrap > header.lama-header.lama-header--scrolled .nav-link {
    color: rgba(240, 232, 220, 0.72) !important;
}
#wrapwrap > header.lama-header.lama-header--scrolled .navbar-brand img {
    filter: invert(1) brightness(0.88) sepia(0.12) !important;
}

/* ─── 6. BUTTONS ─────────────────────────────────────────────── */
.btn,
.lama-btn-primary,
.lama-btn-ghost,
.lama-btn-sand {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: background 0.22s ease, transform 0.18s ease, border-color 0.22s ease, color 0.22s ease;
}
.btn:active,
.lama-btn-primary:active,
.lama-btn-ghost:active,
.lama-btn-sand:active {
    transform: translateY(0) !important;
}

.lama-btn-primary,
.btn-primary {
    background: var(--lama-terra);
    border: 1px solid var(--lama-terra);
    color: #fff !important;
    padding: 16px 34px;
}
.lama-btn-primary:hover,
.btn-primary:hover {
    background: var(--lama-terra-dark);
    border-color: var(--lama-terra-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.lama-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 15px 28px;
}
.lama-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff !important;
    transform: translateY(-1px);
}

.lama-btn-sand {
    background: var(--lama-sand-dark);
    border: 1px solid var(--lama-sand-dark);
    color: var(--lama-charcoal) !important;
    padding: 16px 34px;
}
.lama-btn-sand:hover {
    background: var(--lama-sand-mid);
    border-color: var(--lama-sand-mid);
    transform: translateY(-1px);
}

/* Bootstrap btn overrides for dark nav */
.btn-secondary {
    background: var(--lama-sand);
    border-color: var(--lama-sand);
    color: var(--lama-charcoal);
    border-radius: 0;
}
.btn-secondary:hover {
    background: var(--lama-sand-dark);
    border-color: var(--lama-sand-dark);
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 0;
}
.btn-outline-light:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

/* ─── 7. SHARED LAYOUT HELPERS ───────────────────────────────── */
.lama-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.lama-overline {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lama-terra);
    display: block;
    margin-bottom: 16px;
}

.lama-section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--lama-charcoal);
}

.lama-view-all {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lama-charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.65;
    transition: gap 0.22s ease, opacity 0.2s ease;
}
.lama-view-all:hover {
    gap: 14px;
    opacity: 1;
    color: var(--lama-charcoal);
}

/* ─── 8. HERO ────────────────────────────────────────────────── */
.s_lama_hero {
    position: relative;
    height: 92vh;
    min-height: 620px;
    max-height: 1000px;
    overflow: hidden;
    background: var(--lama-charcoal);
}

.s_lama_hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    opacity: 0.55;
    z-index: 0;
}

.s_lama_hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(28, 26, 24, 0.85) 0%, rgba(28, 26, 24, 0.18) 65%),
        linear-gradient(to top,   rgba(28, 26, 24, 0.55) 0%, transparent 50%);
    z-index: 1;
}

.s_lama_hero__content {
    position: absolute;
    bottom: 88px;
    left: 80px;
    max-width: 600px;
    z-index: 3;
}

.s_lama_hero__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lama-sand);
    margin-bottom: 20px;
}

.s_lama_hero__headline {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
}
.s_lama_hero__headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--lama-sand-light);
}

.s_lama_hero__sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 36px;
    max-width: 360px;
}

.s_lama_hero__ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

/* ─── 9. TICKER ──────────────────────────────────────────────── */
.s_lama_ticker {
    background: var(--lama-terra);
    overflow: hidden;
    height: 42px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.s_lama_ticker__track {
    display: inline-flex;
    align-items: center;
    animation: lama-ticker 32s linear infinite;
}
.s_lama_ticker__track:hover { animation-play-state: paused; }

.s_lama_ticker__item {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 40px;
    flex-shrink: 0;
}

.s_lama_ticker__sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1;
}

@keyframes lama-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── 10. COLLECTION — 4-col flat product grid ───────────────── */
.s_lama_collection {
    padding: 88px 0;
}

.s_lama_collection__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 44px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(28, 26, 24, 0.09);
}

.s_lama_collection__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product card */
.s_lama_card {
    cursor: pointer;
}

.s_lama_card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--lama-sand-light);
    margin-bottom: 14px;
}

.s_lama_card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.s_lama_card:hover .s_lama_card__img {
    transform: scale(1.06);
}

.s_lama_card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--lama-terra);
    color: #fff;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}
.s_lama_card__badge--teal  { background: var(--lama-teal); }
.s_lama_card__badge--dark  { background: var(--lama-charcoal-lt); }

.s_lama_card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 26, 24, 0.88);
    color: var(--lama-sand-light);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 14px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    z-index: 2;
}
.s_lama_card:hover .s_lama_card__quick-add {
    transform: translateY(0);
}

.s_lama_card__name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--lama-charcoal);
    margin-bottom: 3px;
}

.s_lama_card__variant {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--lama-gray);
    margin-bottom: 7px;
    letter-spacing: 0.04em;
}

.s_lama_card__price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--lama-charcoal);
}

.s_lama_card__price-orig {
    text-decoration: line-through;
    color: var(--lama-gray);
    font-weight: 300;
    margin-right: 7px;
}

/* ─── 11. FEATURE SPLIT ──────────────────────────────────────── */
.s_lama_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.s_lama_split__img-side {
    position: relative;
    overflow: hidden;
    background: var(--lama-charcoal-mid);
}
.s_lama_split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.s_lama_split:hover .s_lama_split__img {
    transform: scale(1.03);
}

.s_lama_split__content {
    background: var(--lama-charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 88px;
}
.s_lama_split__content--mid {
    background: var(--lama-charcoal-mid);
}

/* Reversed layout — content left, image right */
.s_lama_split--reversed {
    direction: rtl;
}
.s_lama_split--reversed > * {
    direction: ltr;
}

.s_lama_split__headline {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 22px;
}
.s_lama_split__headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--lama-sand-light);
}

.s_lama_split__body {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.82;
    color: rgba(240, 232, 220, 0.6);
    margin-bottom: 38px;
    max-width: 380px;
}

/* ─── 12. VALUES V2 — cream bg, SVG icons ────────────────────── */
.s_lama_values_v2 {
    background: var(--lama-cream);
    padding: 96px 0;
}

.s_lama_values_v2__header {
    text-align: center;
    margin-bottom: 64px;
}
.s_lama_values_v2__header .lama-overline {
    text-align: center;
}

.s_lama_values_v2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.s_lama_values_v2__icon {
    width: 44px;
    height: 44px;
    color: var(--lama-terra);
    margin-bottom: 22px;
    display: block;
}

.s_lama_values_v2__title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--lama-charcoal);
    margin-bottom: 14px;
}

.s_lama_values_v2__body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(28, 26, 24, 0.6);
}

/* ─── 13. LOOKBOOK GRID — 3-col portrait ─────────────────────── */
.s_lama_lookbook_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.s_lama_lookbook_grid__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: var(--lama-charcoal-mid);
    cursor: pointer;
}

.s_lama_lookbook_grid__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.s_lama_lookbook_grid__item:hover .s_lama_lookbook_grid__img {
    transform: scale(1.05);
}

.s_lama_lookbook_grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 26, 24, 0.65) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.s_lama_lookbook_grid__label {
    position: absolute;
    bottom: 26px;
    left: 26px;
    right: 26px;
    z-index: 2;
}

.s_lama_lookbook_grid__title {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.1;
}

.s_lama_lookbook_grid__price {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

/* ─── 14. NEWSLETTER DARK ────────────────────────────────────── */
.s_lama_newsletter_dark {
    background: var(--lama-charcoal);
    padding: 96px 80px;
    text-align: center;
}

.s_lama_newsletter_dark__inner {
    max-width: 560px;
    margin: 0 auto;
}

.s_lama_newsletter_dark__headline {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 14px;
}

.s_lama_newsletter_dark__sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(240, 232, 220, 0.5);
    margin-bottom: 38px;
    line-height: 1.7;
}

.s_lama_newsletter_dark__form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    border: 1px solid rgba(226, 206, 179, 0.2);
    overflow: hidden;
}

.s_lama_newsletter_dark__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 300;
    color: var(--lama-sand-light);
    letter-spacing: 0.02em;
}
.s_lama_newsletter_dark__input::placeholder {
    color: rgba(240, 232, 220, 0.35);
}

.s_lama_newsletter_dark__btn {
    background: var(--lama-terra);
    color: #fff;
    border: none;
    padding: 15px 28px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.22s ease;
}
.s_lama_newsletter_dark__btn:hover {
    background: var(--lama-terra-dark);
}
.s_lama_newsletter_dark__btn:focus-visible {
    outline: 2px solid var(--lama-terra);
    outline-offset: 2px;
}

/* ─── 15. FOOTER ─────────────────────────────────────────────── */
#footer {
    background-color: var(--lama-charcoal);
    border-top: 1px solid rgba(226, 206, 179, 0.07);
    color: rgba(240, 232, 220, 0.62);
    padding-top: 80px;
    padding-bottom: 48px;
}

#footer a {
    color: rgba(240, 232, 220, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}
#footer a:hover {
    color: var(--lama-sand-light);
}
#footer a:focus-visible {
    outline: 2px solid var(--lama-sand);
    outline-offset: 2px;
}

#footer .footer-heading {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 232, 220, 0.32);
    margin-bottom: 18px;
}

#footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-links li + li { margin-top: 11px; }
#footer .footer-links a {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

#footer .footer-bottom {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(226, 206, 179, 0.07);
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 300;
    color: rgba(240, 232, 220, 0.28);
    letter-spacing: 0.02em;
}

#footer .footer-logo img {
    height: 22px;
    width: auto;
    filter: invert(1) brightness(0.82) sepia(0.12);
    margin-bottom: 18px;
}

/* ─── 16. ECOMMERCE (/shop, product pages) ───────────────────── */
.o_wsale_products_page .o_wsale_product_grid { gap: 20px; }

.o_product_card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
}

.o_product_card .o_wsale_product_information {
    padding: 12px 0;
}

.o_product_card .o_wsale_product_name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--lama-charcoal);
}

.o_product_card .o_wsale_product_price .oe_currency_value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--lama-charcoal);
}

.o_product_card .o_wsale_product_btn .btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 0;
    background: var(--lama-charcoal);
    color: var(--lama-sand-light);
    border: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px;
    transition: background 0.22s ease;
}
.o_product_card .o_wsale_product_btn .btn:hover {
    background: var(--lama-charcoal-lt);
}

/* Product image zoom */
.o_product_card .o_image_float {
    overflow: hidden;
    aspect-ratio: 3/4;
}
.o_product_card .o_image_float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.o_product_card:hover .o_image_float img {
    transform: scale(1.06);
}

/* ─── 17. FORMS ──────────────────────────────────────────────── */
.form-control,
.form-select {
    background-color: var(--lama-white);
    border-color: rgba(28, 26, 24, 0.15);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    padding: 12px 16px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--lama-terra);
    box-shadow: 0 0 0 3px rgba(196, 98, 60, 0.12);
    outline: none;
}
.form-control::placeholder { color: rgba(28, 26, 24, 0.35); }

.form-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lama-charcoal);
    margin-bottom: 6px;
}

/* ─── 18. BREADCRUMBS ────────────────────────────────────────── */
.breadcrumb {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.04em;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--lama-gray);
}
.breadcrumb .breadcrumb-item.active { color: var(--lama-terra); }
.breadcrumb .breadcrumb-item a { color: rgba(28, 26, 24, 0.55); }
.breadcrumb .breadcrumb-item a:hover { color: var(--lama-terra); }

/* ─── 19. ODOO COLOUR SCHEME OVERRIDES ──────────────────────── */
.o_cc1, [data-bs-color-scheme="1"] {
    background-color: var(--lama-terra);
    color: var(--lama-white);
}
.o_cc2, [data-bs-color-scheme="2"] {
    background-color: var(--lama-sand);
    color: var(--lama-charcoal);
}
.o_cc3, [data-bs-color-scheme="3"] {
    background-color: var(--lama-white);
    color: var(--lama-charcoal);
}
.o_cc4, [data-bs-color-scheme="4"] {
    background-color: var(--lama-charcoal);
    color: var(--lama-mist);
}
.o_cc4 h1, .o_cc4 h2, .o_cc4 h3,
.o_cc4 h4, .o_cc4 h5, .o_cc4 h6 {
    color: var(--lama-white);
}
.o_cc5, [data-bs-color-scheme="5"] {
    background-color: var(--lama-mist);
    color: var(--lama-charcoal);
}

/* ─── 20. SCROLL REVEAL ──────────────────────────────────────── */
.lama-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms var(--ease-out),
                transform 400ms var(--ease-out);
}
.lama-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lama-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 400ms var(--ease-out),
                transform 400ms var(--ease-out);
}
.lama-stagger > *:nth-child(2) { transition-delay:  80ms; }
.lama-stagger > *:nth-child(3) { transition-delay: 160ms; }
.lama-stagger > *:nth-child(4) { transition-delay: 240ms; }
.lama-stagger > *.is-visible { opacity: 1; transform: translateY(0); }

/* ─── 21. UTILITY CLASSES ────────────────────────────────────── */
.text-terra    { color: var(--lama-terra)    !important; }
.text-sand     { color: var(--lama-sand)     !important; }
.text-charcoal { color: var(--lama-charcoal) !important; }
.text-teal     { color: var(--lama-teal)     !important; }
.text-cream    { color: var(--lama-cream)    !important; }

.bg-terra      { background-color: var(--lama-terra)    !important; }
.bg-sand       { background-color: var(--lama-sand)     !important; }
.bg-charcoal   { background-color: var(--lama-charcoal) !important; }
.bg-cream      { background-color: var(--lama-cream)    !important; }

.font-display  { font-family: var(--font-display) !important; }
.font-body     { font-family: var(--font-body)    !important; }

/* ─── 22. RESPONSIVE — TABLET (≤ 1024px) ────────────────────── */
@media (max-width: 1024px) {
    .lama-container { padding: 0 40px; }

    .s_lama_hero__content { left: 40px; bottom: 60px; }
    .s_lama_hero__headline { font-size: 64px; }

    .s_lama_collection__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .s_lama_split { grid-template-columns: 1fr 1fr; min-height: 520px; }
    .s_lama_split__content { padding: 56px 48px; }
    .s_lama_split__headline { font-size: 42px; }

    .s_lama_values_v2__grid { gap: 40px; }

    .s_lama_lookbook_grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── 23. RESPONSIVE — MOBILE (≤ 767px) ─────────────────────── */
@media (max-width: 767px) {
    /* Container */
    .lama-container { padding: 0 20px; }

    /* Announcement bar */
    .s_lama_announce {
        font-size: 9.5px;
        padding: 9px 16px;
        background: var(--lama-charcoal-mid) !important;
    }

    /* Nav */
    #wrapwrap > header.lama-header {
        background: var(--lama-charcoal) !important;
    }

    /* Hero */
    .s_lama_hero {
        height: 100svh;
        min-height: 580px;
    }
    .s_lama_hero__bg { opacity: 0.45; }
    .s_lama_hero__content {
        left: 20px;
        right: 20px;
        bottom: 48px;
        max-width: 100%;
    }
    .s_lama_hero__headline {
        font-size: 52px;
        margin-bottom: 16px;
    }
    .s_lama_hero__sub {
        font-size: 13px;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .s_lama_hero__ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .lama-btn-primary,
    .lama-btn-ghost,
    .lama-btn-sand {
        padding: 14px 28px;
        font-size: 10px;
        display: inline-block;
    }

    /* Ticker */
    .s_lama_ticker { height: 36px; }
    .s_lama_ticker__item { font-size: 9px; padding: 0 24px; }

    /* Collection grid — 2 col on mobile */
    .s_lama_collection { padding: 56px 0; }
    .s_lama_collection__header { margin-bottom: 28px; }
    .s_lama_collection__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .lama-section-title { font-size: 34px; }

    /* Feature split — stack vertically */
    .s_lama_split {
        display: flex !important;
        flex-direction: column;
        min-height: unset;
    }
    .s_lama_split--reversed {
        direction: ltr;
        flex-direction: column;
    }
    .s_lama_split__img-side {
        height: 280px;
        width: 100%;
        order: 0;
    }
    .s_lama_split__content {
        padding: 48px 24px;
        order: 1;
    }
    .s_lama_split__headline { font-size: 38px; }

    /* Values — single column */
    .s_lama_values_v2 { padding: 64px 0; }
    .s_lama_values_v2__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .s_lama_values_v2__header { margin-bottom: 40px; }

    /* Lookbook — single column */
    .s_lama_lookbook_grid {
        grid-template-columns: 1fr;
    }
    .s_lama_lookbook_grid__item { height: 380px; }

    /* Newsletter */
    .s_lama_newsletter_dark { padding: 64px 24px; }
    .s_lama_newsletter_dark__headline { font-size: 40px; }
    .s_lama_newsletter_dark__form { flex-direction: column; max-width: 100%; }
    .s_lama_newsletter_dark__input { border-right: 1px solid rgba(226,206,179,0.2); border-bottom: none; border-radius: 0; }
    .s_lama_newsletter_dark__btn { width: 100%; }

    /* Section titles */
    .lama-section-title { font-size: 32px; }
}

/* ─── 25. PRODUCT DETAIL PAGE ────────────────────────────────── */

/* Dark page wrapper */
.s_lama_product_page {
    background: var(--lama-charcoal);
    color: var(--lama-sand-light);
    min-height: 100vh;
}

/* Breadcrumb */
.s_lama_product__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.40);
}
.s_lama_product__breadcrumb a {
    color: rgba(240,232,220,0.40);
    text-decoration: none;
    transition: color 0.2s;
}
.s_lama_product__breadcrumb a:hover { color: var(--lama-sand-light); }

/* 3-col grid: thumbs | image | info */
.s_lama_product__wrap {
    display: grid;
    grid-template-columns: 100px 1fr 480px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Thumbnail strip */
.s_lama_product__thumbs {
    padding: 4px 12px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.s_lama_product__thumb {
    width: 56px;
    height: 70px;
    border: 1px solid rgba(226,206,179,0.10);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
    background: #D5CFC7;
}
.s_lama_product__thumb:hover { border-color: rgba(226,206,179,0.40); }
.s_lama_product__thumb--active { border-color: var(--lama-sand-mid); }
.s_lama_product__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.s_lama_product__thumb:hover img,
.s_lama_product__thumb--active img { opacity: 1; }

/* Sticky gallery */
.s_lama_product__gallery {
    position: sticky;
    top: 60px;
    height: calc(100vh - 120px);
    max-height: 680px;
    overflow: hidden;
    background: #D5CFC7;
    border-radius: 2px;
    cursor: zoom-in;
}
.s_lama_product__gallery > img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}
.s_lama_product__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.s_lama_product__dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(240,232,220,0.30);
    cursor: pointer;
    transition: background 0.2s;
}
.s_lama_product__dot--active { background: var(--lama-sand-light); }

/* Gallery magnifying lens */
.s_lama_product__gallery--zooming { cursor: none; }
.s_lama_product__gallery--zooming .s_lama_product__dots {
    opacity: 0;
    transition: opacity 0.15s;
}
.s_lama_product__lens {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform: scale(0.58);
    transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
    background-repeat: no-repeat;
    background-color: #D5CFC7;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        0 4px 16px rgba(0,0,0,0.2),
        inset 0 0 0 1px rgba(226,206,179,0.18),
        inset 0 0 40px 8px rgba(0,0,0,0.06);
}
.s_lama_product__gallery--zooming .s_lama_product__lens {
    opacity: 1;
    transform: scale(1);
}

/* Product info panel */
.s_lama_product__info {
    padding: 32px 48px 64px 52px;
    border-left: 1px solid rgba(226,206,179,0.10);
    overflow-y: auto;
}
.s_lama_product__collection {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--lama-terra);
    margin-bottom: 14px;
}
.s_lama_product__title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--lama-sand-light);
    margin-bottom: 18px;
}
.s_lama_product__title em { font-style: italic; }
.s_lama_product__price_row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}
.s_lama_product__price {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--lama-sand-light);
}
.s_lama_product__price--orig {
    font-size: 14px;
    font-weight: 300;
    color: rgba(240,232,220,0.40);
    text-decoration: line-through;
}
.s_lama_product__price_awg {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(240,232,220,0.45);
}
.s_lama_product__shipping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(240,232,220,0.65);
    margin-bottom: 28px;
}
.s_lama_product__shipping svg { color: var(--lama-teal); flex-shrink: 0; }
.s_lama_product__divider {
    height: 1px;
    background: rgba(226,206,179,0.10);
    border: none;
    margin: 24px 0;
    opacity: 1;
}
.s_lama_product__opt_label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.45);
    margin-bottom: 10px;
}
.s_lama_product__opt_val {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--lama-sand-light);
    margin-left: 8px;
    text-transform: none;
}

/* Color swatches */
.s_lama_product__swatches { display: flex; gap: 8px; margin-bottom: 24px; }
.s_lama_product__swatch {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.15s;
}
.s_lama_product__swatch:hover { transform: scale(1.1); }
.s_lama_product__swatch--active::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--lama-sand-mid);
}

/* Size selector */
.s_lama_product__size_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.s_lama_product__size_guide {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(240,232,220,0.45);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}
.s_lama_product__size_guide:hover { color: var(--lama-sand-light); }
.s_lama_product__sizes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 24px;
}
.s_lama_product__size {
    height: 44px;
    border: 1px solid rgba(226,206,179,0.10);
    background: transparent;
    color: rgba(240,232,220,0.65);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.s_lama_product__size:hover {
    border-color: rgba(226,206,179,0.40);
    color: var(--lama-sand-light);
}
.s_lama_product__size--active {
    border-color: var(--lama-sand-mid);
    color: var(--lama-sand-light);
    background: rgba(226,206,179,0.06);
}
.s_lama_product__size--soldout {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
}
.s_lama_product__size--soldout::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        transparent calc(50% - 0.5px),
        rgba(156,148,138,0.4) calc(50% - 0.5px),
        rgba(156,148,138,0.4) calc(50% + 0.5px),
        transparent calc(50% + 0.5px));
}

/* Quantity control */
.s_lama_product__qty_row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.s_lama_product__qty { display: flex; align-items: center; border: 1px solid rgba(226,206,179,0.10); height: 44px; }
.s_lama_product__qty_btn {
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    color: rgba(240,232,220,0.65);
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}
.s_lama_product__qty_btn:hover { color: var(--lama-sand-light); background: rgba(226,206,179,0.05); }
.s_lama_product__qty_val {
    width: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--lama-sand-light);
    border-left: 1px solid rgba(226,206,179,0.10);
    border-right: 1px solid rgba(226,206,179,0.10);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA buttons */
.s_lama_product__btn_atc {
    width: 100%; height: 52px;
    background: var(--lama-sand-light);
    color: var(--lama-charcoal);
    border: none;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s, color 0.2s;
}
.s_lama_product__btn_atc:hover { background: var(--lama-sand-mid); }
.s_lama_product__btn_atc:active { transform: scale(0.995); }
.s_lama_product__btn_bin {
    width: 100%; height: 52px;
    background: transparent;
    color: var(--lama-sand-light);
    border: 1px solid rgba(226,206,179,0.40);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.s_lama_product__btn_bin:hover { background: rgba(226,206,179,0.06); border-color: var(--lama-sand-mid); }

/* Trust row */
.s_lama_product__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(226,206,179,0.10);
    flex-wrap: wrap;
}
.s_lama_product__trust_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.45);
}

/* Accordions */
.s_lama_product__accordion { border-top: 1px solid rgba(226,206,179,0.10); }
.s_lama_product__accordion:last-of-type { border-bottom: 1px solid rgba(226,206,179,0.10); }
.s_lama_product__acc_trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.65);
    transition: color 0.2s;
}
.s_lama_product__acc_trigger:hover { color: var(--lama-sand-light); }
.s_lama_product__acc_icon {
    width: 14px; height: 14px;
    position: relative;
    flex-shrink: 0;
}
.s_lama_product__acc_icon::before,
.s_lama_product__acc_icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
    transition: opacity 0.3s, transform 0.3s;
}
.s_lama_product__acc_icon::before { width: 14px; height: 1px; top: 6.5px; left: 0; }
.s_lama_product__acc_icon::after  { width: 1px; height: 14px; top: 0; left: 6.5px; }
.s_lama_product__accordion--open .s_lama_product__acc_icon::after { opacity: 0; transform: rotate(90deg); }
.s_lama_product__acc_body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.s_lama_product__accordion--open .s_lama_product__acc_body { max-height: 400px; }
.s_lama_product__acc_content {
    padding-bottom: 20px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.04em;
    color: rgba(240,232,220,0.65);
}
.s_lama_product__acc_content ul { list-style: none; padding: 0; }
.s_lama_product__acc_content ul li { padding: 3px 0 3px 14px; position: relative; }
.s_lama_product__acc_content ul li::before { content: '—'; position: absolute; left: 0; color: var(--lama-terra); font-size: 10px; }

/* Related products */
.s_lama_product__related {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    border-top: 1px solid rgba(226,206,179,0.10);
}
.s_lama_product__related_heading {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(240,232,220,0.45);
    margin-bottom: 32px;
    font-family: var(--font-body);
}
.s_lama_product__related_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.s_lama_product__card { position: relative; overflow: hidden; background: var(--lama-charcoal-mid); cursor: pointer; }
.s_lama_product__card_img { aspect-ratio: 3/4; overflow: hidden; }
.s_lama_product__card_img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    opacity: 0.85;
}
.s_lama_product__card:hover .s_lama_product__card_img img { transform: scale(1.04); opacity: 1; }
.s_lama_product__card_overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(24,22,20,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.s_lama_product__card:hover .s_lama_product__card_overlay { opacity: 1; }
.s_lama_product__card_quick {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    height: 40px;
    background: var(--lama-sand-light);
    color: var(--lama-charcoal);
    border: none;
    font-family: var(--font-body);
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
.s_lama_product__card:hover .s_lama_product__card_quick { transform: translateY(0); opacity: 1; }
.s_lama_product__card_info { padding: 14px 16px 18px; }
.s_lama_product__card_tag { font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lama-terra); margin-bottom: 4px; }
.s_lama_product__card_name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--lama-sand-light); letter-spacing: 0.01em; margin-bottom: 6px; }
.s_lama_product__card_price { font-size: 12px; font-weight: 400; letter-spacing: 0.05em; color: rgba(240,232,220,0.65); }
.s_lama_product__card_price_awg { font-size: 10px; font-weight: 300; color: rgba(240,232,220,0.40); margin-left: 6px; }

/* Product page footer */
.s_lama_product__footer { background: var(--lama-charcoal-mid); border-top: 1px solid rgba(226,206,179,0.10); }
.s_lama_product__footer_top {
    max-width: 1440px; margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}
.s_lama_product__footer_logo { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--lama-sand-light); margin-bottom: 16px; }
.s_lama_product__footer_tagline { font-size: 11px; font-weight: 300; line-height: 1.7; color: rgba(240,232,220,0.45); max-width: 240px; margin-bottom: 28px; }
.s_lama_product__footer_social { display: flex; gap: 16px; }
.s_lama_product__footer_social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(226,206,179,0.10);
    display: flex; align-items: center; justify-content: center;
    color: rgba(240,232,220,0.45);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.s_lama_product__footer_social a:hover { border-color: rgba(226,206,179,0.40); color: var(--lama-sand-light); }
.s_lama_product__footer_col_title { font-size: 9px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--lama-sand-mid); margin-bottom: 20px; }
.s_lama_product__footer_links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.s_lama_product__footer_links a { font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: rgba(240,232,220,0.45); text-decoration: none; transition: color 0.2s; }
.s_lama_product__footer_links a:hover { color: var(--lama-sand-light); }
.s_lama_product__footer_nl_input {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(226,206,179,0.10);
    padding: 10px 0;
    font-family: var(--font-body); font-size: 12px; font-weight: 300;
    color: var(--lama-sand-light);
    outline: none;
    transition: border-color 0.2s;
}
.s_lama_product__footer_nl_input::placeholder { color: rgba(240,232,220,0.45); }
.s_lama_product__footer_nl_input:focus { border-color: rgba(226,206,179,0.40); }
.s_lama_product__footer_nl_btn {
    margin-top: 12px; width: 100%; height: 44px;
    background: transparent;
    border: 1px solid rgba(226,206,179,0.40);
    color: var(--lama-sand-light);
    font-family: var(--font-body); font-size: 9px; font-weight: 600;
    letter-spacing: 0.20em; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.s_lama_product__footer_nl_btn:hover { background: rgba(226,206,179,0.06); border-color: var(--lama-sand-mid); }
.s_lama_product__footer_bottom {
    border-top: 1px solid rgba(226,206,179,0.10);
    padding: 20px 40px;
    max-width: 1440px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.s_lama_product__footer_copy { font-size: 10px; font-weight: 300; letter-spacing: 0.08em; color: rgba(240,232,220,0.45); }
.s_lama_product__footer_bottom_links { display: flex; gap: 24px; list-style: none; padding: 0; }
.s_lama_product__footer_bottom_links a { font-size: 10px; font-weight: 300; letter-spacing: 0.08em; color: rgba(240,232,220,0.45); text-decoration: none; transition: color 0.2s; }
.s_lama_product__footer_bottom_links a:hover { color: var(--lama-sand-light); }

/* Product page responsive */
@media (max-width: 1100px) {
    .s_lama_product__wrap { grid-template-columns: 72px 1fr 420px; }
}
@media (max-width: 900px) {
    .s_lama_product__wrap { grid-template-columns: 1fr; }
    .s_lama_product__thumbs { flex-direction: row; padding: 12px 20px; order: 2; overflow-x: auto; }
    .s_lama_product__gallery { position: relative; height: auto; max-height: none; top: 0; order: 1; aspect-ratio: 3/4; }
    .s_lama_product__gallery > img { object-fit: contain; }
    .s_lama_product__info { order: 3; border-left: none; border-top: 1px solid rgba(226,206,179,0.10); padding: 32px 20px 80px; }
    .s_lama_product__related_grid { grid-template-columns: repeat(2, 1fr); }
    .s_lama_product__footer_top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .s_lama_product__related_grid { grid-template-columns: 1fr; }
    .s_lama_product__footer_top { grid-template-columns: 1fr; }
    .s_lama_product__sizes { grid-template-columns: repeat(3, 1fr); }
    .s_lama_product__title { font-size: 36px; }
    .s_lama_product__related { padding: 48px 20px; }
    .s_lama_product__breadcrumb { padding: 12px 20px; }
}

/* ─── 24. CART DRAWER ────────────────────────────────────────── */
.lama-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0.35s;
}
.lama-cart-overlay--open {
    opacity: 1;
    visibility: visible;
}
.lama-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 460px;
    max-width: 100vw;
    background: #fff;
    color: #1C1A18;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    font-family: var(--font-body);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.lama-cart-drawer--open {
    transform: translateX(0);
}

/* Header */
.lama-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #eee;
}
.lama-cart-drawer__title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1C1A18;
    margin: 0;
}
.lama-cart-drawer__close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C1A18;
    padding: 0;
    transition: opacity 0.2s;
}
.lama-cart-drawer__close:hover { opacity: 0.6; }
.lama-cart-drawer__close:focus-visible { outline: 2px solid #1C1A18; outline-offset: 2px; }

/* Free shipping bar */
.lama-cart-drawer__shipping {
    padding: 16px 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #555;
    border-bottom: 1px solid #eee;
}
.lama-cart-drawer__ship_bar {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}
.lama-cart-drawer__ship_fill {
    height: 100%;
    background: #1C1A18;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Items area */
.lama-cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}
.lama-cart-drawer__empty {
    text-align: center;
    padding: 60px 28px;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.02em;
}

/* Single cart item */
.lama-cart-drawer__item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
    align-items: start;
}
.lama-cart-drawer__item_img {
    width: 90px;
    height: 110px;
    background: #f5f5f0;
    overflow: hidden;
}
.lama-cart-drawer__item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lama-cart-drawer__item_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lama-cart-drawer__item_brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}
.lama-cart-drawer__item_name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1C1A18;
    line-height: 1.3;
}
.lama-cart-drawer__item_variant {
    font-size: 12px;
    font-weight: 400;
    color: #777;
}
.lama-cart-drawer__item_qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    height: 34px;
    margin-top: 8px;
    width: fit-content;
}
.lama-cart-drawer__item_qty button {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.lama-cart-drawer__item_qty button:hover { background: #f5f5f0; }
.lama-cart-drawer__item_qty button:active { background: #eee; }
.lama-cart-drawer__item_qty span {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #1C1A18;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right col: price + delete */
.lama-cart-drawer__item_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.lama-cart-drawer__item_prices {
    text-align: right;
}
.lama-cart-drawer__item_compare {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    margin-right: 6px;
}
.lama-cart-drawer__item_price {
    font-size: 13px;
    font-weight: 600;
    color: #1C1A18;
}
.lama-cart-drawer__item_del {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: border-color 0.15s, color 0.15s;
    margin-top: auto;
}
.lama-cart-drawer__item_del:hover { border-color: #999; color: #555; }
.lama-cart-drawer__item_del:active { background: #f5f5f0; }

/* Footer */
.lama-cart-drawer__footer {
    border-top: 1px solid #eee;
    padding: 20px 28px 28px;
    background: #fff;
}
.lama-cart-drawer__subtotal {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 6px;
}
.lama-cart-drawer__subtotal_label {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A18;
}
.lama-cart-drawer__subtotal_val {
    font-size: 14px;
    font-weight: 700;
    color: #1C1A18;
}
.lama-cart-drawer__tax_note {
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-bottom: 20px;
}
.lama-cart-drawer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lama-cart-drawer__btn_view {
    height: 48px;
    border: 1px solid #1C1A18;
    background: #fff;
    color: #1C1A18;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lama-cart-drawer__btn_view:hover { background: #f5f5f0; }
.lama-cart-drawer__btn_view:active { background: #eee; }
.lama-cart-drawer__btn_checkout {
    height: 48px;
    border: none;
    background: #1C1A18;
    color: #fff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.lama-cart-drawer__btn_checkout:hover { opacity: 0.85; }
.lama-cart-drawer__btn_checkout:active { opacity: 0.7; }

@media (max-width: 500px) {
    .lama-cart-drawer { width: 100vw; }
}

/* ─── 25. PRINT ──────────────────────────────────────────────── */
@media print {
    .s_lama_announce,
    #wrapwrap > header,
    #footer,
    .lama-btn-primary,
    .lama-btn-ghost,
    .lama-btn-sand { display: none !important; }
    body { background: white; color: black; }
}
