/* =========================================
   MAISON AROMA STATIC V2 THEME
   Based on the supplied obsidian/champagne UI direction.
   ========================================= */

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #121214;
    --bg-tertiary: #000000;
    --text-main: #f1f5f9;
    --text-muted: #9ca3af;
    --accent-gold: #c5a46e;
    --accent-gold-hover: #e7d5ac;
    --border-color: rgba(197, 164, 110, 0.12);
    --border-strong: rgba(197, 164, 110, 0.34);
    --danger: #ef4444;
    --success: #10b981;
    --whatsapp: #25d366;
    --transition-fast: 0.15s ease-out;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.85);
    --radius: 8px;
    --radius-lg: 16px;
    --max: 1180px;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg-primary);
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(197, 164, 110, 0.05), transparent 34rem),
        var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
}

::selection {
    background: rgba(197, 164, 110, 0.22);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #262626;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.1;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 99999;
    transform: translateY(-160%);
    border-radius: 999px;
    background: var(--accent-gold);
    color: #000000;
    padding: 0.7rem 1rem;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

/* =========================================
   HEADER
   ========================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 73px;
    display: flex;
    align-items: center;
    padding: calc(1rem + env(safe-area-inset-top)) 5% 1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo span {
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background: var(--text-main);
    transition: var(--transition-spring);
}

.cart-link {
    order: 3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #000000;
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.cart-link:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 164, 110, 0.05);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

nav#nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

nav#nav-links a {
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
    padding: 8px 0;
}

nav#nav-links a:hover {
    color: var(--text-main);
    border-color: var(--accent-gold);
}

/* =========================================
   GLOBAL LAYOUT
   ========================================= */

main {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.container,
.section {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--accent-gold);
    color: #000000 !important;
    padding: 1rem 2rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    transition: all var(--transition-spring);
}

.btn::after,
.shop-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
}

.btn:hover::after,
.shop-card:hover::after {
    animation: glass-sweep 0.7s ease-out forwards;
}

@keyframes glass-sweep {
    100% { left: 200%; }
}

.btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--accent-gold);
}

.hero-btn-secondary:hover,
.shop-card-btn-alt:hover {
    color: #000000 !important;
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================
   HERO + TRUST
   ========================================= */

.ticker-ribbon {
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    padding: 1rem 5%;
    text-align: center;
    font-size: 0.85rem;
}

.ticker-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ticker-check {
    color: var(--accent-gold);
}

.hero-section {
    text-align: center;
    padding: 7rem 5% 6rem;
    background: radial-gradient(circle at center, rgba(197, 164, 110, 0.045), transparent 70%);
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: rgba(197, 164, 110, 0.05);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
}

.hero-section h1 span {
    color: var(--accent-gold);
}

.hero-copy {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-btn-primary {
    font-size: 1.05rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(197, 164, 110, 0.2);
}

.hero-btn-secondary {
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-main) !important;
    font-size: 1.05rem;
    padding: 1.1rem 2.5rem;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.trust-bar span {
    min-height: 72px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.trust-bar span:last-child {
    border-right: 0;
}

/* =========================================
   COLLECTIONS + PRODUCTS
   ========================================= */

.collection-band,
.section {
    padding: 5rem 0;
}

.section__heading {
    max-width: 820px;
    margin-bottom: 2.5rem;
}

.section__heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.section__heading h2,
.section-title {
    color: #ffffff;
    font-family: var(--font-sans);
    font-weight: 900;
}

.section-title {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2.4rem;
}

.section-subtitle {
    margin-bottom: 3.5rem;
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.collection-tile {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #000000;
}

.collection-tile img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform var(--transition-spring);
}

.collection-tile:hover img {
    transform: scale(1.04);
}

.collection-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.78));
}

.collection-tile span {
    position: absolute;
    left: 1.4rem;
    bottom: 1.2rem;
    z-index: 2;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.shop-card,
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
    transition: all var(--transition-spring);
    will-change: transform, box-shadow;
}

.shop-card:hover,
.card:hover {
    border-color: rgba(197, 164, 110, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-bottom: 1px solid var(--border-color);
    background: #000000;
}

.shop-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--bg-primary);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--accent-gold);
    padding: 0.45rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.availability-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    max-width: calc(100% - 2rem);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.76);
    color: #ffffff;
    padding: 0.45rem 0.8rem;
    text-align: right;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
}

