/* =====================================================================
   Droopy Stars — Premium US flowers / CBD
   Theme: graffiti green + dark, inspiré du logo
   ===================================================================== */

:root {
    /* Brand greens (du logo) */
    --ds-1: #5fff5f;       /* graffiti slime green (most vivid) */
    --ds-2: #22c55e;       /* fresh leaf green */
    --ds-3: #16a34a;       /* deeper green */
    --ds-4: #84cc16;       /* lime accent */
    --ds-glow: #5fff5f;    /* glow color */

    /* Flag accents */
    --us-red:   #ef4444;
    --us-blue:  #2563eb;
    --ma-red:   #c62828;

    /* Surfaces (dark green-black) */
    --bg-0: #04080a;
    --bg-1: #08110d;
    --bg-2: #0c1a13;
    --bg-3: #112619;
    --line: rgba(95, 255, 95, 0.10);
    --line-strong: rgba(95, 255, 95, 0.22);

    /* Text */
    --text:    #e8fde8;
    --muted:   #94b39a;
    --dim:     #5d7a64;

    /* Status */
    --ok:    #5fff5f;
    --warn:  #fbbf24;
    --err:   #f87171;
    --info:  #60a5fa;

    /* Effects */
    --grad-leaf:  linear-gradient(135deg, #5fff5f 0%, #22c55e 50%, #16a34a 100%);
    --grad-soft:  linear-gradient(135deg, rgba(95, 255, 95, 0.18), rgba(34, 197, 94, 0.10) 60%, rgba(132, 204, 22, 0.08));
    --grad-card:  linear-gradient(180deg, rgba(95, 255, 95, 0.05), rgba(95, 255, 95, 0.01));
    --glow-green: 0 0 50px rgba(95, 255, 95, 0.45);
    --glow-soft:  0 0 24px rgba(34, 197, 94, 0.35);

    --radius:   18px;
    --radius-sm: 10px;
    --radius-lg: 28px;

    --shadow-card: 0 30px 60px -25px rgba(0, 0, 0, 0.85), 0 0 0 1px var(--line);
    --shadow-pop:  0 20px 60px -15px rgba(95, 255, 95, 0.35);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Bagel Fat One', 'Permanent Marker', 'Sora', var(--font);
    --font-graff: 'Permanent Marker', 'Bagel Fat One', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-0);
    background-image:
        radial-gradient(at 20% 5%,  rgba(95, 255, 95, 0.10), transparent 50%),
        radial-gradient(at 80% 0%,  rgba(132, 204, 22, 0.08), transparent 50%),
        radial-gradient(at 10% 100%, rgba(22, 163, 74, 0.10), transparent 50%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
}

/* Animated background blobs */
body::before, body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    animation: float 22s ease-in-out infinite alternate;
}
body::before {
    background: radial-gradient(circle, var(--ds-1), transparent 60%);
    top: -10%;
    left: -15%;
}
body::after {
    background: radial-gradient(circle, var(--ds-3), transparent 60%);
    bottom: -15%;
    right: -20%;
    animation-delay: -10s;
}
@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.12); }
}

/* Subtle leaf-pattern overlay */
body > main::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='%2322c55e' opacity='0.04'><path d='M40 20 Q50 30 40 60 Q30 30 40 20'/></g></svg>");
    background-size: 220px;
    opacity: 0.6;
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--ds-1); color: var(--bg-0); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--ds-3); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
}
.h-display {
    font-family: var(--font-graff);
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: none;
}
.text-muted { color: var(--muted); }
.text-dim   { color: var(--dim); }
.text-pop   { background: var(--grad-leaf); -webkit-background-clip: text; background-clip: text; color: transparent; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* =====================================================================
   Topbar / Nav
   ===================================================================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(24px) saturate(160%);
    background: rgba(8, 17, 13, 0.82);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    min-height: 64px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-graff);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0;
    color: var(--ds-1);
    text-shadow: 0 0 20px rgba(95, 255, 95, 0.5);
    line-height: 1;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.brand .brand-name {
    white-space: nowrap;
    line-height: 1;
}
.brand img.brand-logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--ds-1), 0 0 22px rgba(95, 255, 95, 0.55);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.brand:hover img.brand-logo { transform: rotate(-8deg) scale(1.08); }
.brand .brand-text-sm {
    font-size: 0.62rem;
    color: var(--muted);
    display: block;
    line-height: 1;
    margin-top: 5px;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-shadow: none;
    white-space: nowrap;
}

