/* =====================
   VARIABLES & RESET
   ===================== */
:root {
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --orange-dim: #cc5500;
  --black: #0a0a0f;
  --dark: #12121a;
  --dark2: #1c1c2e;
  --dark3: #252538;
  --purple: #6b21a8;
  --purple-light: #a855f7;
  --white: #f5f0e8;
  --muted: #a89f8c;
  --card-bg: #181825;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(255, 107, 0, 0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-card.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* =====================
   MUSIC BUTTON
   ===================== */
.music-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid rgba(255,107,0,0.4);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.2);
}
.music-btn:hover { background: var(--orange); transform: scale(1.1); border-color: var(--orange); }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,0,0.18);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { font-family: 'Creepster', cursive; font-size: 1.8rem; color: var(--orange); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-weight: 700; font-size: 0.93rem; color: var(--muted); transition: color 0.2s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--orange); transition:width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: -12px;
  background: var(--dark2); border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius); padding: 0.5rem 0; min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.88rem; color: var(--muted); font-weight: 700; transition: all 0.15s; }
.dropdown-menu a:hover { color: var(--orange); background: rgba(255,107,0,0.06); padding-left: 24px; }
.nav-dropdown:hover .dropdown-menu { display: block; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.btn-cart { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.4); color: var(--orange); padding: 8px 16px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-cart:hover { background: rgba(255,107,0,0.2); transform: scale(1.05); }
.cart-count { background: var(--orange); color: #000; font-size: 0.73rem; font-weight: 800; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 0.85rem; border-top: 1px solid rgba(255,107,0,0.1); }
.mobile-menu a { font-weight: 700; color: var(--muted); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu.open { display: flex; }

/* =====================
   HERO
   ===================== */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 6rem 2rem 4rem; background: radial-gradient(ellipse at 60% 50%, rgba(107,33,168,0.25) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(255,107,0,0.15) 0%, transparent 50%), var(--black); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.bat { position: absolute; font-size: 1.4rem; animation: batfly linear infinite; opacity: 0.45; }
@keyframes batfly {
  0%   { transform: translateX(-80px) translateY(0); }
  20%  { transform: translateX(15vw) translateY(-30px); }
  50%  { transform: translateX(50vw) translateY(20px); }
  80%  { transform: translateX(80vw) translateY(-20px); }
  100% { transform: translateX(110vw) translateY(5px); }
}
.hero-content { text-align: center; max-width: 680px; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-block; background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3); color: var(--orange); padding: 6px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.hero h1 { font-family: 'Creepster', cursive; font-size: clamp(3.5rem, 10vw, 7rem); line-height: 1.05; margin-bottom: 1.25rem; }
.glow { color: var(--orange); text-shadow: 0 0 30px rgba(255,107,0,0.6), 0 0 60px rgba(255,107,0,0.3); animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(255,107,0,0.6), 0 0 60px rgba(255,107,0,0.3); }
  50% { text-shadow: 0 0 50px rgba(255,107,0,0.9), 0 0 100px rgba(255,107,0,0.5); }
}
.hero-sub { font-size: 1.15rem; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.hero-img { position: absolute; right: 8%; font-size: clamp(5rem, 13vw, 10rem); animation: float 3s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(255,107,0,0.4)); z-index: 1; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-22px) rotate(3deg); } }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-trust { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.hero-trust span { font-size: 0.82rem; color: var(--muted); font-weight: 700; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 5px 12px; border-radius: 100px; }

/* =====================
   BUTTONS
   ===================== */
.btn { padding: 13px 30px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer; border: none; transition: all 0.2s; display: inline-block; }
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 5rem 0; }
.dark-section { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-title { font-family: 'Creepster', cursive; font-size: 2.4rem; color: var(--orange); margin-bottom: 2.5rem; text-align: center; }
.spotlight-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }

/* =====================
   CATEGORY TABS BAR
   ===================== */
.cat-tabs-bar { background: var(--dark2); border-bottom: 1px solid rgba(255,107,0,0.1); padding: 0.75rem 0; position: sticky; top: 68px; z-index: 90; }
.cat-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { background: none; border: 1px solid rgba(255,107,0,0.15); color: var(--muted); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 7px 16px; border-radius: 100px; cursor: pointer; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.cat-tab:hover { border-color: var(--orange); color: var(--orange); }
.cat-tab.active { background: var(--orange); color: #000; border-color: var(--orange); }

/* =====================
   CATEGORIES
   ===================== */
.categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.25rem; }
.cat-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; transition: all 0.3s; cursor: pointer; }
.cat-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-icon { font-size: 2.8rem; margin-bottom: 0.85rem; display: block; }
.cat-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.3rem; }
.cat-card p { color: var(--muted); font-size: 0.82rem; }