.availability-badge.in-stock {
    border: 1px solid rgba(16, 185, 129, 0.42);
}

.availability-badge.sourced {
    border: 1px solid rgba(197, 164, 110, 0.42);
}

.shop-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.shop-card-title {
    margin-bottom: 0.4rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 800;
    transition: color var(--transition-fast);
}

.shop-card-title:hover {
    color: var(--accent-gold);
}

.shop-card-desc {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price-compare-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: auto;
    margin-bottom: 1.2rem;
}

.price-compare-retail {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: line-through;
}

.price-compare-maison {
    color: var(--accent-gold);
    font-size: 1.35rem;
    font-weight: 900;
}

.price-compare-saving {
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 800;
}

.shop-card .btn {
    width: 100%;
    border-radius: 6px;
}

.shop-card-btn-alt {
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-main) !important;
}

.text-link {
    color: var(--accent-gold);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

/* =========================================
   STORY / PARTNERS / SALON
   ========================================= */

.sourcing-manifesto {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 6rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
    padding: 4rem 3rem;
}

.sourcing-inner {
    max-width: 800px;
    margin: 0 auto;
}

.sourcing-inner h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 900;
}

.sourcing-inner p {
    color: var(--text-muted);
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
}

.partners-alliance-block {
    margin-bottom: 6rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at center, rgba(197, 164, 110, 0.035), transparent 70%);
    padding: 5rem 5%;
}

.partners-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.partner-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 900;
}

.partner-card p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.6;
}

.story-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.product-img-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-secondary);
}

.story-preview-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.story-preview-content h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 900;
}

.story-preview-content p {
    color: var(--text-muted);
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
}

.private-salon-card {
    margin-bottom: 6rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    background: #000000;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.private-salon-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 900;
}

.private-salon-card p {
    max-width: 750px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   CART DRAWER + DECANTS
   ========================================= */

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
    background: var(--bg-primary);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    padding: 1rem;
    margin-bottom: 1rem;
}

.cart-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cart-empty {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    padding: 1.25rem;
}

.cart-empty h4 {
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-size: 1rem;
}

.cart-empty p {
    margin: 0;
    color: var(--text-muted);
}

.cart-item-side {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.cart-remove:hover {
    color: var(--danger);
}

.qty-controls {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    padding: 0.3rem;
    margin-top: 0.8rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 900;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #000000;
}

.decant-upsell-wrapper {
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.decant-upsell-title {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.decant-upsell-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.decant-upsell-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
}

.decant-info h5 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
}

.decant-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.decant-add-btn {
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    background: transparent;
    color: var(--accent-gold);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    transition: all var(--transition-fast);
}

.decant-add-btn:hover {
    background: var(--accent-gold);
    color: #000000;
}

.checkout-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.checkout-label {
    margin-bottom: 0.2rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-note {
    max-width: 250px;
    margin: 0.45rem 0 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

#cart-total {
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 900;
}

.drawer-open {
    overflow: hidden;
}

/* =========================================
   AI CONCIERGE
   ========================================= */

#ai-concierge-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform 0.3s var(--transition-spring);
}

#ai-concierge-widget:hover {
    transform: scale(1.1);
}

#ai-concierge-widget .pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border: 2px solid #000000;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

#ai-concierge-board {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1001;
    width: 380px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    will-change: transform, opacity;
}

.board-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.95);
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: #000000;
    padding: 1rem;
}

.board-title-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.board-title-group h4 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
}

.board-title-group p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.active-pulse {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-glow 1.5s infinite;
}

#close-board-btn,
#close-drawer-btn {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color var(--transition-fast);
}

#close-board-btn:hover,
#close-drawer-btn:hover {
    color: #ffffff;
}

.board-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    padding: 1.25rem;
}

.board-msg {
    max-width: 84%;
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bot-msg {
    align-self: flex-start;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
    background: var(--bg-primary);
    color: #e5e5e5;
}

.user-msg {
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    background: var(--accent-gold);
    color: #000000;
    font-weight: 700;
}

.board-options-container {
    width: 84%;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-opt-btn {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: #ffffff;
    padding: 0.6rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.chat-opt-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 164, 110, 0.05);
}

.board-recommendations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommendation-card {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.8rem;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    padding: 0.75rem;
}

.recommendation-card img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    background: #000000;
}