.nav-links { display: flex; gap: 22px; flex: 1; align-items: center; height: 100%; }
.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding: 22px 2px;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--ds-1);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 3px;
    background: var(--grad-leaf);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 12px var(--ds-1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-actions > .btn,
.nav-actions > .cart-pill {
    height: 42px;
    padding: 0 16px;
    line-height: 1;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    margin: 0;
    vertical-align: middle;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.search-box {
    flex: 0 1 320px;
    position: relative;
}
.search-box input {
    width: 100%;
    height: 42px;
    background: rgba(95, 255, 95, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 0 14px 0 40px;
    font: inherit;
    transition: all .2s;
}
.search-box input:focus {
    outline: none;
    border-color: var(--ds-2);
    background: rgba(34, 197, 94, 0.10);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
.search-box svg {
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--dim);
}

/* Age verification banner */
.age-banner {
    background: linear-gradient(90deg, var(--us-red) 0%, var(--ma-red) 100%);
    color: white;
    text-align: center;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    text-decoration: none;
}
.btn:focus-visible { outline: 2px solid var(--ds-1); outline-offset: 2px; }
.btn-primary {
    background: var(--grad-leaf);
    color: #06180a;
    box-shadow: var(--glow-green);
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 25px 50px -10px rgba(95, 255, 95, 0.7); }
.btn-ghost {
    background: rgba(95, 255, 95, 0.05);
    border-color: var(--line);
    color: var(--text);
}
.btn-ghost:hover { background: rgba(95, 255, 95, 0.10); border-color: var(--line-strong); }
.btn-outline {
    background: transparent;
    border-color: var(--ds-2);
    color: var(--ds-1);
}
.btn-outline:hover { background: rgba(95, 255, 95, 0.08); }
.btn-soft {
    background: rgba(95, 255, 95, 0.06);
    border-color: var(--line);
    color: var(--text);
    font-weight: 600;
}
.btn-soft:hover { background: rgba(95, 255, 95, 0.12); border-color: var(--ds-2); color: var(--ds-1); }
.btn-sm { height: 34px; padding: 0 13px; font-size: 0.82rem; border-radius: 10px; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-danger { background: rgba(248,113,113,0.15); color: var(--err); border-color: rgba(248,113,113,0.3); }
.btn-danger:hover { background: rgba(248,113,113,0.25); }
.btn-icon { width: 42px; padding: 0; }

/* Cart pill */
.cart-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background: rgba(95, 255, 95, 0.06);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all .2s;
    line-height: 1;
}
.cart-pill:hover { border-color: var(--ds-2); color: var(--ds-1); }
.cart-pill .badge {
    background: var(--grad-leaf);
    color: #06180a;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 800;
    min-width: 22px;
    text-align: center;
}

/* Avatar */
.avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--grad-leaf);
    display: grid; place-items: center;
    color: #06180a;
    font-weight: 800;
    font-size: 0.85rem;
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
    padding: 80px 0 50px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ds-1);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ds-1);
    box-shadow: 0 0 14px var(--ds-1);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
    color: var(--ds-1);
    text-shadow: 0 0 30px rgba(95, 255, 95, 0.6);
    -webkit-text-stroke: 0;
}
.hero p.lead {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-flags {
    display: flex; gap: 10px;
    margin-top: 28px;
    align-items: center;
}
.hero-flags span {
    color: var(--muted);
    font-size: 0.85rem;
}
.flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(95, 255, 95, 0.4), transparent 60%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseHalo 4s ease-in-out infinite;
}
@keyframes pulseHalo {
    0%, 100% { opacity: 0.7; transform: scale(0.95); }
    50%      { opacity: 1; transform: scale(1.05); }
}
.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* Trust bar */
.trust-bar {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 70px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(95,255,95,0.04), transparent);
    flex-wrap: wrap;
}
.trust-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    background: var(--grad-leaf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.trust-item span { color: var(--muted); font-size: 0.85rem; font-weight: 500; }

/* =====================================================================
   Sections
   ===================================================================== */
section { padding: 60px 0; position: relative; z-index: 1; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
}
.section-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    margin: 0;
    font-family: var(--font-graff);
    font-weight: 400;
}
.section-head h2 .leaf {
    color: var(--ds-1);
    text-shadow: 0 0 14px var(--ds-1);
}
.section-head .section-sub { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }

