:root {
    --pink: #cf3f74;
    --pink-light: #e78fb0;
    --sage: #93ab86;
    --sage-light: #c3d6ba;
    --dark: #171412;
    --dark-soft: #2a2422;
    --cream: #faf8f6;
    --cream-dark: #f1ece7;
    --text-muted: #6f6459;
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

picture { display: contents; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 500;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 2px 16px rgba(23,20,18,0.05);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(23,20,18,0.08);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.footer-brand .logo-img { height: 44px; }
nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}
nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark);
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink);
    transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }
.nav-dropdown-item { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -6px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(23,20,18,0.14);
    padding: 10px;
    min-width: 190px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 120;
}
.nav-dropdown-item:hover .nav-dropdown-panel,
.nav-dropdown-item:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav-dropdown-panel a {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    white-space: nowrap;
}
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover { background: var(--cream-dark); color: var(--pink); }
.nav-cta {
    border: 1px solid var(--dark);
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 201;
    position: relative;
    padding: 11px;
    margin: -11px;
}

/* Mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23,20,18,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 90px 32px 40px;
    z-index: 200;
    transition: right 0.4s var(--ease-smooth);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 12px;
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.mobile-nav ul a { font-size: 1.1rem; color: #fff; }
.mobile-nav ul a:hover { color: var(--pink-light); }
.mobile-nav-dropdown-row { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.mobile-nav-dropdown-toggle.open { transform: rotate(180deg); }
.mobile-nav-dropdown-panel {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
}
.mobile-nav-dropdown-panel > * { min-height: 0; }
.mobile-nav-dropdown-panel.open { grid-template-rows: 1fr; }
.mobile-nav-dropdown-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    padding-left: 14px;
}
.mobile-nav-dropdown-panel a { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.mobile-nav-dropdown-panel a:hover { color: var(--pink-light); }
.mobile-nav-cta { text-align: center; }

/* Cart */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    padding: 11px;
    margin: -11px;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--pink);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.cart-count.visible { display: flex; }
.cart-count.bump { animation: cartBump 0.4s var(--ease-smooth); }
@keyframes cartBump {
    0% { transform: scale(1); }
    35% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23,20,18,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
}
.cart-overlay.visible { opacity: 1; pointer-events: auto; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 88vw);
    height: 100vh;
    background: #fff;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    z-index: 200;
    transition: right 0.4s var(--ease-smooth);
}
.cart-drawer.open { right: 0; }
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--cream-dark);
}
.cart-header h3 { font-size: 1.3rem; font-weight: 600; }
.cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--dark); padding: 12px; margin: -12px; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { color: var(--text-muted); font-size: 0.9rem; }
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}
.cart-item-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-info span { font-size: 0.82rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--cream-dark);
    background: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    transition: border-color 0.2s ease;
}
.qty-btn:hover { border-color: var(--pink); }
.qty-value { font-size: 0.88rem; min-width: 16px; text-align: center; }
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    margin-left: 6px;
}
.cart-item-remove:hover { color: var(--pink); }
.cart-footer { padding: 20px 28px 28px; border-top: 1px solid var(--cream-dark); }
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.cart-checkout { display: block; width: 100%; text-align: center; border: none; }
.cart-checkout:disabled { pointer-events: none; opacity: 0.5; }

