/* ============================
   RESET & ROOT
   ============================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#ffffff;--bg2:#f8fafc;--bg3:#f1f5f9;
  --card:#ffffff;--cb:rgba(59,130,246,.2);
  --primary:#2563eb;--primary-dark:#1d4ed8;
  --accent:#6366f1;
  --text:#0f172a;--muted:#475569;--dim:#64748b;
  --success:#16a34a;--danger:#dc2626;--gold:#d97706;
  --r:12px;--rl:20px;
  --shadow:0 4px 24px rgba(0,0,0,.08);
  --tr:all .2s ease;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;background:var(--bg);color:var(--text);line-height:1.6;min-height:100vh}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:inherit}
input,select,textarea{font-family:inherit}
p{color:var(--muted)}

/* ============================
   TYPOGRAPHY
   ============================ */
h1{font-size:clamp(2rem,5vw,3.5rem);font-weight:700;line-height:1.15}
h2{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:700;line-height:1.2}
h3{font-size:1.25rem;font-weight:600}
h4{font-size:.95rem;font-weight:700;text-transform:uppercase;letter-spacing:1px}
.gradient-text{background:linear-gradient(135deg,#2563eb,#7c3aed);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* ============================
   LAYOUT
   ============================ */
.container{max-width:1280px;margin:0 auto;padding:0 1.5rem}
.container-sm{max-width:820px;margin:0 auto;padding:0 1.5rem}

/* ============================
   TOPBAR
   ============================ */
.topbar{background:#2563eb;border-bottom:none;padding:.4rem 0;font-size:.78rem;color:rgba(255,255,255,.9)}
.topbar a{color:rgba(255,255,255,.9)}
.topbar a:hover{color:var(--primary)}
.topbar-inner{max-width:1280px;margin:0 auto;padding:0 1.5rem;display:flex;justify-content:space-between;align-items:center}

/* ============================
   NAVBAR
   ============================ */
.navbar{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,.97);backdrop-filter:blur(16px);border-bottom:1px solid rgba(0,0,0,.08);height:84px;display:flex;align-items:center;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.navbar-inner{max-width:1280px;margin:0 auto;padding:0 1.5rem;width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo img{filter:none;}
.nav-logo{display:flex;align-items:center;gap:.6rem;font-size:1.2rem;font-weight:700;flex-shrink:0}
.nav-logo img{height:34px;width:auto}
.nav-links{display:flex;align-items:center;gap:1.75rem;list-style:none}
.nav-links a{color:var(--muted);font-size:.875rem;font-weight:500;transition:var(--tr);position:relative}
.nav-links a:hover,.nav-links a.active{color:var(--text)}
.nav-links a.active::after{content:'';position:absolute;bottom:-4px;left:0;right:0;height:2px;background:var(--primary);border-radius:2px}
.nav-right{display:flex;align-items:center;gap:.75rem}
.btn-cart{position:relative;background:var(--bg3);border:1px solid var(--cb);border-radius:8px;padding:.45rem .9rem;color:var(--text);display:flex;align-items:center;gap:.4rem;font-size:.85rem;font-weight:600;transition:var(--tr);cursor:pointer}
.btn-cart:hover{border-color:var(--primary);background:var(--bg2)}
.cart-count{position:absolute;top:-7px;right:-7px;background:var(--primary);color:#fff;width:17px;height:17px;border-radius:50%;font-size:.6rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:4px;cursor:pointer}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--tr)}
@media(max-width:768px){
  .nav-links{display:none;position:fixed;inset:84px 0 0;background:var(--bg2);flex-direction:column;align-items:flex-start;padding:2rem 1.5rem;gap:1.25rem;z-index:99}
  .nav-links.nav-open{display:flex}
  .nav-hamburger{display:flex}
}

/* ============================
   BUTTONS
   ============================ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.65rem 1.5rem;border-radius:8px;font-weight:600;font-size:.875rem;border:none;transition:var(--tr);cursor:pointer;white-space:nowrap}
.btn-primary{background:linear-gradient(135deg,#2563eb,#3b82f6);color:#fff;box-shadow:0 4px 15px rgba(37,99,235,.35)}
.btn-primary:hover{background:linear-gradient(135deg,#1d4ed8,#2563eb);box-shadow:0 6px 20px rgba(37,99,235,.5);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--primary);border:1px solid var(--primary)}
.btn-outline:hover{background:rgba(59,130,246,.1)}
.btn-ghost{background:var(--bg3);color:var(--text);border:1px solid var(--cb)}
.btn-ghost:hover{border-color:var(--primary);background:var(--bg2)}
.btn-danger{background:var(--danger);color:#fff;border:none}
.btn-danger:hover{background:#dc2626}
.btn-lg{padding:.85rem 2rem;font-size:1rem;border-radius:10px}
.btn-sm{padding:.38rem .9rem;font-size:.78rem;border-radius:6px}
.btn-full{width:100%}
.btn-icon{background:none;border:none;padding:.35rem;color:var(--muted);transition:var(--tr);font-size:1rem;cursor:pointer}
.btn-icon:hover{color:var(--danger)}

/* ============================
   HERO
   ============================ */
.hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;padding:8rem 0 4rem;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(59,130,246,.1) 0%,transparent 70%);pointer-events:none}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(59,130,246,.1);border:1px solid rgba(59,130,246,.3);border-radius:20px;padding:.35rem .85rem;font-size:.78rem;font-weight:600;color:#2563eb;margin-bottom:1.25rem}
.hero-badge::before{content:'';width:6px;height:6px;background:#2563eb;border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}
.hero-title{margin-bottom:1rem}
.hero-desc{font-size:1.05rem;color:var(--muted);max-width:520px;margin-bottom:2rem;line-height:1.75}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-stats{display:flex;gap:2rem;padding-top:1.5rem;border-top:1px solid rgba(0,0,0,.07)}
.stat-value{font-size:1.5rem;font-weight:700}
.stat-label{font-size:.72rem;color:var(--muted);margin-top:.1rem}
.hero-image{display:flex;align-items:center;justify-content:center;position:relative}
.hero-image-glow{position:absolute;inset:-60px;background:radial-gradient(circle,rgba(59,130,246,.12) 0%,transparent 70%);border-radius:50%}
.hero-featured-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:2rem;box-shadow:var(--shadow);text-align:center;position:relative;z-index:1;max-width:340px}
.hero-featured-card img{width:190px;height:190px;object-fit:contain;margin:0 auto 1rem}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar{background:var(--bg2);border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06);padding:1.5rem 0}
.trust-items{display:flex;justify-content:center;gap:3.5rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:.75rem}
.trust-icon{width:40px;height:40px;border-radius:10px;background:rgba(59,130,246,.1);border:1px solid rgba(59,130,246,.2);display:flex;align-items:center;justify-content:center;font-size:1.1rem}
.trust-text strong{font-size:.9rem;font-weight:700;color:var(--text);display:block}
.trust-text span{font-size:.72rem;color:var(--muted)}

/* ============================
   SECTIONS
   ============================ */
.section{padding:5rem 0}
.section-sm{padding:3rem 0}
.section-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.5rem;flex-wrap:wrap;gap:1rem}
.section-label{display:inline-block;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--primary);margin-bottom:.5rem}
.section-title{font-size:clamp(1.4rem,2.5vw,1.9rem);margin-bottom:.35rem}
.section-desc{color:var(--muted);max-width:560px}