/* =====================
   PRODUCT GRID
   ===================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.07); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; position: relative; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.4); box-shadow: var(--shadow); }
.product-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: var(--dark2); position: relative; overflow: hidden; }
.badge-stack { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge { padding: 3px 9px; border-radius: 100px; font-size: 0.72rem; font-weight: 800; }
.badge-new { background: var(--purple); color: #fff; }
.badge-hot { background: var(--orange); color: #000; }
.badge-sale { background: #e53e3e; color: #fff; }
.product-quick-info { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); padding: 6px 10px; display: flex; gap: 12px; font-size: 0.75rem; color: var(--muted); transform: translateY(100%); transition: transform 0.2s; }
.product-card:hover .product-quick-info { transform: translateY(0); }
.product-info { padding: 1rem; }
.product-name { font-weight: 800; font-size: 0.97rem; margin-bottom: 0.4rem; line-height: 1.3; }
.product-meta { display: flex; align-items: center; gap: 4px; margin-bottom: 0.6rem; }
.product-rating { color: #fbbf24; font-size: 0.83rem; }
.product-reviews { color: var(--muted); font-size: 0.78rem; }
.product-price { font-family: 'Creepster', cursive; font-size: 1.35rem; color: var(--orange); }
.product-price-old { font-size: 0.83rem; color: var(--muted); text-decoration: line-through; margin-left: 5px; }
.product-tag { display: inline-block; background: rgba(255,107,0,0.1); color: var(--orange); font-size: 0.73rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-bottom: 0.6rem; text-transform: capitalize; }
.btn-add { width: 100%; background: var(--orange); color: #000; border: none; padding: 10px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; margin-top: 0.25rem; }
.btn-add:hover { background: var(--orange-light); transform: scale(1.02); }

/* =====================
   PROMO BANNER
   ===================== */
.promo-banner { background: linear-gradient(135deg, var(--purple), var(--orange-dim)); padding: 3rem 0; }
.promo-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.promo-banner h2 { font-family: 'Creepster', cursive; font-size: 2rem; }
.promo-banner p { color: rgba(255,255,255,0.85); margin-top: 0.4rem; }
.promo-banner .btn-primary { background: var(--white); color: var(--black); }

/* =====================
   TRUST GRID
   ===================== */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.trust-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.75rem 1.5rem; text-align: center; transition: all 0.3s; }
.trust-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-icon { font-size: 2.5rem; margin-bottom: 0.85rem; display: block; }
.trust-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; }
.trust-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); padding: 1.5rem; transition: transform 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-card p { color: var(--muted); line-height: 1.7; font-size: 0.93rem; margin-bottom: 1rem; }
.testimonial-card span { font-weight: 700; color: var(--orange); font-size: 0.88rem; }

/* =====================
   PAGE HEADER
   ===================== */
.page-header { padding: 4.5rem 0 2.5rem; background: radial-gradient(ellipse at 50% 100%, rgba(107,33,168,0.3) 0%, transparent 60%), var(--dark); text-align: center; border-bottom: 1px solid rgba(255,107,0,0.1); }
.page-header h1 { font-family: 'Creepster', cursive; font-size: clamp(2.2rem, 6vw, 3.8rem); color: var(--orange); margin-bottom: 0.6rem; }
.page-header p { color: var(--muted); font-size: 1.05rem; }

/* =====================
   SHOP LAYOUT
   ===================== */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; align-items: start; }
.filters { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 130px; }
.filters h3 { font-family: 'Creepster', cursive; font-size: 1.4rem; color: var(--orange); margin-bottom: 1.25rem; }
.filter-group { margin-bottom: 1.4rem; }
.filter-group h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 0.7rem; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--white); padding: 4px 0; cursor: pointer; transition: color 0.2s; }
.filter-group label:hover { color: var(--orange); }
.filter-group input { accent-color: var(--orange); width: 15px; height: 15px; cursor: pointer; }
.filter-info-box { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 8px; }
.filter-info-box p { font-size: 0.82rem; }
.shop-main { min-width: 0; }
.shop-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
.shop-topbar span { color: var(--muted); font-size: 0.88rem; }
.shop-topbar select { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.2); color: var(--white); padding: 8px 12px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 0.88rem; cursor: pointer; }