/* Order modal */
.order-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23,20,18,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 260;
}
.order-overlay.visible { opacity: 1; pointer-events: auto; }
.order-modal {
    position: fixed;
    inset: 0;
    z-index: 270;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-soft);
}
.order-modal.open { opacity: 1; pointer-events: auto; }
.order-modal.open .order-modal-inner { transform: scale(1); }
.order-modal-inner {
    background: #fff;
    width: min(480px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    transform: scale(0.94);
    transition: transform 0.35s var(--ease-smooth);
    border-radius: 10px;
}
.order-modal-header {
    position: relative;
    padding: 26px 28px 18px;
    border-bottom: 1px solid var(--cream-dark);
    position: sticky;
    top: 0;
    background: #fff;
}
.order-modal-title { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.order-modal-header h3 { font-size: 1.25rem; font-weight: 600; }
.order-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--dark);
    padding: 12px;
}
.order-modal-body { padding: 20px 28px 28px; }
.leaf-icon { width: 26px; height: 26px; flex-shrink: 0; }
.order-summary {
    background: var(--cream-dark);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.order-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
}
.order-summary-total {
    border-top: 1px solid rgba(23,20,18,0.12);
    margin-top: 6px;
    padding-top: 8px;
    font-weight: 600;
}
.shipping-option {
    background: var(--cream-dark);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.shipping-option h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.shipping-option-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(23,20,18,0.08);
    font-size: 0.9rem;
    cursor: pointer;
}
.shipping-option-row:last-of-type { border-bottom: none; }
.shipping-option-row input { accent-color: var(--pink); width: 16px; height: 16px; flex-shrink: 0; }
.shipping-option-row em { color: var(--text-muted); font-style: normal; }
.payment-info {
    background: var(--cream-dark);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.payment-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.payment-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(23,20,18,0.08);
}
.payment-info-row:last-of-type { border-bottom: none; }
.payment-info-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.payment-info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.payment-info-value { font-size: 0.9rem; font-weight: 600; word-break: break-word; }
.copy-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(23,20,18,0.15);
    border-radius: 6px;
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.copy-btn:hover { border-color: var(--pink); color: var(--pink); }
.copy-btn.copied { border-color: var(--sage); color: var(--sage); }
.payment-info-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.payment-info-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pink);
    cursor: pointer;
    padding: 10px 0 2px;
}
.payment-info-toggle-icon { flex-shrink: 0; transition: transform 0.25s ease; }
.payment-info-toggle[aria-expanded="true"] .payment-info-toggle-icon { transform: rotate(180deg); }
.payment-info-banks {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.payment-info-banks-inner { overflow: hidden; }
.payment-info-banks.open { grid-template-rows: 1fr; }
.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 500; }
.order-field input {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 11px 14px;
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    background: var(--cream);
}
.order-field input:focus { outline: none; border-color: var(--pink); }
.order-field-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    left: -9999px;
}
.order-submit { border: none; margin-top: 4px; }
.order-submit:disabled { opacity: 0.6; cursor: default; }
.order-status { font-size: 0.85rem; text-align: center; min-height: 1.2em; }
.order-status.success { color: var(--sage); }
.order-status.error { color: var(--pink); }

/* Hero */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}
.hero > .container { width: 100%; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slider picture { display: block; width: 100%; height: 100%; }
.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, rgba(23,20,18,0.8) 0%, rgba(23,20,18,0.55) 40%, rgba(23,20,18,0.25) 75%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 460px;
}
.hero .hero-content { padding: 140px 0 100px; }
.hero .eyebrow { color: var(--pink-light); margin-bottom: 18px; display: inline-block; }
.hero h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
}
.hero h1 em { color: var(--pink-light); font-style: normal; }
.btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    padding: 15px 36px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    border: 1px solid var(--pink);
    cursor: pointer;
    transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.btn:hover { background: transparent; color: var(--pink); }
.btn:active { transform: scale(0.96); }
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    margin-left: 14px;
}
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0; }

.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.scroll-cue::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

/* Section generic */
section { padding: 110px 0; }
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin: 14px 0 16px;
}
.section-head p { color: var(--text-muted); font-size: 1rem; }

