/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
    --purple: #7c3aed;
    --purple-lt: #ede9fe;
    --purple-dk: #5b21b6;
    --coral: #ff3c6e;
    --coral-lt: #ffe4ec;
    --coral-dk: #c90041;
    --cyan: #00c9b1;
    --cyan-lt: #ccfbf1;
    --cyan-dk: #007a6d;
    --white: #ffffff;
    --off: #f8f8f8;
    --g100: #f3f4f6;
    --g200: #e5e7eb;
    --g400: #9ca3af;
    --g600: #4b5563;
    --g800: #1f2937;
    --dark: #0a0a0f;
    --display: 'Unbounded', sans-serif;
    --body: 'Lora', serif;
    --radius: 16px;
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0,0,0,.09);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--white); color: var(--g800); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-off { background: var(--off); }
.text-center { text-align: center; }

/* ===========================
   GRADIENTS
   =========================== */
.text-gradient {
    background: linear-gradient(135deg, var(--purple), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-coral {
    background: linear-gradient(135deg, var(--coral), #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-cyan {
    background: linear-gradient(135deg, var(--cyan), #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--trans);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn--purple {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn--purple:hover {
    background: var(--purple-dk);
    box-shadow: 0 8px 32px rgba(124,58,237,.5);
    transform: translateY(-2px);
}
.btn--outline {
    border-color: var(--g200);
    color: var(--g800);
}
.btn--outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-2px);
}
.btn--ghost {
    border-color: var(--g200);
    color: var(--g600);
}
.btn--ghost:hover { background: var(--g100); }
.btn--outline-purple {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--purple);
    color: var(--purple);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    transition: var(--trans);
}
.btn--outline-purple:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,58,237,.4);
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--g100);
    transition: box-shadow var(--trans);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.header__inner {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 32px;
}
.logo {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--g800);
    white-space: nowrap;
    flex-shrink: 0;
}
.logo span { color: var(--purple); }
.nav { flex: 1; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 13px;
    border-radius: 8px;
    color: var(--g600);
    transition: var(--trans);
}
.nav__link:hover { color: var(--purple); background: var(--purple-lt); }
.nav__link--sale { color: var(--coral); }
.nav__link--sale:hover { background: var(--coral-lt); color: var(--coral-dk); }
.header__actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.icon-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    color: var(--g600);
    transition: var(--trans);
    position: relative;
}
.icon-btn:hover { background: var(--g100); color: var(--g800); }
.cart-count {
    position: absolute;
    top: 5px; right: 5px;
    background: var(--coral);
    color: #fff;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 800;
    width: 17px; height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    border-radius: 10px;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--g800);
    border-radius: 2px;
    transition: var(--trans);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   ANNOUNCE BAR
   =========================== */
.announce-bar {
    background: var(--dark);
    color: rgba(255,255,255,.85);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}
