/* ===================================================
   VAPOEASY — Pod Store
   Design System & Styles
   =================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
    --color-bg: #000000;
    --color-bg-card: #0d0d0d;
    --color-bg-elevated: #151515;
    --color-bg-hover: #1a1a1a;
    --color-accent: #FF6A00;
    --color-accent-hover: #FF8C33;
    --color-accent-glow: rgba(255, 106, 0, 0.35);
    --color-white: #FFFFFF;
    --color-text: #E0E0E0;
    --color-text-muted: #888888;
    --color-text-dim: #555555;
    --color-border: #222222;
    --color-success: #00C853;
    --color-danger: #FF1744;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --shadow-card: 0 2px 16px rgba(0, 0, 0, .45);
    --shadow-glow: 0 0 24px var(--color-accent-glow);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
    --header-h: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- Utility --- */
.text-accent {
    color: var(--color-accent);
}

/* ===================================================
   HEADER
   =================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background var(--transition);
}

.header__inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: relative;
}

/* Logo — always dead center */
.header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* Right side */
.header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Online indicator */
.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff2d2d;
    background: rgba(255, 45, 45, .08);
    border: 1px solid rgba(255, 45, 45, .25);
    padding: 6px 16px 6px 12px;
    border-radius: var(--radius-pill);
    animation: pulseGlowBorder 2s infinite ease-in-out;
}

.online-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d2d;
    box-shadow: 0 0 6px #ff2d2d, 0 0 12px rgba(255, 45, 45, .5);
    flex-shrink: 0;
}

/* Pulsing ring radiating outward */
.online-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #ff2d2d;
    animation: pingRing 2s infinite ease-out;
}

@keyframes pingRing {
    0% {
        transform: scale(.8);
        opacity: .8;
    }

    70% {
        transform: scale(2.2);
        opacity: 0;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes pulseGlowBorder {

    0%,
    100% {
        border-color: rgba(255, 45, 45, .3);
        box-shadow: 0 0 12px rgba(255, 45, 45, .08);
    }

    50% {
        border-color: rgba(255, 45, 45, .6);
        box-shadow: 0 0 20px rgba(255, 45, 45, .15);
    }
}

/* Logo */
.header__logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, .3));
    transition: filter var(--transition);
}

.header__logo-img:hover {
    filter: drop-shadow(0 0 16px rgba(255, 106, 0, .5));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    user-select: none;
}

.logo-text--sm {
    font-size: 1.25rem;
}

.logo-accent {
    color: var(--color-accent);
}

/* Nav */
.header__nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Cart Button */
.header__cart {
    position: relative;
    color: var(--color-white);
    transition: color var(--transition);
    padding: 8px;
}

.header__cart:hover {
    color: var(--color-accent);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-accent);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    transform: scale(0);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.cart-badge.visible {
    transform: scale(1);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 6px 0;
}

.header__hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.header__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--color-accent);
}

/* ===================================================
   HERO  (premium centered layout)
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 40px) 24px 60px;
    overflow: hidden;
    background: #000;
}

/* ── Background ── */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255, 106, 0, .12) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 60, 0, .08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, .06) 0%, transparent 50%);
}

/* Floating particles */
.hero__particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    animation: particleDrift 8s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: -1.5s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -3s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: -4.5s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: -6s;
}

.particle:nth-child(6) {
    top: 40%;
    left: 5%;
    animation-delay: -7s;
    width: 2px;
    height: 2px;
}

@keyframes particleDrift {
    0% {
        opacity: 0;
        transform: translateY(0) scale(.5);
    }

    20% {
        opacity: .6;
    }

    50% {
        opacity: .4;
        transform: translateY(-40px) scale(1);
    }

    80% {
        opacity: .6;
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(.5);
    }
}

/* ── Smoke / Vapor effect ── */
.hero__smoke {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.smoke-wisp {
    position: absolute;
    bottom: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    animation: smokeRise 10s infinite ease-out;
}

.smoke-wisp:nth-child(1) {
    left: 10%;
    width: 180px;
    height: 180px;
    animation-duration: 11s;
    animation-delay: 0s;
}

.smoke-wisp:nth-child(2) {
    left: 45%;
    width: 260px;
    height: 260px;
    filter: blur(50px);
    animation-duration: 13s;
    animation-delay: -2s;
}

.smoke-wisp:nth-child(3) {
    right: 15%;
    width: 200px;
    height: 200px;
    animation-duration: 9s;
    animation-delay: -4s;
}

.smoke-wisp:nth-child(4) {
    left: 65%;
    width: 150px;
    height: 150px;
    filter: blur(35px);
    animation-duration: 12s;
    animation-delay: -6s;
}

.smoke-wisp:nth-child(5) {
    left: 25%;
    width: 220px;
    height: 220px;
    filter: blur(55px);
    animation-duration: 14s;
    animation-delay: -8s;
}

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(.6);
    }

    15% {
        opacity: .45;
    }

    40% {
        opacity: .3;
        transform: translateY(-40vh) translateX(20px) scale(1);
    }

    70% {
        opacity: .15;
        transform: translateY(-70vh) translateX(-15px) scale(1.3);
    }

    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(10px) scale(1.5);
    }
}

