*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#060606;
  --bg-elevated:#0e0e0e;
  --bg-card:rgba(255,255,255,0.03);
  --bg-card-hover:rgba(255,255,255,0.06);
  --text:#e8e8e8;
  --text-muted:#666;
  --text-dim:#2a2a2a;
  --border:rgba(255,255,255,0.08);
  --border-hover:rgba(255,255,255,0.25);
  --accent:#fff;
  --accent-light:#bbb;
  --glow:rgba(255,255,255,0.18);
  --glow-strong:rgba(255,255,255,0.35);
  --green:#4ade80;
  --red:#f87171;
  --radius:8px;
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Inter',sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
body::before{content:'';position:fixed;inset:0;background-image:linear-gradient(rgba(255,255,255,0.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.015) 1px,transparent 1px);background-size:60px 60px;pointer-events:none;z-index:0}
::selection{background:#fff;color:#000}
::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.1);border-radius:2px}

/* AMBIENT */
.ambient{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden}
.ambient-blob{position:absolute;border-radius:50%;filter:blur(130px);opacity:0}
.ab1{width:600px;height:600px;top:-150px;left:-150px;background:#fff;animation:blobDrift 22s ease-in-out infinite}
.ab2{width:500px;height:500px;bottom:5%;right:-100px;background:#fff;animation:blobDrift 28s ease-in-out infinite reverse}
.ab3{width:350px;height:350px;top:45%;left:35%;background:#ccc;animation:blobDrift 18s ease-in-out infinite 4s}
@keyframes blobDrift{0%,100%{transform:translate(0,0) scale(1);opacity:0.035}50%{transform:translate(30px,-20px) scale(1.03);opacity:0.05}}

/* NAVBAR */
.navbar{position:fixed;top:0;width:100%;z-index:1000;backdrop-filter:blur(24px) saturate(180%);-webkit-backdrop-filter:blur(24px) saturate(180%);background:rgba(6,6,6,0.88);border-bottom:1px solid var(--border);transition:background .3s}
.nav-container{max-width:1300px;margin:0 auto;padding:0 1.5rem;height:64px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.nav-logo img{width:32px;height:32px;border-radius:6px;object-fit:cover}
.nav-logo-text{font-family:'Bebas Neue',cursive;font-size:1.4rem;font-weight:400;color:#fff;text-shadow:0 0 20px rgba(255,255,255,.5),0 0 40px rgba(255,255,255,.2);letter-spacing:.08em}
.nav-links{display:flex;align-items:center;gap:.2rem}
@media(max-width:768px){.nav-links{display:none}}
.nav-link{color:var(--text-muted);text-decoration:none;font-size:.8rem;font-weight:500;padding:.4rem .8rem;border-radius:var(--radius);transition:color .2s,background .2s;letter-spacing:.01em}
.nav-link:hover,.nav-link.active{color:var(--text);background:rgba(255,255,255,0.05)}
.nav-cta{background:#fff!important;color:#000!important;font-weight:700;box-shadow:0 0 18px rgba(255,255,255,.25)}
.nav-cta:hover{background:#ddd!important;box-shadow:0 0 28px rgba(255,255,255,.4)!important}
.mobile-btn{display:none;background:none;border:1px solid var(--border);color:var(--text-muted);width:38px;height:38px;border-radius:var(--radius);cursor:pointer;align-items:center;justify-content:center;transition:border-color .2s,color .2s}
@media(max-width:768px){.mobile-btn{display:flex}}
.mobile-btn:hover{border-color:#fff;color:#fff}
.mobile-menu{display:none;background:rgba(6,6,6,.98);border-top:1px solid var(--border);padding:.8rem 1.5rem 1.5rem}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:.7rem 0;font-size:.9rem;color:var(--text-muted);text-decoration:none;border-bottom:1px solid var(--border);transition:color .2s}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a:hover{color:#fff}

/* PAGE WRAP */
.page-wrap{position:relative;z-index:1}

/* HERO */
.hero{min-height:100svh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:8rem 1.5rem 5rem;position:relative;overflow:hidden}
.hero-spotlight{position:absolute;top:50%;left:50%;transform:translate(-50%,-55%);width:900px;height:600px;background:radial-gradient(ellipse 50% 40% at 50% 50%,rgba(255,255,255,0.055) 0%,transparent 65%);pointer-events:none;animation:spotPulse 7s ease-in-out infinite}
@keyframes spotPulse{0%,100%{opacity:1;transform:translate(-50%,-55%) scale(1)}50%{opacity:.7;transform:translate(-50%,-55%) scale(1.07)}}
.hero-badge{display:inline-flex;align-items:center;gap:.45rem;border:1px solid rgba(255,255,255,.15);border-radius:99px;padding:.3rem .9rem;font-size:.72rem;font-weight:600;color:#aaa;letter-spacing:.07em;text-transform:uppercase;margin-bottom:1.8rem;background:rgba(255,255,255,.04);backdrop-filter:blur(8px)}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 8px var(--green);animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero-banner{width:min(640px,90%);border-radius:12px;overflow:hidden;margin-bottom:2.5rem;border:1px solid rgba(255,255,255,.1);box-shadow:0 0 60px rgba(255,255,255,.05)}
.hero-banner img{width:100%;display:block;object-fit:cover;max-height:240px}
.hero-title{font-family:'Bebas Neue',cursive;font-size:clamp(5rem,14vw,10rem);font-weight:400;line-height:1;letter-spacing:.04em;margin-bottom:1.2rem;color:#fff;text-shadow:0 0 40px rgba(255,255,255,.4),0 0 80px rgba(255,255,255,.15),0 0 120px rgba(255,255,255,.05)}
.hero-tagline{font-size:clamp(1rem,2vw,1.2rem);color:var(--text-muted);max-width:520px;margin:0 auto 2.5rem;line-height:1.7}
.hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.6rem;border-radius:var(--radius);font-family:'Inter',sans-serif;font-size:.88rem;font-weight:600;text-decoration:none;cursor:pointer;border:none;transition:all .25s;letter-spacing:.02em}
.btn-primary{background:#fff;color:#000;box-shadow:0 0 20px rgba(255,255,255,.3),0 0 40px rgba(255,255,255,.1)}
.btn-primary:hover{background:#ddd;box-shadow:0 0 30px rgba(255,255,255,.5),0 0 60px rgba(255,255,255,.2);transform:translateY(-1px)}
.btn-outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.25);box-shadow:0 0 12px rgba(255,255,255,.06)}
.btn-outline:hover{border-color:#fff;box-shadow:0 0 20px rgba(255,255,255,.2);transform:translateY(-1px)}
.btn-ghost{background:rgba(255,255,255,.04);color:#aaa;border:1px solid var(--border)}
.btn-ghost:hover{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.2)}
.btn-green{background:transparent;color:var(--green);border:1px solid rgba(74,222,128,.35);box-shadow:0 0 12px rgba(74,222,128,.12)}
.btn-green:hover{background:rgba(74,222,128,.08);box-shadow:0 0 24px rgba(74,222,128,.3);border-color:var(--green)}
.btn-red{background:transparent;color:var(--red);border:1px solid rgba(248,113,113,.35);box-shadow:0 0 12px rgba(248,113,113,.12)}
.btn-red:hover{background:rgba(248,113,113,.08);box-shadow:0 0 24px rgba(248,113,113,.3);border-color:var(--red)}
.btn-green-solid{background:rgba(74,222,128,.1);color:var(--green);border:1px solid rgba(74,222,128,.4);box-shadow:0 0 20px rgba(74,222,128,.15)}
.btn-green-solid:hover{background:rgba(74,222,128,.18);box-shadow:0 0 35px rgba(74,222,128,.35);transform:translateY(-1px)}
.btn-red-solid{background:rgba(248,113,113,.1);color:var(--red);border:1px solid rgba(248,113,113,.4);box-shadow:0 0 20px rgba(248,113,113,.15)}
.btn-red-solid:hover{background:rgba(248,113,113,.18);box-shadow:0 0 35px rgba(248,113,113,.35);transform:translateY(-1px)}

/* SECTIONS */
.section{padding:5rem 0}
.container{max-width:1300px;margin:0 auto;padding:0 1.5rem}
.section-eyebrow{display:inline-flex;align-items:center;gap:.4rem;font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.8rem}
.section-eyebrow::before{content:'';width:16px;height:1px;background:rgba(255,255,255,.3)}
.section-heading{font-family:'Bebas Neue',cursive;font-size:clamp(2rem,5vw,3.2rem);font-weight:400;letter-spacing:.05em;color:#fff;text-shadow:0 0 30px rgba(255,255,255,.25),0 0 60px rgba(255,255,255,.08);line-height:1.1;margin-bottom:.8rem}
.section-sub{color:var(--text-muted);font-size:.95rem;max-width:540px;margin:0 auto;line-height:1.7}
.section-header{text-align:center;margin-bottom:3.5rem}

/* FEATURED PRODUCTS */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
@media(max-width:1024px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.products-grid{grid-template-columns:1fr}}
.product-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:1.5rem;cursor:pointer;transition:all .3s;position:relative;overflow:hidden;text-decoration:none;display:block;color:inherit}
.product-card::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(255,255,255,.05) 0%,transparent 60%);opacity:0;transition:opacity .3s}
.product-card:hover{border-color:rgba(255,255,255,.22);background:var(--bg-card-hover);transform:translateY(-2px);box-shadow:0 8px 40px rgba(255,255,255,.07)}
.product-card:hover::before{opacity:1}
.product-cat{font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.6rem}
.product-name{font-family:'Inter',sans-serif;font-size:.95rem;font-weight:700;color:#fff;margin-bottom:.4rem;line-height:1.3}
.product-price{font-family:'Inter',sans-serif;font-size:1.05rem;font-weight:800;color:#fff;text-shadow:0 0 16px rgba(255,255,255,.4)}
.product-from{font-size:.68rem;color:var(--text-muted);margin-right:.3rem}
.product-badge{position:absolute;top:.8rem;right:.8rem;font-size:.62rem;font-weight:700;padding:.2rem .5rem;border-radius:4px;background:rgba(255,255,255,.1);color:#aaa;border:1px solid rgba(255,255,255,.1)}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
@media(max-width:768px){.about-grid{grid-template-columns:1fr;gap:2rem}}
.about-logo{width:80px;height:80px;border-radius:16px;object-fit:cover;border:1px solid rgba(255,255,255,.15);box-shadow:0 0 30px rgba(255,255,255,.1);margin-bottom:1.2rem}
.about-text{text-align:left}
.about-text .section-eyebrow{margin-bottom:1rem}

/* WHY US */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
@media(max-width:768px){.why-grid{grid-template-columns:1fr}}
.why-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:1.8rem;transition:all .3s;position:relative;overflow:hidden}
.why-card::after{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);opacity:0;transition:opacity .3s}
.why-card:hover{border-color:rgba(255,255,255,.2);background:var(--bg-card-hover);transform:translateY(-2px)}
.why-card:hover::after{opacity:1}
.why-icon{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.06);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.9rem;color:#fff;margin-bottom:1rem;box-shadow:0 0 16px rgba(255,255,255,.08)}
.why-title{font-family:'Inter',sans-serif;font-size:1rem;font-weight:700;color:#fff;margin-bottom:.4rem;text-shadow:0 0 12px rgba(255,255,255,.2)}
.why-desc{font-size:.83rem;color:var(--text-muted);line-height:1.6}

/* FAQ */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.8rem}
.faq-item{background:var(--bg-card);border:1px solid var(--border);border-radius:10px;overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:rgba(255,255,255,.18)}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:1.1rem 1.4rem;cursor:pointer;font-size:.9rem;font-weight:600;color:#e0e0e0;transition:color .2s;user-select:none}
.faq-q:hover{color:#fff}
.faq-icon{transition:transform .3s;color:var(--text-muted);font-size:.8rem}
.faq-item.open .faq-icon{transform:rotate(45deg);color:#fff}
.faq-a{max-height:0;overflow:hidden;padding:0 1.4rem;font-size:.85rem;color:var(--text-muted);line-height:1.7;border-top:0 solid var(--border);transition:max-height .35s cubic-bezier(.4,0,.2,1),padding .3s ease,border-top-width .3s ease;display:block!important}
.faq-item.open .faq-a{max-height:400px;padding:1rem 1.4rem 1.2rem;border-top-width:1px}

/* SUPPORT SECTION */
.support-box{background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:3rem;text-align:center;position:relative;overflow:hidden}
.support-box::before{content:'';position:absolute;top:-50%;left:50%;transform:translateX(-50%);width:400px;height:400px;background:radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 65%);pointer-events:none}
.support-title{font-family:'Inter',sans-serif;font-size:1.6rem;font-weight:800;color:#fff;text-shadow:0 0 24px rgba(255,255,255,.3);margin-bottom:.6rem}
.support-sub{color:var(--text-muted);margin-bottom:2rem;font-size:.9rem}
.discord-btn{display:inline-flex;align-items:center;gap:.6rem;padding:.75rem 1.8rem;border-radius:var(--radius);background:rgba(88,101,242,.1);border:1px solid rgba(88,101,242,.35);color:#7289da;font-weight:700;font-size:.9rem;cursor:pointer;transition:all .25s}
.discord-btn:hover{background:rgba(88,101,242,.18);box-shadow:0 0 24px rgba(88,101,242,.3);border-color:#7289da}

/* FOOTER */
footer{background:var(--bg-elevated);border-top:1px solid var(--border);padding:4rem 0 2rem}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:550px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{display:flex;flex-direction:column;gap:.8rem}
.footer-logo{display:flex;align-items:center;gap:.6rem}
.footer-logo img{width:28px;height:28px;border-radius:6px;object-fit:cover}
.footer-logo-text{font-family:'Inter',sans-serif;font-size:1rem;font-weight:800;color:#fff;text-shadow:0 0 16px rgba(255,255,255,.4)}
.footer-desc{font-size:.8rem;color:var(--text-muted);line-height:1.6;max-width:240px}
.footer-col h4{font-family:'Inter',sans-serif;font-size:.8rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem;text-shadow:0 0 12px rgba(255,255,255,.2)}
.footer-col a{display:block;color:var(--text-muted);text-decoration:none;font-size:.83rem;margin-bottom:.55rem;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid var(--border);padding-top:2rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.footer-copy{font-size:.75rem;color:var(--text-muted)}
.footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-legal a{font-size:.75rem;color:var(--text-muted);text-decoration:none;transition:color .2s}
.footer-legal a:hover{color:#fff}

/* DISCORD POPUP */
.popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,.8);backdrop-filter:blur(8px);z-index:9999;display:none;align-items:center;justify-content:center;padding:1.5rem}
.popup-overlay.show{display:flex}
.popup-box{background:#0e0e0e;border:1px solid rgba(255,255,255,.15);border-radius:16px;padding:2.5rem;max-width:420px;width:100%;text-align:center;position:relative;box-shadow:0 0 60px rgba(255,255,255,.06)}
.popup-close{position:absolute;top:.8rem;right:1rem;background:none;border:none;color:var(--text-muted);font-size:1rem;cursor:pointer;transition:color .2s}
.popup-close:hover{color:#fff}
.popup-icon{font-size:2.5rem;margin-bottom:.8rem;color:#7289da;text-shadow:0 0 20px rgba(88,101,242,.5)}
.popup-title{font-family:'Inter',sans-serif;font-size:1.2rem;font-weight:800;color:#fff;margin-bottom:.4rem;text-shadow:0 0 16px rgba(255,255,255,.3)}
.popup-text{color:var(--text-muted);font-size:.85rem;margin-bottom:1.2rem;line-height:1.6}
.popup-username{font-size:1.1rem;font-weight:700;color:#fff;font-family:'Inter',sans-serif;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:8px;padding:.6rem 1.2rem;margin-bottom:1rem;letter-spacing:.02em}

/* DIVIDER */
.divider{height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.1),transparent);margin:0}

/* GLOW SEPARATOR */
.glow-sep{text-align:center;margin:3rem 0 0;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.12)}

/* VIEW ALL CTA */
.all-products-cta{text-align:center;margin-top:2.5rem}

/* PRODUCTS PAGE */
.products-page-header{padding:7rem 0 3rem;text-align:center;border-bottom:1px solid var(--border)}
.filter-bar{display:flex;flex-wrap:wrap;gap:.6rem;align-items:center;justify-content:space-between;padding:1.5rem 0;border-bottom:1px solid var(--border);margin-bottom:2.5rem}
.filter-tags{display:flex;flex-wrap:wrap;gap:.5rem}
.filter-tag{padding:.35rem .85rem;border-radius:99px;font-size:.75rem;font-weight:600;border:1px solid var(--border);color:var(--text-muted);cursor:pointer;transition:all .2s;background:none}
.filter-tag.active,.filter-tag:hover{border-color:rgba(255,255,255,.4);color:#fff;background:rgba(255,255,255,.07);box-shadow:0 0 10px rgba(255,255,255,.08)}
.search-bar{display:flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:var(--radius);padding:.4rem .8rem;transition:border-color .2s}
.search-bar:focus-within{border-color:rgba(255,255,255,.25)}
.search-bar input{background:none;border:none;outline:none;color:#fff;font-size:.83rem;width:180px;font-family:'Inter',sans-serif}
.search-bar input::placeholder{color:var(--text-muted)}
.search-bar i{color:var(--text-muted);font-size:.8rem}
.filter-dropdowns{display:flex;gap:.5rem;flex-wrap:wrap}
.filter-select{background:rgba(255,255,255,.04);border:1px solid var(--border);color:var(--text-muted);border-radius:var(--radius);padding:.38rem .75rem;font-size:.78rem;font-family:'Inter',sans-serif;cursor:pointer;transition:border-color .2s;outline:none}
.filter-select:focus,.filter-select:hover{border-color:rgba(255,255,255,.2);color:#fff}
.filter-select option{background:#111;color:#e8e8e8}
.category-section{margin-bottom:3.5rem}
.category-title{font-family:'Bebas Neue',cursive;font-size:1.4rem;letter-spacing:.06em;color:#fff;margin-bottom:1rem;display:flex;align-items:center;gap:.7rem}
.category-title span{font-family:'Inter',sans-serif;font-size:.7rem;font-weight:600;color:var(--text-muted);letter-spacing:.05em;text-transform:uppercase}

/* PRODUCT DETAIL PAGE */
.product-detail{padding:8rem 0 4rem}
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
@media(max-width:768px){.product-detail-grid{grid-template-columns:1fr}}
.product-detail-left .product-store-logo{width:80px;height:80px;border-radius:12px;border:1px solid rgba(255,255,255,.15);object-fit:cover;box-shadow:0 0 24px rgba(255,255,255,.08);margin-bottom:1.2rem}
.product-detail-name{font-family:'Inter',sans-serif;font-size:clamp(1.8rem,4vw,2.4rem);font-weight:800;line-height:1.1;color:#fff;text-shadow:0 0 30px rgba(255,255,255,.3);margin-bottom:.6rem}
.product-detail-cat{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1rem}
.product-detail-desc-short{font-size:.9rem;color:var(--text-muted);line-height:1.7}
.product-detail-right{position:sticky;top:80px;background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:2rem}
.detail-price{font-family:'Inter',sans-serif;font-size:2.2rem;font-weight:800;color:#fff;text-shadow:0 0 24px rgba(255,255,255,.4);margin-bottom:1.2rem}
.variants-label{font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.6rem}
.variants-grid{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem}
.variant-btn{padding:.4rem .9rem;border-radius:var(--radius);font-size:.8rem;font-weight:600;border:1px solid var(--border);color:var(--text-muted);cursor:pointer;background:none;transition:all .2s;font-family:'Inter',sans-serif;text-align:left}
.variant-btn.selected,.variant-btn:hover{border-color:#fff;color:#fff;background:rgba(255,255,255,.07);box-shadow:0 0 12px rgba(255,255,255,.1)}
.buy-btn{width:100%;padding:.85rem 1.5rem;border-radius:var(--radius);font-size:.95rem;font-weight:700;background:#fff;color:#000;border:none;cursor:pointer;box-shadow:0 0 20px rgba(255,255,255,.25),0 0 40px rgba(255,255,255,.08);transition:all .25s;font-family:'Inter',sans-serif;letter-spacing:.02em;margin-top:.5rem}
.buy-btn:hover{background:#ddd;box-shadow:0 0 30px rgba(255,255,255,.4),0 0 60px rgba(255,255,255,.15);transform:translateY(-1px)}
.product-detail-description{margin-top:4rem;padding-top:2rem;border-top:1px solid var(--border)}
.product-detail-description h3{font-family:'Inter',sans-serif;font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:1rem;text-shadow:0 0 14px rgba(255,255,255,.2)}
.product-detail-description p{font-size:.88rem;color:var(--text-muted);line-height:1.8}

/* CHECKOUT PAGE */
.checkout-page{padding:8rem 0 4rem;min-height:80vh}
.checkout-box{max-width:680px;margin:0 auto;background:var(--bg-card);border:1px solid var(--border);border-radius:16px;overflow:hidden}
.checkout-header{padding:2rem 2.5rem;border-bottom:1px solid var(--border);text-align:center}
.checkout-store-banner{width:100%;max-height:180px;object-fit:cover;display:block}
.checkout-title{font-family:'Inter',sans-serif;font-size:1.4rem;font-weight:800;color:#fff;text-shadow:0 0 20px rgba(255,255,255,.25);margin-bottom:.3rem}
.checkout-cross{font-size:.9rem;color:var(--text-muted);margin-bottom:1rem}
.checkout-body{padding:2rem 2.5rem}
.checkout-steps{list-style:none;display:flex;flex-direction:column;gap:.9rem;margin-bottom:2rem}
.checkout-steps li{display:flex;align-items:flex-start;gap:.8rem;font-size:.88rem;color:var(--text-muted);line-height:1.5}
.checkout-steps li .step-num{min-width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;color:#fff;flex-shrink:0}
.checkout-steps li a{color:#fff;text-decoration:underline}
.checkout-actions{display:flex;gap:1rem;margin-top:1.5rem}
.checkout-actions .btn{flex:1;justify-content:center;padding:.8rem;font-size:.9rem}

/* THANK YOU PAGE */
.thankyou-page{padding:8rem 0 4rem;min-height:80vh;display:flex;align-items:center}
.thankyou-box{max-width:500px;margin:0 auto;text-align:center}
.thankyou-icon{font-size:3.5rem;color:#fff;text-shadow:0 0 40px rgba(255,255,255,.5);margin-bottom:1.2rem;animation:iconGlow 3s ease-in-out infinite}
@keyframes iconGlow{0%,100%{text-shadow:0 0 30px rgba(255,255,255,.4)}50%{text-shadow:0 0 60px rgba(255,255,255,.7),0 0 100px rgba(255,255,255,.2)}}
.thankyou-title{font-family:'Inter',sans-serif;font-size:2.5rem;font-weight:800;color:#fff;text-shadow:0 0 30px rgba(255,255,255,.35);margin-bottom:.6rem}
.thankyou-text{color:var(--text-muted);margin-bottom:2rem;line-height:1.7}

/* POLICY PAGE */
.policy-page{padding:8rem 0 4rem}
.policy-box{max-width:780px;margin:0 auto;background:var(--bg-card);border:1px solid var(--border);border-radius:16px;padding:3rem}
.policy-box h1{font-family:'Inter',sans-serif;font-size:1.8rem;font-weight:800;color:#fff;text-shadow:0 0 24px rgba(255,255,255,.25);margin-bottom:.6rem}
.policy-date{font-size:.75rem;color:var(--text-muted);margin-bottom:2rem}
.policy-box h2{font-family:'Inter',sans-serif;font-size:1rem;font-weight:700;color:#fff;margin:2rem 0 .6rem;text-shadow:0 0 12px rgba(255,255,255,.15)}
.policy-box p{font-size:.87rem;color:var(--text-muted);line-height:1.8;margin-bottom:1rem}
.policy-box ul{font-size:.87rem;color:var(--text-muted);line-height:1.8;margin:0 0 1rem 1.2rem}

/* PARTNERS PAGE */
.partners-page{padding:8rem 0 4rem;text-align:center;min-height:60vh;display:flex;align-items:center}
.partners-empty{max-width:420px;margin:0 auto}
.partners-icon{font-size:3rem;color:var(--text-muted);margin-bottom:1rem}
.partners-empty p{color:var(--text-muted);margin-bottom:.5rem;font-size:.9rem;line-height:1.7}
.partners-empty a{color:#fff;text-decoration:underline;cursor:pointer}

/* COUPONS PAGE */
.coupons-page{padding:8rem 0 4rem;text-align:center;min-height:60vh;display:flex;align-items:center}
.coupons-empty{max-width:420px;margin:0 auto}

/* BREADCRUMB */
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--text-muted);margin-bottom:2rem}
.breadcrumb a{color:var(--text-muted);text-decoration:none;cursor:pointer;transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:rgba(255,255,255,.15)}

/* SCROLL ANIMATE */
.fade-up{opacity:0;transform:translateY(20px);transition:opacity .6s,transform .6s}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* STAT COUNT-UP */
.stat-num{font-family:'Inter',sans-serif;font-size:1.8rem;font-weight:900;color:#fff;text-shadow:0 0 20px rgba(255,255,255,.3)}

/* PRODUCTS PAGE 4-PER-ROW */
.products-grid-page{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
@media(max-width:1100px){.products-grid-page{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.products-grid-page{grid-template-columns:1fr}}

/* PRODUCT DETAIL BANNER */
.product-store-banner{width:100%;border-radius:10px;object-fit:cover;max-height:180px;border:1px solid rgba(255,255,255,.1);margin-bottom:1.2rem}

/* QUANTITY INPUT */
.qty-row{display:flex;align-items:center;gap:.8rem;margin-bottom:1rem}
.qty-label{font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted)}
.qty-input{background:rgba(255,255,255,.04);border:1px solid var(--border);color:#fff;border-radius:var(--radius);padding:.38rem .75rem;font-size:.9rem;font-family:'Inter',sans-serif;width:70px;text-align:center;outline:none;transition:border-color .2s}
.qty-input:focus{border-color:rgba(255,255,255,.3)}

/* BROWSE PRODUCT CARD LOGO */
.browse-logo{width:36px;height:36px;border-radius:6px;object-fit:cover;border:1px solid rgba(255,255,255,.1);margin-bottom:.6rem}
.browse-name-price-row{display:flex;align-items:baseline;justify-content:space-between;gap:.5rem}
.browse-name-price-row .product-name{flex:1;min-width:0}

/* HIDDEN SECRET BTN */
.secret-btn{background:rgba(20,20,20,.9);color:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.06);font-size:.72rem;padding:.3rem .7rem;border-radius:var(--radius);cursor:pointer;font-family:'Inter',sans-serif;transition:all .3s;margin-top:.8rem}
.secret-btn:hover{background:rgba(30,30,30,.9);color:rgba(255,255,255,.3)}

/* COUPON SYSTEM */
.coupon-row{display:flex;gap:.5rem;margin-bottom:.8rem;margin-top:.2rem}
.coupon-input{flex:1;background:rgba(255,255,255,.04);border:1px solid var(--border);color:#fff;border-radius:var(--radius);padding:.38rem .75rem;font-size:.83rem;font-family:'Inter',sans-serif;outline:none;transition:border-color .2s;letter-spacing:.04em;text-transform:uppercase}
.coupon-input::placeholder{text-transform:none;letter-spacing:0;color:var(--text-muted)}
.coupon-input:focus{border-color:rgba(255,255,255,.3)}
.coupon-input:disabled{opacity:.5;cursor:not-allowed}
.coupon-apply-btn{padding:.38rem .9rem;border-radius:var(--radius);font-size:.78rem;font-weight:700;background:rgba(255,255,255,.07);color:#ccc;border:1px solid var(--border);cursor:pointer;font-family:'Inter',sans-serif;transition:all .2s;white-space:nowrap}
.coupon-apply-btn:hover{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.25)}
.coupon-apply-btn:disabled{opacity:.4;cursor:not-allowed}
.coupon-msg{font-size:.78rem;font-weight:600;margin-bottom:.6rem;min-height:1.1em;transition:all .2s}
.coupon-msg.valid{color:#4ade80;text-shadow:0 0 10px rgba(74,222,128,.8),0 0 20px rgba(74,222,128,.5),0 0 35px rgba(74,222,128,.3)}
.coupon-msg.invalid{color:#f87171;text-shadow:0 0 10px rgba(248,113,113,.8),0 0 20px rgba(248,113,113,.5),0 0 35px rgba(248,113,113,.3)}
.coupon-label{font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.4rem}

/* RED GLOW TEXT */
.red-glow{color:#f87171;text-shadow:0 0 12px rgba(248,113,113,.9),0 0 24px rgba(248,113,113,.5),0 0 40px rgba(248,113,113,.3)}

/* ============================================================
   ENTRY SURVEY POPUP
   ============================================================ */
#entry-survey { position: fixed; inset: 0; z-index: 99999; }

.ep-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  z-index: 99999;
}

.ep-box {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 2.8rem 2.5rem 2.2rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,255,255,.04), 0 0 0 1px rgba(255,255,255,.04);
  animation: epSlideIn .5s cubic-bezier(.16,1,.3,1);
}
@keyframes epSlideIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ep-logo {
  display: flex; align-items: center; justify-content: center;
  gap: .55rem; margin-bottom: 2rem;
}
.ep-logo img { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.ep-logo span {
  font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: #fff;
  text-shadow: 0 0 16px rgba(255,255,255,.4); letter-spacing: .08em;
}

.ep-title {
  font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: #fff; margin-bottom: .4rem;
  text-shadow: 0 0 20px rgba(255,255,255,.25);
}
.ep-subtitle {
  font-size: .8rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5;
}

.ep-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .5rem;
}

.ep-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem .7rem; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  color: #aaa; font-size: .85rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .2s; line-height: 1.2;
}
.ep-btn:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff;
}
.ep-btn.ep-selected {
  background: #fff; border-color: #fff; color: #000;
  box-shadow: 0 0 20px rgba(255,255,255,.3);
}
.ep-btn i { font-size: .8rem; }

.ep-continue-wrap {
  margin-top: 1.4rem; height: 48px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.ep-continue-wrap.ep-continue-visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

.ep-continue {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2.2rem; border-radius: var(--radius);
  background: #fff; color: #000; border: none;
  font-size: .9rem; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; letter-spacing: .02em;
  box-shadow: 0 0 22px rgba(255,255,255,.3);
  transition: all .2s;
}
.ep-continue:hover {
  background: #ddd; box-shadow: 0 0 36px rgba(255,255,255,.5); transform: translateY(-1px);
}

/* Site becomes visible instantly once survey closes — no fade-in needed */

/* ============================================================
   FEEDBACK POPUP
   ============================================================ */
#feedback-popup { position: fixed; inset: 0; z-index: 9998; }

.fp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; z-index: 9998;
}

.fp-box {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px; padding: 2.4rem 2.2rem 2rem;
  max-width: 460px; width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(255,255,255,.05);
  animation: fpSlideIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes fpSlideIn {
  from { opacity: 0; transform: translateY(22px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.fp-close {
  position: absolute; top: .9rem; right: 1.1rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1rem; cursor: pointer; transition: color .2s;
}
.fp-close:hover { color: #fff; }

.fp-icon {
  font-size: 2rem; color: rgba(255,255,255,.6);
  text-shadow: 0 0 20px rgba(255,255,255,.3);
  margin-bottom: .7rem; text-align: center;
}
.fp-title {
  font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: #fff; text-align: center; margin-bottom: .3rem;
  text-shadow: 0 0 16px rgba(255,255,255,.25);
}
.fp-subtitle {
  font-size: .78rem; color: var(--text-muted); text-align: center; margin-bottom: 1.6rem;
}

.fp-fields { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.4rem; }

.fp-input,
.fp-textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius);
  color: #fff; font-family: 'Inter', sans-serif; font-size: .85rem;
  padding: .65rem .85rem; outline: none;
  transition: border-color .2s;
  resize: none;
}
.fp-input::placeholder, .fp-textarea::placeholder { color: var(--text-muted); }
.fp-input:focus, .fp-textarea:focus { border-color: rgba(255,255,255,.3); }
.fp-textarea { min-height: 100px; }

.fp-actions { display: flex; gap: .75rem; }

.fp-cancel {
  flex: 1; padding: .75rem; border-radius: var(--radius);
  background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.3);
  color: #f87171; font-size: .88rem; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.fp-cancel:hover { background: rgba(248,113,113,.15); border-color: #f87171; }

.fp-submit {
  flex: 2; padding: .75rem; border-radius: var(--radius);
  background: #fff; border: none; color: #000;
  font-size: .88rem; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  box-shadow: 0 0 18px rgba(255,255,255,.25);
}
.fp-submit:hover:not(:disabled) {
  background: #ddd; box-shadow: 0 0 32px rgba(255,255,255,.45); transform: translateY(-1px);
}
.fp-submit:disabled {
  opacity: .35; cursor: not-allowed; box-shadow: none;
}