.announce-bar__track {
    display: flex;
    gap: 56px;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.announce-bar__track span {
    font-family: var(--display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background: var(--white);
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.hero__blob--purple {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(124,58,237,.13) 0%, transparent 70%);
    top: -250px; right: -150px;
}
.hero__blob--coral {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255,60,110,.1) 0%, transparent 70%);
    bottom: -100px; right: 280px;
}
.hero__blob--cyan {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0,201,177,.1) 0%, transparent 70%);
    top: 80px; left: -80px;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 560px;
    position: relative;
    z-index: 1;
}
.hero__content { display: flex; flex-direction: column; gap: 22px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--purple-lt);
    color: var(--purple);
    border-radius: 50px;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
}
.hero__title {
    font-family: var(--display);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--g800);
}
.hero__sub {
    font-size: 17px;
    color: var(--g600);
    max-width: 400px;
    line-height: 1.75;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; align-items: center; gap: 20px; padding-top: 8px; }
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 900;
    color: var(--g800);
    letter-spacing: -0.03em;
}
.stat span { font-family: var(--display); font-size: 10px; font-weight: 500; color: var(--g400); letter-spacing: 0.04em; }
.stat__divider { width: 1px; height: 36px; background: var(--g200); }

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}
.hero__device-showcase {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding: 32px 16px 16px;
}
.device {
    border-radius: 18px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    transition: transform .5s cubic-bezier(.34,1.56,.64,1);
    flex-shrink: 0;
}
.device:hover { transform: translateY(-12px) rotate(-3deg); }
.device--tall   { width: 68px; height: 190px; }
.device--pod    { width: 54px; height: 145px; }
.device--slim   { width: 40px; height: 165px; }
.device--purple { background: linear-gradient(165deg, #a855f7, #7c3aed, #4c1d95); }
.device--coral  { background: linear-gradient(165deg, #ff7096, #ff3c6e, #9f0034); }
.device--cyan   { background: linear-gradient(165deg, #34d9c4, #00c9b1, #006b62); }

/* Tall device screen */
.device--tall .device__screen {
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 46px; height: 68px;
    background: rgba(0,0,0,.32);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 4px;
}
.screen-puffs {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}
.screen-label {
    font-family: var(--display);
    font-size: 5px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.1em;
}
.screen-battery {
    width: 22px; height: 9px;
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: 2px;
    position: relative;
    margin-top: 2px;
}
.screen-battery::after {
    content: '';
    position: absolute;
    left: 2px; top: 1.5px;
    width: 65%; height: 4px;
    background: #4ade80;
    border-radius: 1px;
}
.screen-battery::before {
    content: '';
    position: absolute;
    right: -4px; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 5px;
    background: rgba(255,255,255,.5);
    border-radius: 0 1px 1px 0;
}
.device__btn {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 7px;
    background: rgba(255,255,255,.25);
    border-radius: 4px;
}
/* Pod device */
.device__pod-cap {
    width: 100%; height: 28px;
    background: rgba(255,255,255,.2);
    border-radius: 8px 8px 4px 4px;
}
.device__pod-body {
    display: flex; align-items: center; justify-content: center;
    height: calc(100% - 28px);
}
.device__led {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.85);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255,255,255,.7);
    animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
/* Slim device */
.device__mouthpiece {
    width: 22px; height: 10px;
    background: rgba(255,255,255,.28);
    border-radius: 10px 10px 3px 3px;
    margin: 0 auto;
}
.device__slim-body {
    display: flex; align-items: center; justify-content: center;
    height: calc(100% - 10px);
}
.device__slim-body span {
    font-family: var(--display);
    font-size: 6px;
    font-weight: 900;
    color: rgba(255,255,255,.55);
    writing-mode: vertical-rl;
    letter-spacing: 0.15em;
}
/* Floating tags */
.floating-tag {
    position: absolute;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    box-shadow: var(--shadow);
    pointer-events: none;
}
.tag--purple { background: var(--purple-lt); color: var(--purple); top: 8%; left: 2%; animation: float 4.5s ease-in-out infinite; }
.tag--coral  { background: var(--coral-lt); color: var(--coral-dk); bottom: 28%; right: 2%; animation: float 4.5s ease-in-out infinite 1.5s; }
.tag--cyan   { background: var(--cyan-lt); color: var(--cyan-dk); top: 65%; left: -2%; animation: float 4.5s ease-in-out infinite 3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
    padding: 32px 0;
    border-top: 1px solid var(--g100);
    border-bottom: 1px solid var(--g100);
}
.trust-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon {
    width: 48px; height: 48px;
    background: var(--g100);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-item strong { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--g800); margin-bottom: 2px; }
.trust-item span { font-size: 12px; color: var(--g400); }

/* ===========================
   SECTION HEADER
   =========================== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.section-title {
    font-family: var(--display);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--g800);
    margin-bottom: 12px;
}
.section-sub { font-size: 15px; color: var(--g400); max-width: 460px; margin: 0 auto; }

/* ===========================
   CATEGORIES
   =========================== */
.categories__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.category-card {
    background: var(--white);
    border: 1.5px solid var(--g100);
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    cursor: pointer;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans);
    border-radius: 3px 3px 0 0;
}
.category-card--coral::before { background: var(--coral); }
.category-card--purple::before { background: var(--purple); }
.category-card--cyan::before   { background: var(--cyan); }
.category-card:hover { transform: translateY(-5px); border-color: transparent; }
.category-card:hover::before { transform: scaleX(1); }
.category-card--coral:hover { box-shadow: 0 14px 48px rgba(255,60,110,.18); }
.category-card--purple:hover { box-shadow: 0 14px 48px rgba(124,58,237,.18); }
.category-card--cyan:hover   { box-shadow: 0 14px 48px rgba(0,201,177,.18); }
.category-card__icon { margin-bottom: 8px; }
.category-card--coral .category-card__icon { color: var(--coral); }
.category-card--purple .category-card__icon { color: var(--purple); }
.category-card--cyan   .category-card__icon { color: var(--cyan); }
.category-card h3 { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--g800); letter-spacing: -0.01em; }
.category-card p { font-size: 11px; color: var(--g400); }
.category-card__tag {
    display: inline-block;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    width: fit-content;
    margin-top: 4px;
}
.category-card--coral .category-card__tag { background: var(--coral-lt); color: var(--coral-dk); }
.category-card--purple .category-card__tag { background: var(--purple-lt); color: var(--purple-dk); }
.category-card--cyan   .category-card__tag { background: var(--cyan-lt); color: var(--cyan-dk); }
.category-card__arrow { font-size: 16px; margin-top: auto; padding-top: 12px; transition: transform var(--trans); }
.category-card--coral .category-card__arrow { color: var(--coral); }
.category-card--purple .category-card__arrow { color: var(--purple); }
.category-card--cyan   .category-card__arrow { color: var(--cyan); }
.category-card:hover .category-card__arrow { transform: translateX(6px); }

/* ===========================
   PRODUCTS
   =========================== */
.products__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card {
    background: var(--white);
    border: 1.5px solid var(--g100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--trans);
}
.product-card:hover { transform: translateY(-6px); }
.product-card[data-accent="purple"]:hover { box-shadow: 0 16px 48px rgba(124,58,237,.2); border-color: var(--purple-lt); }
.product-card[data-accent="coral"]:hover   { box-shadow: 0 16px 48px rgba(255,60,110,.17); border-color: var(--coral-lt); }
.product-card[data-accent="cyan"]:hover    { box-shadow: 0 16px 48px rgba(0,201,177,.17); border-color: var(--cyan-lt); }

.product-card__img {
    height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* CSS device shapes inside cards */
.pd {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    transition: transform .4s ease;
}
.pd span {
    font-family: var(--display);
    font-size: 7px;
    font-weight: 900;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}
.pd--tall { width: 54px; height: 128px; border-radius: 16px; }
.pd--slim { width: 38px; height: 116px; border-radius: 14px; }
.pd--box  { width: 82px; height: 88px; border-radius: 12px; }
.pd--box span { writing-mode: horizontal-tb; font-size: 10px; }
.product-card:hover .pd { transform: translateY(-6px) scale(1.04); }

.badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.badge--new  { background: var(--purple); color: #fff; }
.badge--best { background: var(--cyan); color: #fff; }
.badge--sale { background: var(--coral); color: #fff; }
.wish-btn {
    position: absolute;
    top: 9px; right: 9px;
    width: 30px; height: 30px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: var(--trans);
    color: var(--g400);
}
.wish-btn:hover { transform: scale(1.12); color: var(--coral); }
.wish-btn.wished { color: var(--coral); }

.product-card__info { padding: 14px 16px 16px; }
.product-card__brand { font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); margin-bottom: 5px; }
.product-card__name { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--g800); margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.puffs-tag { font-family: var(--display); font-size: 9px; font-weight: 600; color: var(--g400); }
.stars { font-size: 11px; color: #f59e0b; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--display); font-size: 17px; font-weight: 900; color: var(--g800); letter-spacing: -0.02em; }
.was { font-size: 12px; color: var(--g400); text-decoration: line-through; margin-left: 5px; }
.btn-add {
    background: var(--purple);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    transition: var(--trans);
    letter-spacing: 0.03em;
}
.btn-add:hover { background: var(--purple-dk); transform: scale(1.05); box-shadow: 0 4px 14px rgba(124,58,237,.35); }
.btn-add.added { background: var(--cyan); }

/* ===========================
   BRANDS
   =========================== */
.brands__wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.brand-pill {
    padding: 11px 22px;
    border-radius: 50px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    border: 1.5px solid transparent;
    letter-spacing: 0.01em;
}
.brand-pill--purple { background: var(--purple-lt); color: var(--purple); }
.brand-pill--purple:hover { background: var(--purple); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.35); }
.brand-pill--coral  { background: var(--coral-lt); color: var(--coral-dk); }
.brand-pill--coral:hover  { background: var(--coral); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,60,110,.3); }
.brand-pill--cyan   { background: var(--cyan-lt); color: var(--cyan-dk); }
.brand-pill--cyan:hover   { background: var(--cyan); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,177,.3); }

/* ===========================
   WHY
   =========================== */
.why__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card {
    background: var(--white);
    border: 1.5px solid var(--g100);
    border-radius: var(--radius);
    padding: 30px 22px;
    transition: var(--trans);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.why--purple { background: var(--purple-lt); color: var(--purple); }
.why--coral  { background: var(--coral-lt);  color: var(--coral); }
.why--cyan   { background: var(--cyan-lt);   color: var(--cyan); }
.why-card h3 { font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--g800); margin-bottom: 10px; letter-spacing: -0.01em; }
.why-card p  { font-size: 13px; color: var(--g600); line-height: 1.7; }

/* ===========================
   CONTACT
   =========================== */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact__title {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: var(--g800);
    margin-bottom: 14px;
}
.contact__sub {
    font-size: 15px;
    color: var(--g600);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 380px;
}
.contact__cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--g100);
    background: var(--white);
    transition: var(--trans);
    text-decoration: none;
    color: inherit;
}
.contact__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact__card--purple:hover { border-color: var(--purple-lt); box-shadow: 0 8px 32px rgba(124,58,237,.15); }
.contact__card--coral:hover  { border-color: var(--coral-lt);  box-shadow: 0 8px 32px rgba(255,60,110,.12); }
.contact__card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact__card--purple .contact__card-icon { background: var(--purple-lt); color: var(--purple); }
.contact__card--coral  .contact__card-icon { background: var(--coral-lt);  color: var(--coral); }
.contact__card-label {
    display: block;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 3px;
}
.contact__card-value {
    display: block;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    color: var(--g800);
    letter-spacing: -0.01em;
    line-height: 1.4;
}
.contact__card-arrow { margin-left: auto; font-size: 18px; color: var(--purple); font-weight: 700; }
.contact__cta { font-size: 14px; padding: 16px 32px; width: fit-content; }

.contact__map { display: flex; flex-direction: column; gap: 12px; }
.contact__map-frame {
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--g100);
}
.contact__map-frame iframe { display: block; width: 100%; height: 100%; }
.contact__directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    transition: var(--trans);
    align-self: flex-start;
    padding: 8px 0;
}
.contact__directions:hover { color: var(--purple-dk); gap: 12px; }