/* =====================================================================
   Categories
   ===================================================================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}
.cat-card {
    padding: 24px;
    background: var(--grad-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity .3s;
}
.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--ds-2);
    box-shadow: 0 20px 40px -20px rgba(95, 255, 95, 0.4);
}
.cat-card:hover::before { opacity: 1; }
.cat-card * { position: relative; z-index: 1; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: var(--font); font-weight: 700; }
.cat-card p { color: var(--muted); font-size: 0.82rem; margin: 0; }
.cat-card .cat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--grad-leaf);
    display: grid; place-items: center;
    margin-bottom: 14px;
    color: #06180a;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(95, 255, 95, 0.3);
}

/* =====================================================================
   Products grid
   ===================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.product-card {
    background: var(--grad-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--ds-2);
    box-shadow: 0 30px 60px -25px rgba(95, 255, 95, 0.5);
}
.product-thumb {
    position: relative;
    aspect-ratio: 16 / 11;
    background:
        radial-gradient(circle at 30% 30%, rgba(95, 255, 95, 0.30), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(132, 204, 22, 0.20), transparent 60%),
        linear-gradient(135deg, #0a1f12, #0f2c19);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.product-thumb::before {
    content: '🌿';
    position: absolute;
    font-size: 6rem;
    opacity: 0.08;
    transform: rotate(-12deg);
    filter: drop-shadow(0 0 30px var(--ds-1));
}
.product-thumb .glyph {
    font-family: var(--font-graff);
    font-size: 3rem;
    font-weight: 900;
    color: var(--ds-1);
    text-shadow: 0 0 20px rgba(95, 255, 95, 0.6), 0 6px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
.product-thumb .badge-featured {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    padding: 5px 11px;
    background: var(--grad-leaf);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #06180a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-thumb .badge-thc {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
    padding: 4px 9px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ds-1);
}
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
    color: var(--ds-1);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 6px;
}
.product-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    line-height: 1.25;
    font-family: var(--font);
    font-weight: 700;
}
.product-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.product-meta .stars { color: #fde047; }
.product-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.product-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    background: var(--grad-leaf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.product-price .unit { color: var(--muted); font-size: 0.7rem; font-weight: 600; }

/* =====================================================================
   Live ticker
   ===================================================================== */
.ticker {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 50px 0;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(95,255,95,0.03), transparent);
}
.ticker-label {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 8px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    color: var(--ds-1);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ticker-label .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--ds-1); box-shadow: 0 0 12px var(--ds-1);
    animation: pulse 1.4s infinite;
}
.ticker-track {
    display: flex;
    gap: 36px;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
}
.ticker-item .pname { color: var(--text); font-weight: 600; }
.ticker-item .price { color: var(--ds-1); font-weight: 800; }
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =====================================================================
   Product detail
   ===================================================================== */