/* Intro / stats */
.intro { background: var(--cream); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-image {
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(23,20,18,0.12);
    background: var(--cream-dark);
}
.about-image img { width: 100%; height: 100%; object-fit: contain; }

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.about-slides {
    display: flex;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    transition: transform 0.5s ease;
}
.about-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}
.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    color: var(--dark);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: background 0.25s ease, opacity 0.25s ease;
}
.about-slider:hover .about-slider-arrow,
.about-slider-arrow:focus-visible {
    opacity: 0.55;
}
.about-slider-arrow:hover { background: rgba(255,255,255,0.75); opacity: 1; }
.about-slider-arrow.prev { left: 10px; }
.about-slider-arrow.next { right: 10px; }
.about-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}
.about-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(23,20,18,0.25);
    background-clip: content-box;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
    opacity: 0.6;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.about-dot.active {
    background: var(--pink);
    opacity: 1;
    transform: scale(1.2);
}
.about-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin: 14px 0 4px;
}
.about-text p { color: var(--text-muted); margin-bottom: 28px; }
.about-text p.about-role {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 18px;
}
.about-bio-toggle { display: none; }
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.badges-full {
    grid-column: 1 / -1;
    margin-top: 36px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--cream-dark);
    border-radius: 999px;
    background: var(--cream-dark);
}
.badge svg {
    width: 15px;
    height: 15px;
    fill: var(--pink);
    flex-shrink: 0;
}
.badge:nth-child(2) svg { fill: var(--sage); }
.badge:nth-child(3) svg { fill: var(--pink); }
.badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}