/* HIDE CART (call-to-order site) */
.cart-btn { display: none; }

/* FOOTER CONTACT INFO */
.footer__contact-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.footer__contact-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color var(--trans);
    line-height: 1.5;
}
.footer__contact-line:hover { color: rgba(255,255,255,.9); }

@media (max-width: 768px) {
    .contact__inner { grid-template-columns: 1fr; gap: 36px; }
    .contact__map-frame { height: 280px; }
}

/* ===========================
   NEWSLETTER (LEGACY - UNUSED)
   =========================== */
.newsletter__inner {
    background: var(--off);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid var(--g100);
}
.nl-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.nl-blob--purple { width: 380px; height: 380px; background: radial-gradient(circle, rgba(124,58,237,.07), transparent 70%); top: -180px; left: -80px; }
.nl-blob--cyan   { width: 280px; height: 280px; background: radial-gradient(circle, rgba(0,201,177,.07), transparent 70%); bottom: -120px; right: -40px; }
.newsletter__content { position: relative; z-index: 1; }
.nl-eyebrow { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.nl-title { font-family: var(--display); font-size: clamp(26px, 4vw, 42px); font-weight: 900; letter-spacing: -0.035em; color: var(--g800); margin-bottom: 14px; line-height: 1.1; }
.nl-sub { font-size: 15px; color: var(--g600); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 14px; }
.nl-input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--g200);
    border-radius: 50px;
    font-family: var(--body);
    font-size: 14px;
    outline: none;
    background: var(--white);
    transition: border-color var(--trans);
}
.nl-input:focus { border-color: var(--purple); }
.nl-disclaimer { font-size: 11px; color: var(--g400); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo { font-family: var(--display); font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 14px; letter-spacing: -0.03em; }
.footer__logo span { color: var(--purple); }
.footer__brand p { font-size: 13px; line-height: 1.75; max-width: 250px; margin-bottom: 14px; }
.footer__address { font-size: 12px !important; color: rgba(255,255,255,.35) !important; margin-bottom: 22px !important; }
.footer__socials { display: flex; gap: 8px; }
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.07);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    transition: var(--trans);
}
.social-btn:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.footer__col h4 { font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: 13px; transition: color var(--trans); }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding: 22px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__legal p { font-size: 11px; margin-bottom: 4px; }
.footer__warning { color: rgba(255,255,255,.35); }
.footer__badges { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.age-badge { padding: 6px 13px; border-radius: 6px; font-family: var(--display); font-size: 11px; font-weight: 800; background: var(--coral); color: #fff; }
.age-badge--outline { background: transparent; border: 1.5px solid rgba(255,255,255,.18); color: rgba(255,255,255,.4); }

/* ===========================
   HERO REAL IMAGE
   =========================== */
.hero__img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3/4;
    margin: 0 auto;
}
.hero__real-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero__frame-tag {
    position: absolute;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    background: rgba(255,255,255,.92);
    color: var(--g800);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
    letter-spacing: 0.03em;
}
.hero__frame-tag--tl { top: 16px; left: 16px; }
.hero__frame-tag--br { bottom: 16px; right: 16px; }

/* ===========================
   PRODUCT REAL IMAGES
   =========================== */
.product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

/* ===========================
   IN-STORE GALLERY
   =========================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(10,10,15,.72), transparent);
    color: #fff;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===========================
   FRAGRANCES
   =========================== */
.fragrances__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.fragrances__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.frag-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.frag-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.frag-img:hover img { transform: scale(1.04); }

@media (max-width: 1100px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .fragrances__inner { grid-template-columns: 1fr; gap: 32px; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__img-frame { max-width: 340px; aspect-ratio: 4/5; }
}
@media (max-width: 480px) {
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .fragrances__imgs { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
    .categories__grid { grid-template-columns: repeat(3,1fr); }
    .products__grid { grid-template-columns: repeat(3,1fr); }
    .trust-bar__grid { grid-template-columns: repeat(2,1fr); }
    .why__grid { grid-template-columns: repeat(2,1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__content { align-items: center; }
    .hero__visual { order: -1; }
    .hero__sub { text-align: center; }
    .categories__grid { grid-template-columns: repeat(2,1fr); }
    .products__grid { grid-template-columns: repeat(2,1fr); }
    .why__grid { grid-template-columns: 1fr; }
    .newsletter__inner { padding: 40px 24px; }
    .nl-form { flex-direction: column; }
    .nav {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(14px);
        padding: 16px 20px;
        border-bottom: 1px solid var(--g100);
        transform: translateY(-110%);
        opacity: 0;
        transition: var(--trans);
        z-index: 99;
    }
    .nav.open { transform: translateY(0); opacity: 1; }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 2px; }
    .hamburger { display: flex; }
    .section { padding: 56px 0; }
    .hero { padding: 44px 0 36px; }
}
@media (max-width: 480px) {
    .categories__grid { grid-template-columns: 1fr 1fr; }
    .products__grid { grid-template-columns: 1fr 1fr; }
    .trust-bar__grid { grid-template-columns: 1fr 1fr; }
    .hero__stats { gap: 14px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .btn { justify-content: center; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; }
    .hero__device-showcase { gap: 10px; }
    .device--tall { width: 56px; height: 155px; }
    .device--pod  { width: 44px; height: 118px; }
    .device--slim { width: 34px; height: 135px; }
}