.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}
.product-hero-img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 30% 30%, rgba(95, 255, 95, 0.35), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(132, 204, 22, 0.25), transparent 60%),
        linear-gradient(135deg, #0a1f12, #0f2c19);
    display: grid; place-items: center;
    border: 1px solid var(--line-strong);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.product-hero-img::before {
    content: '🌿';
    position: absolute;
    font-size: 12rem;
    opacity: 0.08;
    transform: rotate(-15deg);
}
.product-hero-img .glyph {
    font-family: var(--font-graff);
    font-weight: 400;
    font-size: 6rem;
    color: var(--ds-1);
    text-shadow: 0 0 40px rgba(95, 255, 95, 0.7), 0 16px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    text-align: center;
    padding: 0 30px;
    line-height: 0.95;
}
.product-info h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 18px;
    font-family: var(--font-graff);
    font-weight: 400;
    color: var(--ds-1);
    text-shadow: 0 0 20px rgba(95, 255, 95, 0.4);
}
.product-info .price-big {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--grad-leaf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 22px 0;
    line-height: 1;
}
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
    display: flex; align-items: start; gap: 12px;
    padding: 8px 0;
    color: var(--muted);
}
.feature-list li::before {
    content: '✓';
    color: var(--ds-1);
    font-weight: 800;
    flex-shrink: 0;
}
.review-card {
    padding: 18px;
    background: rgba(95, 255, 95, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.review-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
}
.review-user { font-weight: 700; color: var(--text); }
.review-time { color: var(--dim); font-size: 0.82rem; }
.review-stars { color: #fde047; }

/* =====================================================================
   Cart / Checkout
   ===================================================================== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-top: 30px;
}
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: rgba(95, 255, 95, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.cart-thumb {
    width: 70px; height: 70px;
    border-radius: 14px;
    background: var(--grad-soft);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ds-1);
    font-weight: 800;
    font-family: var(--font-graff);
    font-size: 1.6rem;
    text-shadow: 0 0 12px rgba(95, 255, 95, 0.5);
}
.cart-item-name { font-weight: 700; }
.cart-item-meta { color: var(--muted); font-size: 0.85rem; }
.qty-input {
    width: 70px; height: 36px;
    background: rgba(95, 255, 95, 0.05);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 10px;
    font: inherit;
    text-align: center;
    padding: 0 8px;
}

.summary-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(95, 255, 95, 0.10), rgba(34, 197, 94, 0.04));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 50px -20px rgba(95, 255, 95, 0.25);
}
.summary-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    color: var(--muted);
}
.summary-row.total {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 8px;
}
.summary-row.total span:last-child {
    background: var(--grad-leaf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--font-display);
}

/* Payment options */
.pay-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.pay-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(95, 255, 95, 0.03);
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.pay-card input { display: none; }
.pay-card .pay-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(95, 255, 95, 0.08);
    display: grid; place-items: center;
    margin: 0 auto 10px;
    font-weight: 800;
    color: var(--ds-1);
}
.pay-card .pay-name { font-weight: 700; font-size: 0.9rem; }
.pay-card.active, .pay-card:hover {
    border-color: var(--ds-2);
    background: rgba(95, 255, 95, 0.10);
}
.pay-card.active .pay-icon { background: var(--grad-leaf); color: #06180a; }

/* =====================================================================
   Auth
   ===================================================================== */
.auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 60px 24px;
    position: relative;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    background: rgba(8, 17, 13, 0.78);
    backdrop-filter: blur(30px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), var(--shadow-pop);
    position: relative;
    overflow: hidden;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-leaf);
    box-shadow: 0 0 20px var(--ds-1);
}
.auth-card .brand { justify-content: center; margin-bottom: 8px; }
.auth-card h1 {
    font-size: 1.8rem;
    text-align: center;
    margin: 18px 0 6px;
    font-family: var(--font-graff);
    color: var(--ds-1);
    font-weight: 400;
}
.auth-card .sub { text-align: center; color: var(--muted); margin-bottom: 28px; }

.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.field input, .field select, .field textarea {
    width: 100%;
    height: 44px;
    background: rgba(95, 255, 95, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 0 14px;
    font: inherit;
    transition: all .2s;
}
.field textarea { height: auto; padding: 12px 14px; min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--ds-2);
    background: rgba(34, 197, 94, 0.08);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
.auth-foot {
    text-align: center;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}
.auth-foot a { color: var(--ds-1); font-weight: 700; }

/* =====================================================================
   Dashboard / Admin layouts
   ===================================================================== */
.app-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    position: relative;
}
.sidebar {
    background: rgba(8, 17, 13, 0.7);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--line);
    padding: 26px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
}
.sidebar .brand { padding: 0 8px 24px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.sidebar-section {
    color: var(--dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    padding: 18px 12px 8px;
}
.sidebar a.menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.93rem;
    margin-bottom: 4px;
    transition: all .2s;
}
.sidebar a.menu:hover { background: rgba(95, 255, 95, 0.06); color: var(--text); }
.sidebar a.menu.active {
    background: rgba(34, 197, 94, 0.18);
    color: var(--ds-1);
    box-shadow: inset 3px 0 0 var(--ds-1);
}
.sidebar a.menu svg { width: 18px; height: 18px; flex-shrink: 0; }

.app-main {
    padding: 30px 36px 60px;
    min-width: 0;
    z-index: 1;
}
.page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}
.page-head h1 {
    font-size: 2rem;
    font-family: var(--font-graff);
    font-weight: 400;
    color: var(--ds-1);
    text-shadow: 0 0 18px rgba(95, 255, 95, 0.4);
}
.page-head .sub { color: var(--muted); margin-top: 4px; }

/* Stat cards */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}
.stat-card {
    padding: 22px;
    background: var(--grad-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity .3s;
}
.stat-card:hover { border-color: var(--ds-2); }
.stat-card:hover::after { opacity: 0.6; }
.stat-card * { position: relative; z-index: 1; }
.stat-card .stat-label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 8px 0 4px;
}
.stat-card .stat-value.grad { background: var(--grad-leaf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ds-1);
    font-size: 0.8rem;
    font-weight: 700;
}
.stat-card .stat-trend.down { color: var(--err); }

/* Panel cards */
.panel {
    background: linear-gradient(180deg, rgba(95, 255, 95, 0.03), rgba(95, 255, 95, 0.005));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}