/* Products */
.products { background: var(--cream-dark); padding: 64px 0; }
.products .section-head { margin-bottom: 32px; }
.product-search {
    position: relative;
    max-width: 360px;
    margin: 0 auto 36px;
}
.product-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.product-search-input {
    width: 100%;
    font-family: inherit;
    font-size: 0.88rem;
    padding: 12px 16px 12px 44px;
    border: 1px solid rgba(23,20,18,0.12);
    border-radius: 24px;
    background: #fff;
    box-sizing: border-box;
}
.product-search-input:focus { outline: none; border-color: var(--pink); }
.product-search-input::-webkit-search-cancel-button { cursor: pointer; }
.product-search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 5;
    background: #fff;
    border: 1px solid rgba(23,20,18,0.1);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(23,20,18,0.14);
    max-height: 260px;
    overflow-y: auto;
    padding: 6px;
    list-style: none;
    margin: 0;
}
.product-search-suggestions li { margin: 0; }
.product-search-suggestion {
    display: block;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 0.82rem;
    color: var(--dark);
    background: none;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    cursor: pointer;
}
.product-search-suggestion:hover,
.product-search-suggestion.active { background: var(--cream-dark); color: var(--pink); }
.product-search-suggestions-label {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 8px 12px 4px;
}
.product-empty { text-align: center; color: var(--text-muted); padding: 24px 0 0; }
.product-slider-wrap {
    position: relative;
    padding: 0 40px;
}
.product-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.product-slider.no-snap { scroll-snap-type: none; }
.product-slider.dragging { cursor: grabbing; user-select: none; }
.product-slider::-webkit-scrollbar { display: none; }
.product-track {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.product-track .product-card {
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 36px) / 3.15);
    min-width: 0;
    transform: scale(var(--card-scale, 1));
    opacity: var(--card-opacity, 1);
    transition: transform 0.2s ease, opacity 0.2s ease;
    will-change: transform;
}
.product-track .product-card.hidden { display: none; }
.product-slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(23,20,18,0.12);
    z-index: 2;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.product-slider-arrow:hover { background: var(--pink); color: #fff; }
.product-slider-arrow:active { transform: translateY(-50%) scale(0.9); }
.product-slider-arrow.prev { left: 0; }
.product-slider-arrow.next { right: 0; }
.product-slider-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.product-card {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 22px 40px rgba(23,20,18,0.1);
}
.product-image {
    aspect-ratio: 4 / 3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; display: block; -webkit-user-drag: none; user-select: none; transition: transform 0.5s var(--ease-smooth); }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-image-placeholder { font-size: 1.6rem; opacity: 0.4; }
.product-tag {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.product-tag.tag-sage { background: var(--sage); }
.product-body { padding: 32px 28px 26px; }
.product-body .eyebrow { font-size: 0.68rem; }
.product-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 8px 0 8px;
}
.product-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    min-height: 62px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price { font-weight: 600; font-size: 1.05rem; }
.price small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.7rem; }
.add-btn {
    display: inline-block;
    border: 1px solid var(--dark);
    background: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.25s var(--ease-soft), color 0.25s var(--ease-soft), transform 0.2s var(--ease-soft);
}
.add-btn:hover { background: var(--dark); color: #fff; }
.add-btn:active { transform: scale(0.94); }
.add-btn.added { background: var(--sage); border-color: var(--sage); color: #fff; }

/* Compact slider cards (Productos) */
.product-track .product-card:hover {
    transform: translateY(-6px) scale(var(--card-scale, 1));
    box-shadow: 0 16px 30px rgba(23,20,18,0.1);
}
.product-track .product-tag { align-self: flex-start; font-size: 0.6rem; padding: 4px 10px; margin-bottom: 10px; }
.product-track .product-tag.invisible { visibility: hidden; }
.product-track .product-image { flex-shrink: 0; }
.product-track .product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 16px 16px;
}
.product-track .product-body h3 {
    font-size: 0.96rem;
    color: var(--pink);
    margin: 0 0 6px;
    line-height: 1.25;
    min-height: 2.5em;
}
.product-track .product-body p {
    font-size: 0.76rem;
    line-height: 1.6;
    margin-bottom: 4px;
    min-height: 3.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-track .product-body p.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.product-more-btn {
    display: inline-block;
    align-self: flex-start;
    visibility: hidden;
    background: none;
    border: none;
    padding: 8px 0;
    margin: -8px 0 2px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--pink);
    text-decoration: underline;
    cursor: pointer;
}
.product-more-btn.visible { visibility: visible; }
.product-track .product-footer { margin-top: auto; }
.product-track .price { font-size: 0.9rem; }
.product-track .add-btn { padding: 10px 16px; font-size: 0.7rem; }

/* Testimonials */
.testimonials { background: var(--cream); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    padding: 34px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(23,20,18,0.05);
}
.stars { color: var(--pink); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.95rem; }
.testimonial-card p.quote {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}
.testimonial-author h4 { font-size: 0.92rem; font-weight: 600; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* Contact */
.contact { background: var(--cream-dark); padding: 56px 0; }
.contact .section-head { margin-bottom: 32px; }
.visit-block { margin-bottom: 56px; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.visit-photo, .visit-map {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(23,20,18,0.1);
    position: relative;
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-map iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.visit-map-link {
    position: absolute;
    inset: 0;
    transition: background 0.25s ease;
}
.visit-map-link:hover { background: rgba(23,20,18,0.06); }
.salon-cta-wrap { margin-top: 22px; text-align: center; }
.contact-icons { display: flex; justify-content: center; gap: 32px; }
.contact-icon-item { position: relative; display: flex; }
.contact-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(23,20,18,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-icon-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(23,20,18,0.16); }
.contact-icon-btn svg { width: 26px; height: 26px; }
.contact-icon-item:nth-child(1) .contact-icon-btn svg { fill: #25D366; }
.contact-icon-item:nth-child(2) .contact-icon-btn svg { fill: var(--pink); }
.contact-icon-drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -6px);
    margin-top: 10px;
    background: var(--dark);
    color: #fff;
    font-size: 0.78rem;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-icon-item:hover .contact-icon-drop,
.contact-icon-item:focus-within .contact-icon-drop {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}
.socials { display: flex; gap: 16px; }
.socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}
.socials a:hover { background: var(--pink); border-color: var(--pink); }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(23,20,18,0.25);
    z-index: 250;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(23,20,18,0.32);
}
.whatsapp-float:active { transform: scale(0.96); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 560px) {
    .whatsapp-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Promo popup */
.promo-popup {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 240;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(23,20,18,0.2);
    padding: 16px 40px 16px 16px;
    max-width: 320px;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}
.promo-popup.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cart-drawer.open ~ .promo-popup,
.order-modal.open ~ .promo-popup {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}
.promo-popup-close {
    position: absolute;
    top: 3px;
    right: 4px;
    background: none;
    border: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 9px;
}
.promo-popup-img { width: 62px; height: 62px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.promo-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-popup-body p { font-size: 0.85rem; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.promo-popup-btn { padding: 8px 16px; font-size: 0.7rem; }
@media (max-width: 560px) {
    .promo-popup { left: 14px; right: 14px; bottom: 84px; max-width: none; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1080px) {
    nav ul { gap: 22px; }
}
@media (max-width: 980px) {
    section { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
    .about-image { aspect-ratio: unset; height: 100%; }
    .about-image img { object-fit: cover; }
    .about-bio {
        max-height: 110px;
        overflow: hidden;
        position: relative;
    }
    .about-bio::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 36px;
        background: linear-gradient(rgba(250,248,246,0), var(--cream));
    }
    .about-bio.expanded {
        max-height: none;
    }
    .about-bio.expanded::after { display: none; }
    .about-bio-toggle {
        display: inline-block;
        margin: 0;
        padding: 8px 0;
        border: none;
        background: none;
        color: var(--pink);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
    }
    .about-text h2 { font-size: 1.5rem; }
    .product-track .product-card { flex: 0 0 calc((100% - 18px) / 2.2); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    nav ul, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .hero { min-height: 540px; }
    .hero-slider img { object-position: center top; }
    .hero .hero-content { padding: 90px 0 40px; }
    .hero .eyebrow { font-size: 0.6rem; letter-spacing: 0.5px; margin-bottom: 10px; }
    .hero h1 { font-size: 1.9rem; line-height: 1.15; margin-bottom: 18px; }
    .hero-buttons { flex-direction: column; gap: 10px; align-items: flex-start; }
    .hero .btn { padding: 11px 28px; font-size: 0.82rem; }
    .btn-outline { margin-left: 0; }
    .scroll-cue { display: none; }
    .section-head { margin-bottom: 44px; }
    .about-text p { margin-bottom: 16px; font-size: 0.88rem; }
    .badges { gap: 10px; }
    .product-slider-wrap { padding: 0 34px; }
    .product-slider-arrow { width: 36px; height: 36px; }
    .visit-grid { gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 560px) {
    section { padding: 48px 0; }
    .visit-block { margin-bottom: 36px; }
    .container { padding: 0 18px; }
    .logo { font-size: 1.3rem; gap: 7px; }
    .logo-img { height: 34px; }
    .nav-actions { gap: 14px; }
    .product-track .product-card { flex: 0 0 88%; }
    .product-slider-wrap { padding: 0 34px; }
    .testimonial-card { padding: 28px 22px; }
    .cart-header, .cart-items, .cart-footer { padding-left: 20px; padding-right: 20px; }
}

/* Simple policy pages (Envíos, Devoluciones, FAQ, Privacidad) */
.policy-main { padding: 150px 0 90px; }
.policy-page { max-width: 720px; margin: 0 auto; }
.policy-page .eyebrow { display: block; margin-bottom: 10px; }
.policy-page h1 { font-size: 2.2rem; margin-bottom: 28px; }
.policy-page h2 { font-size: 1.2rem; margin: 30px 0 10px; }
.policy-page p, .policy-page li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.policy-page ul { padding-left: 20px; }
.policy-page strong { color: var(--dark); }
.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 24px;
}
.policy-updated { font-size: 0.78rem; color: var(--text-muted); margin-top: 36px; }
.faq-item { margin-bottom: 20px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.faq-item h2 { margin-top: 0; }