/* =====================
   ABOUT PAGE
   ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-family: 'Creepster', cursive; font-size: 2.2rem; color: var(--orange); margin-bottom: 1rem; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all 0.3s; }
.stat-card:hover { border-color: var(--orange); transform: scale(1.04); }
.stat-num { font-family: 'Creepster', cursive; font-size: 2.4rem; color: var(--orange); }
.stat-label { color: var(--muted); font-size: 0.83rem; margin-top: 3px; }

/* Security grid */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.security-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s; }
.security-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.security-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.security-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.security-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.team-avatar { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.team-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem; }
.team-role { color: var(--orange); font-size: 0.83rem; font-weight: 700; margin-bottom: 0.75rem; }
.team-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2, .contact-form-box h2 { font-family: 'Creepster', cursive; font-size: 2rem; color: var(--orange); margin-bottom: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.1rem; transition: all 0.2s; }
.contact-item:hover { border-color: rgba(255,107,0,0.3); }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 4px; color: var(--white); }
.contact-item a { color: var(--orange); font-weight: 700; font-size: 0.9rem; }
.contact-item p { color: var(--muted); font-size: 0.83rem; margin-top: 2px; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.social-links a { color: var(--orange); font-size: 0.83rem; font-weight: 700; }
.contact-form-box { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input { background: var(--dark3); border: 1px solid rgba(255,107,0,0.15); color: var(--white); padding: 12px 14px; border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 0.93rem; width: 100%; transition: border-color 0.2s; resize: vertical; }
.form-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.08); }
.form-input::placeholder { color: rgba(168,159,140,0.45); }
.form-input option { background: var(--dark2); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(255,107,0,0.35); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.25rem; font-weight: 800; font-size: 0.95rem; color: var(--white); }
.faq-q span { color: var(--orange); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; border-top: 1px solid rgba(255,107,0,0.07); padding-top: 0.9rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--orange); }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* =====================
   POLICIES PAGE
   ===================== */
.policy-nav-bar { background: var(--dark2); border-bottom: 1px solid rgba(255,107,0,0.1); padding: 0.75rem 0; position: sticky; top: 68px; z-index: 89; }
.policy-nav { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.policy-nav::-webkit-scrollbar { display: none; }
.policy-nav a { color: var(--muted); font-size: 0.85rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,107,0,0.12); white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
.policy-nav a:hover { color: var(--orange); border-color: var(--orange); }
.policy-block { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem; }
.policy-block h3 { font-family: 'Creepster', cursive; font-size: 1.5rem; color: var(--orange); margin-bottom: 1rem; }
.policy-block p, .policy-block li { color: var(--muted); line-height: 1.8; font-size: 0.93rem; }
.policy-block ul { padding-left: 1.5rem; }
.policy-block ul li { list-style: disc; margin-bottom: 4px; }
.policy-note { background: rgba(255,107,0,0.07); border-left: 3px solid var(--orange); padding: 10px 14px; border-radius: 0 8px 8px 0; color: var(--muted); font-size: 0.88rem; margin-top: 1rem; }
.table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.size-table th { background: rgba(255,107,0,0.12); color: var(--orange); font-weight: 800; padding: 10px 14px; text-align: left; }
.size-table td { padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--muted); }
.size-table tr:hover td { background: rgba(255,107,0,0.04); color: var(--white); }
.measure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1rem; }
.measure-item { background: var(--dark3); border-radius: 8px; padding: 1rem; text-align: center; }
.measure-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.measure-item h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--orange); }
.measure-item p { color: var(--muted); font-size: 0.8rem; line-height: 1.5; }
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.care-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.5rem; transition: all 0.3s; }
.care-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-3px); }
.care-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.care-card p { color: var(--orange); font-size: 0.82rem; font-weight: 700; margin-bottom: 0.75rem; }
.care-card ul { padding-left: 1.25rem; }
.care-card li { list-style: disc; color: var(--muted); font-size: 0.86rem; line-height: 1.8; }
.returns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.returns-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.08); border-radius: var(--radius); padding: 1.5rem; }
.returns-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.returns-card ul { padding-left: 1.2rem; }
.returns-card li { list-style: disc; color: var(--muted); font-size: 0.88rem; line-height: 1.9; }
.steps-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.75rem; }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #000; font-weight: 800; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.shipping-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.ship-card { background: var(--card-bg); border: 1px solid rgba(255,107,0,0.1); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: all 0.3s; }
.ship-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.ship-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.ship-card p { color: var(--muted); font-size: 0.88rem; }
.ship-price { color: var(--orange) !important; font-weight: 700 !important; margin-top: 0.4rem; }
.policy-text h3 { font-family: 'Creepster', cursive; font-size: 1.4rem; color: var(--orange); margin: 1.5rem 0 0.6rem; }
.policy-text p { color: var(--muted); font-size: 0.93rem; line-height: 1.8; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,107,0,0.1); padding: 4rem 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 0.85rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 1rem; }
.footer-security { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-security span { font-size: 0.78rem; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 4px 10px; border-radius: 100px; }
.footer-links h4 { font-family: 'Creepster', cursive; font-size: 1.15rem; color: var(--orange); margin-bottom: 0.9rem; }
.footer-links a { display: block; color: var(--muted); font-size: 0.88rem; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.75rem; text-align: center; color: var(--muted); font-size: 0.88rem; }

/* =====================
   CART SIDEBAR
   ===================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; max-width: 100vw; background: var(--dark2); border-left: 1px solid rgba(255,107,0,0.2); z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,107,0,0.1); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-family: 'Creepster', cursive; font-size: 1.5rem; color: var(--orange); }
.cart-header button { background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.cart-header button:hover { color: var(--orange); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; font-size: 1.1rem; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item-emoji { font-size: 2rem; background: var(--dark3); width: 52px; height: 52px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: var(--orange); font-weight: 700; }
.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; transition: color 0.2s; flex-shrink: 0; }
.cart-item-remove:hover { color: #e53e3e; }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,107,0,0.1); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1.05rem; }
.cart-total strong { color: var(--orange); font-size: 1.3rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-img { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .returns-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
  .promo-inner { flex-direction: column; text-align: center; }
  .cart-sidebar { width: 100vw; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-trust { gap: 0.5rem; }
}

/* =====================
   PRODUCT IMAGE STYLES
   ===================== */
.product-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.product-img-el {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-el img {
  transform: scale(1.06);
}
.product-emoji-fallback {
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--dark2);
}
.img-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-size: 0.75rem;
}
.img-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255,107,0,0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================
   SIZE MODAL
   ===================== */