.panel-head h3 { font-size: 1.1rem; font-family: var(--font); font-weight: 700; }
.panel-body { padding: 8px 0; }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
    padding: 14px 22px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.table th {
    color: var(--dim);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.table td { font-size: 0.92rem; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(95, 255, 95, 0.03); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tag.ok      { background: rgba(95, 255, 95, 0.15); color: var(--ds-1); }
.tag.warn    { background: rgba(251, 191, 36, 0.15); color: var(--warn); }
.tag.err     { background: rgba(248, 113, 113, 0.15); color: var(--err); }
.tag.info    { background: rgba(96, 165, 250, 0.15); color: var(--info); }
.tag.pop     { background: rgba(95, 255, 95, 0.15); color: var(--ds-1); }
.tag.violet  { background: rgba(34, 197, 94, 0.18); color: #86efac; }
.tag.us      { background: rgba(239, 68, 68, 0.15); color: var(--us-red); }
.tag.ma      { background: rgba(198, 40, 40, 0.18); color: #ff9999; }

/* Mini chart bars */
.bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 180px;
    padding: 20px 22px;
}
.bars .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--ds-1), var(--ds-3));
    border-radius: 6px 6px 0 0;
    min-height: 4px;
    position: relative;
    transition: all .3s;
    box-shadow: 0 0 0 0 var(--ds-1);
}
.bars .bar:hover { transform: scaleY(1.05); transform-origin: bottom; box-shadow: 0 0 24px var(--ds-1); }
.bars .bar .label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dim);
    font-size: 0.7rem;
    white-space: nowrap;
}
.bars .bar .value {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity .2s;
}
.bars .bar:hover .value { opacity: 1; }

/* Wallet */
.wallet-card {
    padding: 36px;
    background:
        linear-gradient(135deg, #0a1f12 0%, #112619 50%, #1a3a24 100%),
        radial-gradient(circle at 70% 30%, rgba(95, 255, 95, 0.4), transparent 60%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
}
.wallet-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(95, 255, 95, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}
.wallet-card::after {
    content: '🌿';
    position: absolute;
    bottom: -30px; right: 30px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}
.wallet-card * { position: relative; z-index: 1; }
.wallet-card .label { color: var(--muted); font-size: 0.85rem; margin-bottom: 8px; font-weight: 600; }
.wallet-card .balance {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ds-1);
    text-shadow: 0 0 30px rgba(95, 255, 95, 0.5);
}
.wallet-card .actions { display: flex; gap: 10px; margin-top: 20px; }

/* Flash messages */
.flash-stack {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 200;
    display: flex; flex-direction: column; gap: 10px;
}
.flash {
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    color: var(--text);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn .3s cubic-bezier(.34, 1.56, .64, 1);
}
.flash.success { border-left: 3px solid var(--ds-1); }
.flash.error   { border-left: 3px solid var(--err); }
.flash.warning { border-left: 3px solid var(--warn); }
@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Footer */
.footer {
    margin-top: 100px;
    padding: 50px 0 30px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    position: relative;
    z-index: 1;
}
.footer .brand { justify-content: center; margin-bottom: 14px; }
.footer-links {
    display: flex; gap: 24px;
    justify-content: center;
    margin: 18px 0;
    flex-wrap: wrap;
}
.footer-links a:hover { color: var(--ds-1); }
.footer .legal {
    font-size: 0.78rem;
    color: var(--dim);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.5;
}

/* Empty state */
.empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}
.empty .glyph {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.4;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .summary-card { position: static; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-cta, .hero-flags { justify-content: center; }
    .hero-visual { max-width: 320px; }
}
@media (max-width: 860px) {
    .nav-links { display: none; }
    .search-box { display: none; }
    .app-layout { grid-template-columns: 1fr; }
    .sidebar {
        position: fixed;
        left: -280px;
        height: 100vh;
        width: 260px;
        transition: left .3s;
    }
    .sidebar.open { left: 0; }
    .app-main { padding: 20px; }
    .trust-bar { gap: 18px; padding: 18px; }
    .trust-item strong { font-size: 1.4rem; }
}
@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero { padding: 50px 0 30px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-thumb .glyph { font-size: 2rem; }
    .product-card h3 { font-size: 0.95rem; }
    .stat-card .stat-value { font-size: 1.6rem; }
    .footer-links { gap: 14px; }
}

/* Utility */
.row { display: flex; align-items: center; gap: 12px; }
.between { justify-content: space-between; }
.gap-sm { gap: 6px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex-1 { flex: 1; }
.hide-mobile { display: initial; }
@media (max-width: 720px) { .hide-mobile { display: none; } }