/* ── Center content ── */
.hero__center {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo with glow ring */
.hero__logo-wrapper {
    position: relative;
    margin-bottom: 32px;
    animation: heroLogoIn 1s ease both;
}

.hero__glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, .15) 0%, transparent 70%);
    border: 1px solid rgba(255, 106, 0, .1);
    animation: ringPulse 4s 1s infinite ease-in-out;
    pointer-events: none;
}

.hero__logo-img {
    position: relative;
    z-index: 1;
    width: clamp(320px, 55vw, 580px);
    filter: drop-shadow(0 0 60px rgba(255, 106, 0, .25)) drop-shadow(0 12px 32px rgba(0, 0, 0, .6));
}

/* ── Logo Smoke Effect ── */
.hero__logo-smoke {
    position: absolute;
    inset: -40%;
    pointer-events: none;
    z-index: 0;
}

.logo-smoke-wisp {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, rgba(255, 106, 0, .04) 40%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    animation: logoSmoke 7s infinite ease-out;
}

.logo-smoke-wisp:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 50%;
    left: -10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.logo-smoke-wisp:nth-child(2) {
    width: 220px;
    height: 220px;
    top: 30%;
    right: -15%;
    filter: blur(40px);
    animation-duration: 10s;
    animation-delay: -2s;
}

.logo-smoke-wisp:nth-child(3) {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 20%;
    filter: blur(35px);
    animation-duration: 9s;
    animation-delay: -4s;
}

.logo-smoke-wisp:nth-child(4) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 40%;
    filter: blur(45px);
    animation-duration: 11s;
    animation-delay: -1s;
}

.logo-smoke-wisp:nth-child(5) {
    width: 140px;
    height: 140px;
    bottom: 20%;
    right: 10%;
    filter: blur(25px);
    animation-duration: 7s;
    animation-delay: -3s;
}

.logo-smoke-wisp:nth-child(6) {
    width: 260px;
    height: 260px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    background: radial-gradient(circle, rgba(255, 106, 0, .06) 0%, transparent 70%);
    animation-duration: 12s;
    animation-delay: -5s;
}

@keyframes logoSmoke {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(.6);
    }

    15% {
        opacity: .6;
    }

    40% {
        opacity: .4;
        transform: translateY(-30px) translateX(10px) scale(1);
    }

    65% {
        opacity: .25;
        transform: translateY(-60px) translateX(-8px) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) translateX(5px) scale(1.4);
    }
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(.85) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

/* Tag line with dashes */
.hero__tag-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    animation: fadeInUp .8s .3s ease both;
}

.hero__tag-dash {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: .6;
}

.hero__tag {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0;
}

/* Title & subtitle */
.hero__title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--color-white);
    margin-bottom: 20px;
    animation: fadeInUp .8s .45s ease both;
}

.hero__title--accent {
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(255, 106, 0, .2);
}

.hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeInUp .8s .6s ease both;
}

/* CTA buttons */
.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp .8s .75s ease both;
}

/* Scroll hint arrow */
.hero__scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .3);
    animation: bounce 2s 2s infinite ease-in-out;
    z-index: 2;
    transition: color var(--transition);
}

.hero__scroll-hint:hover {
    color: var(--color-accent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Keyframes ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 6px 30px var(--color-accent-glow);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(255, 106, 0, .08);
    transform: translateY(-2px);
}

/* Instagram button */
.btn--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 4px 20px rgba(225, 48, 108, .3);
}

.btn--instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
    box-shadow: 0 6px 30px rgba(225, 48, 108, .45);
    transform: translateY(-2px);
}

/* ===================================================
   FILTERS
   =================================================== */
.filters {
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.filters__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filters__inner::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    background: transparent;
    transition: all var(--transition);
}

.filter-pill:hover {
    border-color: var(--color-accent);
    color: var(--color-white);
}

.filter-pill.active {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.products__header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: .95rem;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeInUp .5s ease both;
}

.product-card:hover {
    border-color: rgba(255, 106, 0, .3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.product-card__img-wrap {
    position: relative;
    background: var(--color-bg-elevated);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-card__img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover .product-card__img {
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-danger);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
}

.product-card__badge--hot {
    background: var(--color-accent);
    color: #000;
}

.product-card__body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-card__desc {
    font-size: .8rem;
    color: var(--color-text-dim);
    margin-bottom: 8px;
    flex: 1;
}

.product-card__flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.flavor-tag {
    font-size: .68rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    background: rgba(255, 106, 0, .1);
    border: 1px solid rgba(255, 106, 0, .3);
    color: var(--color-accent);
    white-space: nowrap;
    transition: all var(--transition);
}

.product-card:hover .flavor-tag {
    border-color: rgba(255, 106, 0, .5);
    background: rgba(255, 106, 0, .15);
}

.product-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-card__price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
}

.product-card__price-old {
    font-size: .8rem;
    color: var(--color-text-dim);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-card__discount {
    font-size: .72rem;
    font-weight: 700;
    color: var(--color-accent);
}

.product-card__add-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all var(--transition);
    flex-shrink: 0;
}

.product-card__add-btn:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 18px var(--color-accent-glow);
    transform: scale(1.1);
}