/* ============================
   PRODUCT CARDS
   ============================ */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:1.25rem}
.product-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--r);overflow:hidden;transition:var(--tr);display:flex;flex-direction:column;cursor:pointer}
.product-card:hover{transform:translateY(-4px);border-color:rgba(59,130,246,.4);box-shadow:0 8px 32px rgba(37,99,235,.15)}
.product-img-wrap{background:linear-gradient(135deg,#f8fafc,#eef2f7);display:flex;align-items:center;justify-content:center;padding:1.5rem;position:relative;min-height:190px;border-bottom:1px solid rgba(0,0,0,.05)}
.product-img-wrap img{width:130px;height:130px;object-fit:contain;transition:transform .3s ease}
.product-card:hover .product-img-wrap img{transform:scale(1.06)}
.product-badge{position:absolute;top:.65rem;left:.65rem;background:var(--primary);color:#fff;font-size:.62rem;font-weight:700;text-transform:uppercase;padding:.2rem .55rem;border-radius:4px;letter-spacing:.5px}
.badge-best-seller{background:#7c3aed}
.badge-hot{background:var(--danger)}
.badge-new{background:var(--success)}
.badge-popular{background:var(--gold);color:#000}
.product-info{padding:.85rem 1.1rem 1.1rem;flex:1;display:flex;flex-direction:column}
.product-category{font-size:.67rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--primary);margin-bottom:.3rem}
.product-name{font-size:.95rem;font-weight:700;color:var(--text);margin-bottom:.4rem;line-height:1.3}
.product-desc{font-size:.77rem;color:var(--dim);line-height:1.5;margin-bottom:.85rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;flex:1}
.product-footer{display:flex;align-items:center;justify-content:space-between;padding-top:.7rem;border-top:1px solid rgba(0,0,0,.06)}
.product-price{font-size:1.05rem;font-weight:700;color:var(--text)}
.price-size{font-size:.68rem;font-weight:400;color:var(--muted);display:block;margin-top:.08rem}

/* ============================
   FILTER BAR
   ============================ */
.filter-bar{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2rem}
.filter-btn{padding:.4rem .95rem;border-radius:20px;font-size:.78rem;font-weight:600;background:var(--bg2);border:1px solid var(--cb);color:var(--muted);cursor:pointer;transition:var(--tr)}
.filter-btn:hover,.filter-btn.active{background:var(--primary);border-color:var(--primary);color:#fff}

/* ============================
   PAGE HEADER
   ============================ */
.page-header{padding:7rem 0 3rem;background:linear-gradient(180deg,rgba(59,130,246,.06) 0%,transparent 100%);border-bottom:1px solid rgba(0,0,0,.06)}
.page-header h1{margin-bottom:.4rem}
.breadcrumb{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:var(--muted);padding:.75rem 0 0}
.breadcrumb a{color:var(--dim);transition:var(--tr)}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb .sep{color:var(--dim)}

/* ============================
   PRODUCT DETAIL
   ============================ */
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;margin-top:3rem}
.detail-img-box{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:3rem;display:flex;align-items:center;justify-content:center;position:sticky;top:104px}
.detail-img-box img{width:280px;height:280px;object-fit:contain;max-width:100%}
.detail-info{display:flex;flex-direction:column;gap:1.2rem}
.detail-cat{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--primary)}
.detail-name{font-size:clamp(1.75rem,4vw,2.4rem);font-weight:700;line-height:1.2}
.detail-price{font-size:2rem;font-weight:700}
.detail-size{font-size:.85rem;font-weight:400;color:var(--muted);margin-left:.4rem}
.detail-desc{color:var(--muted);line-height:1.8;font-size:.925rem}
.detail-list{background:var(--bg2);border:1px solid rgba(0,0,0,.07);border-radius:var(--r);padding:1.1rem 1.4rem;list-style:none;display:flex;flex-direction:column;gap:.55rem}
.detail-list li{display:flex;align-items:center;gap:.55rem;font-size:.85rem;color:var(--muted)}
.detail-list li::before{content:'✓';color:var(--success);font-weight:700;font-size:.78rem}
.qty-row{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.qty-selector{display:flex;align-items:center;background:var(--bg2);border:1px solid var(--cb);border-radius:8px;overflow:hidden}
.qty-btn{background:none;border:none;padding:.6rem 1rem;color:var(--text);font-size:1.1rem;font-weight:600;cursor:pointer;transition:var(--tr)}
.qty-btn:hover{background:rgba(59,130,246,.1);color:var(--primary)}
.qty-val{padding:.6rem 1.1rem;font-weight:700;font-size:1rem;min-width:44px;text-align:center;color:var(--text)}

/* ============================
   CART
   ============================ */
.cart-layout{display:grid;grid-template-columns:1fr 340px;gap:2rem;align-items:start}
.cart-items{display:flex;flex-direction:column;gap:1rem}
.cart-item{background:var(--card);border:1px solid var(--cb);border-radius:var(--r);padding:1.25rem;display:flex;gap:1.1rem;align-items:center}
.cart-item-img{width:76px;height:76px;object-fit:contain;background:var(--bg2);border-radius:8px;padding:.4rem;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-weight:600;font-size:.9rem;margin-bottom:.2rem}
.cart-item-size{font-size:.75rem;color:var(--muted);margin-bottom:.6rem}
.cart-item-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.cart-item-price{font-weight:700;font-size:.95rem}
.order-summary{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:1.6rem;position:sticky;top:104px}
.order-summary h3{margin-bottom:1.25rem}
.sum-row{display:flex;justify-content:space-between;padding:.45rem 0;font-size:.875rem;color:var(--muted);border-bottom:1px solid rgba(0,0,0,.06)}
.sum-row.total{font-weight:700;font-size:1.05rem;color:var(--text);border-bottom:none;padding-top:.85rem;margin-top:.4rem}

/* ============================
   CHECKOUT
   ============================ */
.checkout-layout{display:grid;grid-template-columns:1fr 360px;gap:2rem;align-items:start}
.checkout-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:2rem;margin-bottom:1.5rem}
.checkout-card h3{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid rgba(0,0,0,.07)}
.form-group{margin-bottom:1.2rem}
.form-label{display:block;font-size:.82rem;font-weight:600;color:var(--text);margin-bottom:.38rem}
.form-input{width:100%;padding:.68rem 1rem;background:var(--bg2);border:1px solid rgba(0,0,0,.10);border-radius:8px;color:var(--text);font-size:.875rem;transition:var(--tr);outline:none}
.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(59,130,246,.15)}
.form-input::placeholder{color:var(--dim)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-check{display:flex;align-items:flex-start;gap:.7rem;margin-bottom:1rem}
.form-check input[type=checkbox]{margin-top:3px;accent-color:var(--primary);width:15px;height:15px;flex-shrink:0}
.form-check label{font-size:.85rem;color:var(--muted);line-height:1.5;cursor:pointer}
.stripe-element{background:var(--bg2);border:1px solid rgba(0,0,0,.10);border-radius:8px;padding:.75rem 1rem;margin-bottom:.85rem;min-height:44px}

/* ============================
   PAYMENT METHODS (ZELLE / CRYPTO)
   ============================ */
.pay-tab{flex:1;min-width:120px;padding:.7rem 1rem;border-radius:10px;border:1px solid var(--cb);background:var(--bg2);color:var(--muted);font-weight:600;font-size:.9rem;cursor:pointer;transition:var(--tr)}
.pay-tab:hover{border-color:var(--primary)}
.pay-tab.active{border-color:var(--primary);background:rgba(37,99,235,.08);color:var(--primary)}
.crypto-addr{font-family:monospace;font-size:.82rem;word-break:break-all;background:#fff;border:1px solid rgba(0,0,0,.12);border-radius:8px;padding:.6rem .75rem;color:var(--text)}
.crypto-status{display:flex;align-items:center;gap:.6rem;padding:.85rem 1rem;border-radius:10px;font-size:.88rem;font-weight:600;margin-top:1rem}
.crypto-status.waiting{background:rgba(217,119,6,.1);color:#b45309}
.crypto-status.confirmed{background:rgba(22,163,74,.12);color:#15803d}
.crypto-status.failed{background:rgba(220,38,38,.1);color:#b91c1c}
.zelle-box{display:flex;gap:1.5rem;align-items:center;flex-wrap:wrap;background:var(--bg2);border:1px solid var(--cb);border-radius:var(--r);padding:1.5rem;margin-bottom:1.25rem}
.zelle-qr{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:12px;padding:12px;flex-shrink:0;line-height:0;box-shadow:0 4px 16px rgba(0,0,0,.06)}
.zelle-qr img,.zelle-qr canvas{display:block;width:200px;height:200px;border-radius:4px}
.zelle-details{flex:1;min-width:210px;display:flex;flex-direction:column;gap:.55rem}
.zelle-logo{display:inline-flex;align-items:center;gap:.4rem;background:#6d1ed4;color:#fff;font-weight:800;font-size:.82rem;letter-spacing:.3px;padding:.32rem .75rem;border-radius:7px;width:fit-content}
.zelle-amount{font-size:1.9rem;font-weight:800;color:#6d1ed4;line-height:1.1}
.zelle-row{font-size:.86rem;color:var(--muted);display:flex;justify-content:space-between;gap:1rem;border-bottom:1px solid rgba(0,0,0,.06);padding-bottom:.4rem}
.zelle-row:last-child{border-bottom:none}
.zelle-row strong{color:var(--text);font-weight:600;text-align:right;word-break:break-word}
.zelle-steps{counter-reset:zs;list-style:none;display:flex;flex-direction:column;gap:.65rem;margin:1.4rem 0;padding:0}
.zelle-steps li{position:relative;padding-left:2.1rem;font-size:.86rem;color:var(--muted);line-height:1.5}
.zelle-steps li::before{counter-increment:zs;content:counter(zs);position:absolute;left:0;top:-1px;width:23px;height:23px;border-radius:50%;background:rgba(109,30,212,.12);color:#6d1ed4;font-weight:700;font-size:.74rem;display:flex;align-items:center;justify-content:center}

/* ============================
   AUTH PAGES
   ============================ */
.auth-page{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem;background:var(--bg);background-image:radial-gradient(ellipse 60% 40% at 50% 0%,rgba(59,130,246,.07) 0%,transparent 60%)}
.auth-card{background:var(--bg2);border:1px solid var(--cb);border-radius:var(--rl);padding:2.5rem;width:100%;max-width:440px;box-shadow:var(--shadow)}
.auth-logo{text-align:center;margin-bottom:2rem;display:flex;flex-direction:column;align-items:center;gap:.5rem}
.auth-logo img{height:44px}
.auth-logo span{font-size:1.2rem;font-weight:700}
.auth-title{text-align:center;font-size:1.4rem;font-weight:700;margin-bottom:.35rem}
.auth-sub{text-align:center;color:var(--muted);font-size:.85rem;margin-bottom:2rem}
.auth-divider{display:flex;align-items:center;gap:1rem;margin:1.5rem 0}
.auth-divider::before,.auth-divider::after{content:'';flex:1;height:1px;background:rgba(0,0,0,.10)}
.auth-divider span{font-size:.72rem;color:var(--dim)}
.auth-footer{text-align:center;margin-top:1.4rem;font-size:.85rem;color:var(--muted)}
.auth-footer a{color:var(--primary)}

/* ============================
   MODAL
   ============================ */
.modal-overlay{position:fixed;inset:0;z-index:1000;background:rgba(0,0,0,.82);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;padding:1rem}
.modal-overlay.hidden{display:none}
.modal{background:var(--bg2);border:1px solid var(--cb);border-radius:var(--rl);padding:2.25rem;max-width:580px;width:100%;max-height:88vh;display:flex;flex-direction:column;gap:1.4rem;box-shadow:0 20px 60px rgba(0,0,0,.7)}
.modal-hdr{display:flex;align-items:center;gap:1rem}
.modal-icon{width:46px;height:46px;border-radius:12px;background:rgba(239,68,68,.15);border:1px solid rgba(239,68,68,.3);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.modal-title{font-size:1.2rem;font-weight:700}
.modal-subtitle{font-size:.82rem;color:var(--muted);margin-top:.2rem}
.modal-body{flex:1;overflow-y:auto}
.disclaimer-text{background:rgba(239,68,68,.04);border:1px solid rgba(239,68,68,.15);border-radius:8px;padding:1.2rem;font-size:.85rem;color:var(--muted);line-height:1.75;max-height:260px;overflow-y:auto}
.disclaimer-text h4{color:var(--text);margin-bottom:.65rem;font-size:.875rem;font-weight:700}
.disclaimer-text p{margin-bottom:.65rem}
.disclaimer-text ul{padding-left:1.2rem;margin-bottom:.65rem}
.disclaimer-text li{margin-bottom:.3rem}
.modal-ftr{display:flex;flex-direction:column;gap:.7rem;padding-top:1rem;border-top:1px solid rgba(0,0,0,.07)}

/* ============================
   CONTACT
   ============================ */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.contact-info-list{display:flex;flex-direction:column;gap:1.5rem;margin-top:1.75rem}
.contact-info-item{display:flex;gap:.9rem;align-items:flex-start}
.contact-icon{width:42px;height:42px;border-radius:10px;background:rgba(59,130,246,.1);border:1px solid rgba(59,130,246,.2);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
.contact-info-item strong{display:block;font-size:.875rem;margin-bottom:.15rem;color:var(--text)}
.contact-info-item span{font-size:.82rem;color:var(--muted)}

/* ============================
   FOOTER
   ============================ */
.footer{background:var(--bg2);border-top:1px solid rgba(0,0,0,.06);padding:4rem 0 2rem;margin-top:4rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo{display:flex;align-items:center;gap:.5rem;font-size:1.1rem;font-weight:700;margin-bottom:.85rem}
.footer-logo img{height:30px}
.footer-desc{font-size:.82rem;color:var(--dim);line-height:1.6;max-width:260px}
.footer-contact{margin-top:1.1rem;display:flex;flex-direction:column;gap:.35rem}
.footer-contact a{font-size:.8rem;color:var(--dim);transition:var(--tr)}
.footer-contact a:hover{color:var(--primary)}
.footer-col h4{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:1.1rem;color:var(--text)}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.footer-links li a{font-size:.82rem;color:var(--dim);transition:var(--tr)}
.footer-links li a:hover{color:var(--primary)}
.footer-bottom{padding-top:2rem;border-top:1px solid rgba(0,0,0,.06);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:.75rem;color:var(--dim)}
.footer-legal{display:flex;gap:1.25rem}
.footer-legal a{font-size:.75rem;color:var(--dim);transition:var(--tr)}
.footer-legal a:hover{color:var(--primary)}

/* ============================
   NOTIFICATION
   ============================ */
.notification{position:fixed;bottom:1.5rem;right:1.5rem;z-index:9999;background:var(--success);color:#fff;padding:.8rem 1.2rem;border-radius:10px;font-size:.85rem;font-weight:600;box-shadow:0 4px 20px rgba(34,197,94,.4);transform:translateY(100px);opacity:0;transition:all .3s ease;pointer-events:none}
.notification.show{transform:translateY(0);opacity:1}
.notification.error{background:var(--danger);box-shadow:0 4px 20px rgba(239,68,68,.4)}

/* ============================
   EMPTY STATE & SUCCESS
   ============================ */
.empty-state{text-align:center;padding:4rem 2rem}
.empty-state-icon{font-size:3.5rem;margin-bottom:1rem}
.empty-state h3{font-size:1.2rem;margin-bottom:.5rem}
.empty-state p{color:var(--muted);margin-bottom:1.75rem}
.success-page{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem}
.success-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:3rem;max-width:480px;text-align:center}
.success-icon{width:72px;height:72px;border-radius:50%;background:rgba(34,197,94,.15);border:2px solid rgba(34,197,94,.35);display:flex;align-items:center;justify-content:center;font-size:2.2rem;margin:0 auto 1.5rem}

/* ============================
   QUESTIONNAIRE
   ============================ */
.question-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:2rem;margin-bottom:1.5rem}
.question-card h3{margin-bottom:1.25rem;padding-bottom:.85rem;border-bottom:1px solid rgba(0,0,0,.07)}
.radio-group,.check-group{display:flex;flex-direction:column;gap:.65rem}
.radio-opt,.check-opt{display:flex;align-items:center;gap:.75rem;padding:.65rem .9rem;background:var(--bg2);border:1px solid rgba(0,0,0,.07);border-radius:8px;cursor:pointer;transition:var(--tr);font-size:.875rem;color:var(--muted)}
.radio-opt:hover,.check-opt:hover{border-color:var(--primary);color:var(--text)}
.radio-opt input,.check-opt input{accent-color:var(--primary)}
textarea.form-input{resize:vertical;min-height:100px}

/* ============================
   ACCOUNT
   ============================ */
.account-grid{display:grid;grid-template-columns:240px 1fr;gap:2rem;align-items:start}
.account-sidebar{background:var(--card);border:1px solid var(--cb);border-radius:var(--rl);padding:1.5rem;position:sticky;top:104px}
.account-avatar{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--accent));display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;margin:0 auto 1rem}
.account-nav{list-style:none;display:flex;flex-direction:column;gap:.25rem;margin-top:1.25rem}
.account-nav li a{display:flex;align-items:center;gap:.65rem;padding:.6rem .75rem;border-radius:8px;font-size:.875rem;color:var(--muted);transition:var(--tr)}
.account-nav li a:hover,.account-nav li a.active{background:rgba(59,130,246,.1);color:var(--text)}
.info-card{background:var(--card);border:1px solid var(--cb);border-radius:var(--r);padding:1.5rem;margin-bottom:1.25rem}
.info-card h3{margin-bottom:1.25rem;font-size:1rem}
.order-row{display:flex;justify-content:space-between;align-items:center;padding:.85rem 0;border-bottom:1px solid rgba(0,0,0,.06);font-size:.875rem}
.order-row:last-child{border-bottom:none}
.status-badge{padding:.2rem .6rem;border-radius:4px;font-size:.7rem;font-weight:700}
.status-processing{background:rgba(245,158,11,.15);color:var(--gold)}
.status-shipped{background:rgba(59,130,246,.15);color:#60a5fa}
.status-delivered{background:rgba(34,197,94,.15);color:var(--success)}

/* ============================
   RESPONSIVE
   ============================ */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr}
  .hero-image{display:none}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .cart-layout{grid-template-columns:1fr}
  .checkout-layout{grid-template-columns:1fr}
  .product-detail-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .account-grid{grid-template-columns:1fr}
  .detail-img-box{position:static}
}
@media(max-width:640px){
  .products-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .hero-stats{gap:1.25rem}
  .trust-items{gap:1.5rem}
  .footer-grid{grid-template-columns:1fr;gap:1.5rem}
  .form-row{grid-template-columns:1fr}
  .topbar-inner{flex-direction:column;gap:.2rem;text-align:center}
}