.size-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.size-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.size-modal-box {
  background: var(--dark2);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: modalSlideIn 0.3s cubic-bezier(0.34,1.3,0.64,1);
}
@keyframes modalSlideIn {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.size-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}
.size-modal-close:hover { background: rgba(255,107,0,0.15); color: var(--orange); }

.size-modal-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 340px;
}
.size-modal-img {
  border-radius: 18px 0 0 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark3);
}
.size-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-product-emoji {
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.size-modal-info {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.size-modal-name {
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
}
.size-modal-price {
  font-family: 'Creepster', cursive;
  font-size: 1.6rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.size-modal-fabric {
  color: var(--muted);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 0.25rem;
}
.size-modal-label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.4rem 0 0.75rem;
}
.size-btn {
  min-width: 52px;
  padding: 9px 14px;
  background: var(--dark3);
  border: 1.5px solid rgba(255,107,0,0.2);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
}
.size-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,0.06);
}
.size-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
  transform: scale(1.05);
}
.size-chart-link {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.size-chart-link a { color: var(--orange); font-weight: 700; }
.size-confirm-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: auto;
  transition: all 0.2s;
}
.size-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}
.size-error {
  color: #e53e3e;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Cart size tag */
.cart-size-tag {
  background: rgba(255,107,0,0.15);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

@media (max-width: 600px) {
  .size-modal-inner {
    grid-template-columns: 1fr;
  }
  .size-modal-img {
    border-radius: 18px 18px 0 0;
    aspect-ratio: 16/9;
  }
  .modal-product-emoji {
    min-height: 140px;
    font-size: 4rem;
  }
  .size-modal-info {
    padding: 1.25rem;
  }
}

/* =====================
   SHOP HALLOWEEN BG ANIMATION
   ===================== */
.shop-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Ensure shop content sits above the background */
.navbar       { position: sticky; top: 0; z-index: 100; }
.cat-tabs-bar { position: sticky; top: 68px; z-index: 90; }
.section      { position: relative; z-index: 2; }
.page-header  { position: relative; z-index: 2; }

.shop-float-obj {
  position: fixed;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 6px rgba(255,107,0,0.3));
}

/* Twinkle keyframes for static stars */
@keyframes twinkle {
  from { opacity: 0.05; transform: scale(0.8); }
  to   { opacity: 0.35; transform: scale(1.2); }
}

/* Subtle dark vignette so objects don't distract from products */
.shop-bg-layer::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(10,10,15,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}