.product-card__add-btn:active {
    transform: scale(.95);
}

/* Out of Stock Card */
.product-card--out {
    opacity: .6;
    pointer-events: none;
}

.product-card--out .product-card__img {
    filter: grayscale(.5);
}

.product-card__badge--out {
    background: #555 !important;
    color: #fff !important;
}

.product-card__sold-out {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-text-dim);
    padding: 8px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
    padding: 80px 24px;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.contact__inner {
    max-width: 500px;
    margin: 0 auto;
}

.contact__links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

.btn--whatsapp:hover {
    background: #1ebe57;
    box-shadow: 0 6px 30px rgba(37, 211, 102, .4);
    transform: translateY(-2px);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 32px 24px;
    text-align: center;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__copy {
    font-size: .78rem;
    color: var(--color-text-dim);
}

/* ===================================================
   CART DRAWER
   =================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 90vw);
    height: 100%;
    background: var(--color-bg-card);
    border-left: 1px solid var(--color-border);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.cart-drawer__header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-drawer__close {
    color: var(--color-text-dim);
    transition: color var(--transition);
    padding: 4px;
}

.cart-drawer__close:hover {
    color: var(--color-white);
}

.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    color: var(--color-text-dim);
    font-size: .9rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    animation: fadeInUp .3s ease both;
}

.cart-item__img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-sm);
    padding: 6px;
    flex-shrink: 0;
}

.cart-item__info {
    flex: 1;
    min-width: 0;
}

.cart-item__name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__price {
    font-size: .8rem;
    color: var(--color-accent);
    font-weight: 600;
}

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item__qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cart-item__qty-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cart-item__qty {
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-white);
    min-width: 20px;
    text-align: center;
}

.cart-drawer__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-white);
}

.btn--checkout {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* ===================================================
   TOAST
   =================================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-accent);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: .85rem;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
    box-shadow: 0 4px 30px var(--color-accent-glow);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===================================================
   PRODUCT VIEW BTN (on cards)
   =================================================== */
.product-card__view-btn {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-accent);
    padding: 8px 14px;
    border: 1px solid rgba(255, 106, 0, .3);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    cursor: pointer;
}

.product-card:hover .product-card__view-btn {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

/* ===================================================
   PRODUCT DETAIL MODAL
   =================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px);
    z-index: 1300;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.92);
    width: min(860px, 92vw);
    max-height: 90vh;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    z-index: 1400;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.modal.open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--color-text-dim);
    padding: 6px;
    z-index: 10;
    transition: color var(--transition);
}

.modal__close:hover {
    color: var(--color-white);
}

.modal__body {
    display: flex;
    gap: 0;
}

.modal__img-wrap {
    flex: 0 0 45%;
    background: var(--color-bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal__img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.modal__info {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.modal__name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal__desc {
    font-size: .9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
}

.modal__price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-white);
}

.modal__price-old {
    font-size: .9rem;
    color: var(--color-text-dim);
    text-decoration: line-through;
}

.modal__discount {
    font-size: .8rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(255, 106, 0, .12);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

/* Flavor Section */
.modal__flavors-section {
    margin-bottom: 24px;
}

.modal__flavors-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.modal__flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal__flavor-pill {
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-size: .82rem;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}

.modal__flavor-pill:hover {
    border-color: var(--color-accent);
    color: var(--color-white);
}

.modal__flavor-pill.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
    box-shadow: 0 0 14px var(--color-accent-glow);
}

/* Modal Add Button */
.modal__add-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: .95rem;
}

.modal__add-btn:disabled {
    background: var(--color-border);
    color: var(--color-text-dim);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Cart Item Flavor & Remove */
.cart-item__flavor {
    font-size: .72rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 2px;
}

.cart-item__remove {
    color: var(--color-text-dim);
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.cart-item__remove:hover {
    color: var(--color-danger);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + 60px);
    }

    .hero__logo-img {
        width: clamp(200px, 55vw, 340px);
    }

    .modal__body {
        flex-direction: column;
    }

    .modal__img-wrap {
        flex: none;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 260px;
    }

    .modal__info {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card__body {
        padding: 12px 14px 16px;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__title {
        font-size: 2rem;
    }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Clickable card cursor */
.product-card:not(.product-card--out) {
    cursor: pointer;
}