.recommendation-card h5 {
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.25;
}

.recommendation-card p {
    margin: 0.2rem 0;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.recommendation-card strong {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.concierge-whatsapp {
    align-self: flex-start;
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

.board-input-area {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid var(--border-color);
    background: #000000;
    padding: 0.8rem 1rem;
}

#board-text-input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-primary);
    color: #ffffff;
    padding: 0.6rem 1rem;
    font-size: 16px;
}

#board-send-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--accent-gold);
    color: #000000;
}

.typing-bubble {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
    border-radius: 16px;
    background: var(--bg-primary);
    padding: 0.8rem 1.2rem;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: bounce-dot 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce-dot {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.mobile-sticky-atc {
    display: none;
}

#toast-container {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--success);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: #ffffff;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 700;
    animation: toastEnter 0.32s ease forwards, toastExit 0.32s ease 3.55s forwards;
}

.toast.error {
    border-left-color: var(--danger);
}

@keyframes toastEnter {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastExit {
    to { opacity: 0; transform: translateY(-12px) scale(0.96); }
}

footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    padding: 4rem 5%;
    text-align: center;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-title {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-copy {
    max-width: 760px;
    margin: 0 auto 1.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.salon-btn {
    background: var(--whatsapp);
    color: #ffffff !important;
}

.salon-btn:hover {
    background: #1fb85a;
    box-shadow: 0 10px 20px -10px var(--whatsapp);
}

.story-btn {
    width: fit-content;
    min-width: 200px;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {
    .product-grid,
    .collection-grid,
    .partners-grid,
    .story-preview-container {
        grid-template-columns: 1fr;
    }

    .section__heading--split {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        grid-template-rows: 1fr !important;
        align-items: center !important;
        height: 70px !important;
        min-height: 70px !important;
        padding: calc(0.5rem + env(safe-area-inset-top)) 5% 0.5rem !important;
        gap: 0 !important;
        background: var(--bg-primary) !important;
    }

    html body header div.menu-toggle {
        grid-column: 1 !important;
        grid-row: 1 !important;
        order: 1 !important;
        justify-self: start !important;
        display: flex !important;
        margin: 0 !important;
    }

    html body header a.logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        order: 2 !important;
        justify-self: center !important;
        margin: 0 !important;
        font-size: 1.3rem !important;
    }

    html body header a.cart-link {
        grid-column: 3 !important;
        grid-row: 1 !important;
        order: 3 !important;
        justify-self: end !important;
        margin: 0 !important;
        border-radius: 8px;
        padding: 0.5rem 0.8rem !important;
    }

    nav#nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        order: 4 !important;
        display: flex !important;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        border-top: 1px solid var(--border-color);
        background: rgba(7, 7, 8, 0.98);
        padding: 0 5%;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    nav#nav-links.active {
        max-height: 430px;
        opacity: 1;
        padding: 1rem 5%;
    }

    nav#nav-links a {
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(226, 232, 240, 0.1);
        color: var(--text-muted);
        padding: 1.2rem 0;
        text-align: center;
        font-size: 1.1rem;
    }

    .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .ticker-ribbon {
        padding: 0.85rem 5%;
    }

    .hero-section {
        padding: 3.5rem 5% !important;
    }

    .hero-section h1 {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
    }

    .hero-copy {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-btn-container {
        display: grid;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .trust-bar span {
        min-height: 54px;
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .collection-band,
    .section {
        padding: 3rem 0;
    }

    .sourcing-manifesto {
        margin-bottom: 4rem;
        padding: 2rem 1.5rem;
    }

    .partners-alliance-block {
        margin-bottom: 4rem;
        padding: 3rem 5%;
    }

    .partner-card,
    .private-salon-card {
        padding: 1.5rem;
    }

    .story-preview-container,
    .private-salon-card {
        margin-bottom: 4rem;
    }

    .cart-drawer {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    .checkout-bar {
        align-items: stretch;
        flex-direction: column;
    }

    #ai-concierge-board {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        height: calc(100% - 100px);
    }

    #ai-concierge-widget {
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
