* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Panchang', sans-serif;
}

body {
    font-family: sans-serif;
  background: rgb(255, 255, 255);
  min-height: 100vh;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

i {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: white;
}

/* ================= UNIFIED NAV (dwsi-nav) ================= */

.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 500;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  font-family: 'Panchang', sans-serif;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.08em;
  color: #000; text-decoration: none; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: 'Panchang', sans-serif;
  color: rgba(0,0,0,0.8); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: #000; transition: width 0.3s;
}
.nav-links a:hover { color: #000; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: #c8281e !important; }
.nav-links a.nav-active::after { width: 100%; background: #c8281e; }
.dark-nav .nav-links a.nav-active { color: #c8281e !important; }
.dark-nav .nav-links a.nav-active::after { background: #c8281e; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  list-style: none; padding: 12px 0; min-width: 180px;
  border-radius: 10px; border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.28s ease; z-index: 600;
}
.dropdown:hover .dropdown-menu { 
  opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto !important; 
}
.dropdown-toggle { cursor: pointer; }
.nav-links .dropdown { pointer-events: auto; }
.dropdown-menu li { padding: 6px 18px; }
.dropdown-menu li a { font-size:0.8rem; color:rgba(0,0,0,0.7); letter-spacing:0.08em; }
.dropdown-menu li a:hover { color:#000; }
.dropdown-menu li a::after { display:none; }
.dropdown-arrow { font-size:0.7em; margin-left:3px; display:inline-block; transition:transform 0.3s; }
.dropdown:hover .dropdown-arrow { transform:rotate(180deg); }

.nav-actions {
  display: flex; align-items: center; gap: 18px;
  font-size: 1.05rem; color: #000;
}
.nav-actions i { cursor: pointer; transition: 0.25s ease; }
.nav-actions i:hover { transform: translateY(-2px); }
.nav-cart {
  position: relative; color: #000;
  text-decoration: none; font-size: 1.05rem; transition: color 0.2s;
}
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: #000; color: #fff;
  font-family: 'Panchang', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  padding: 2px 5px; border-radius: 50%;
  min-width: 16px; text-align: center;
}
.nav-wish-wrap { position: relative; display: flex; align-items: center; }
.wish-count {
  position: absolute; top: -8px; right: -10px;
  background: #000; color: #fff;
  font-family: 'Panchang', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  padding: 2px 5px; border-radius: 50%;
  min-width: 16px; text-align: center;
}

.hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px 4px; z-index: 700;
}
.hamburger-btn span {
  display: block; width: 24px; height: 2px;
  background: #000; border-radius: 2px; transition: all 0.3s;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 490; backdrop-filter: blur(3px);
}
.nav-drawer-overlay.open { display: block; }

/* Dark variant — 1.html */
.nav.dark-nav {
  background: rgba(0,0,0,0.82);
  border-bottom-color: rgba(255,255,255,0.06);
}
.dark-nav .nav-logo { color: #fff; }
.dark-nav .nav-links a { color: rgba(255,255,255,0.85); }
.dark-nav .nav-links a::after { background: #fff; }
.dark-nav .nav-links a:hover { color: #fff; }
.dark-nav .dropdown-menu {
  background: rgba(10,10,10,0.97);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.dark-nav .dropdown-menu li a { color: rgba(255,255,255,0.7); }
.dark-nav .dropdown-menu li a:hover { color: #fff; }
.dark-nav .nav-actions { color: #fff; }
.dark-nav .nav-cart { color: rgba(255,255,255,0.85); }
.dark-nav .cart-count { background: #fff; color: #000; }
.dark-nav .wish-count { background: #fff; color: #000; }
.dark-nav .hamburger-btn span { background: #fff; }

body { padding-top: 52px; }

/* ===== GLOBAL CONTAINER ===== */

.container {
    display: flex;
    justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
/* ================= HERO TEXT ================= */

.hero-text-section {
  padding: 40px 0 0;
  background: #fff;
   margin-top: -30px;   /* ⬅️ controls distance from nav */
  margin-bottom: 10px;
}


.hero-title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  white-space: nowrap;
}
/* ================= MARQUEE ================= */

.marquee-section {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  padding: 10px 0;
  animation: marquee-scroll 8s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= HERO WRAPPER ================= */

.hero {
  position: relative;
  min-height: 130vh;
  overflow: hidden;
}

/* BRIGHT BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #4e2f68,
    #000000,
    #3c5f25
  );
  z-index: 1;
}

/* TEXT ABOVE BACKGROUND */
.hero-text-section {
  position: relative;
  z-index: 3;
  padding-top: 40px;
}

/* TITLE */
.hero-title {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #000;
  white-space: nowrap;
  text-align: center;
}

/* MARQUEE ABOVE BG */
.marquee-section {
  position: relative;
  z-index: 4;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 6s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px;
  padding: 12px 0;
}

.marquee-content span {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* MODEL IMAGE */
.hero-model {
  position: absolute;
  bottom: -290px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5; /* ABOVE TEXT */
  pointer-events: none;
}

.hero-model img {
  height: 140vh;
  object-fit: contain;
   filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}

/* ANIMATION */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hero-content {
  position: absolute;
  left: 80px;
  top: 72%;
  transform: translateY(-50%);
  max-width: 360px;
  z-index: 4; /* above bg, below model if needed */
}

/* Text */
.hero-subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 22px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* Social Icons */
.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.hero-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 1.3rem;

  transition: all 0.3s ease;
}

.hero-socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.hero-socials a.facebook:hover { background:#1877f2; color:#fff; }
.hero-socials a.instagram:hover { background:#e02e69; color:#fff; }
.hero-socials a.tiktok:hover { background:#000; color:#fff; }
.hero-socials a.whatsapp:hover { background:#25d366; color:#fff; }
/* ================= FLOATING CARDS ================= */

.floating-card {
  position: absolute;
  width: 140px;            
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  z-index: 6;
  transition: 0.4s ease;
}

.floating-card img {
  width: 100%;
  height: 140px;            
  object-fit: cover;
   transform: scale(1.2);
}

.card-info {
  padding: 10px;
  color: #fff;
}

.card-info p {
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.card-info span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Hover effect */
.floating-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* POSITIONING */


.card-1 {
  top: 35%;
  left: 29%;
}

.card-2 {
  bottom: 8%;
  right: 28%;
}
.floating-card {
  transform: rotate(-1.5deg);
}

.card-2 {
  transform: rotate(2deg);
}
.floating-card:hover img {
  transform: scale(1.3);
  transition: 0.4s ease;
}
/* ================= COMING SOON ================= */

.coming-soon-section {
  padding: 120px 80px;
  background: #fff;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Grid */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.coming-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Image */
.coming-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) brightness(0.75);
  transform: scale(1.1);
}

/* Overlay */
.coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

/* Text */
.coming-overlay span {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 16px 28px;
}
.coming-card:hover {
  transform: translateY(-12px);
  transition: 0.4s ease;
}
@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.coming-overlay span {
  animation: pulse 2.5s ease-in-out infinite;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #000;
  margin: 16px auto 0;
}
/* ================= EARLY ACCESS ================= */

.early-access {
  margin-top: 80px;
  text-align: center;
}

.early-access-label {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}

.early-access h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 32px;
}

/* Form */
.early-access-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Input */
.early-access-form input {
  width: 320px;
  max-width: 100%;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s ease;
}

.early-access-form input:focus {
  border-color: #000;
}

/* Button */
.early-access-form button {
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.early-access-form button:hover {
  background: #111;
  transform: translateY(-2px);
}
/* ================= STORE SECTION ================= */

.store-section {
  padding: 120px 80px;
  background: #fff;
}

/* HEADER */
.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.store-header .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
}

/* SEE ALL BUTTON */
.see-all-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  color: #000;
  position: relative;
}

.see-all-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.see-all-btn:hover::after {
  width: 100%;
}

/* GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

  /* animation-ready */
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* PRODUCT CARD */
.store-card {
  background: #f6f6f6;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.store-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.store-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.store-card-info {
   padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-card-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.store-card-info span {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* COLLAPSED STATE (FIRST LOAD) */
.store-grid.collapsed {
  max-height: 420px; /* enough for ~3 cards */
}
/* ================= SIZE SELECTOR ================= */

.size-selector {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  height: 36px;
}

.size-btn {
  border: 1px solid #000;
  background: transparent;
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.size-btn:hover,
.size-btn.active {
  background: #000;
  color: #fff;
}

/* ================= CART CONTROLS ================= */

.cart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

/* QUANTITY CONTROL */
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  height:40px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.qty-btn:hover {
  background: #000;
  color: #fff;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

/* ADD TO CART BUTTON */
.add-to-cart-btn {
  border: none;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #333;
}
.size-btn.active {
  background: #000;
  color: #fff;
}

.qty-btn {
  cursor: pointer;
}

.add-to-cart-btn {
  margin-left: auto;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
/* ================= FLOATING CART ================= */

.floating-cart {
  position: fixed;
  right: -90px; /* hidden by default */
  top: 120px;
  background: #000;
  color: #fff;
  padding: 14px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 9999;
  transition: right 0.4s ease, top 0.3s ease;
}

.floating-cart.show {
  right: 30px;
}
.floating-cart-icon {
  background: #000;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.floating-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-cart span {
  font-weight: 600;
}

.image-slider {
  position: relative;
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.color-selector {
  display: flex;
  gap: 10px;
  max-width: 100%;
  height: 34px;               /* 🔒 FIXED HEIGHT */
  align-items: center;
  overflow-x: auto;           /* ➜ scroll instead of grow */
  padding-bottom: 4px;
}

/* hide ugly scrollbar */
.color-selector::-webkit-scrollbar {
  display: none;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;             /* 🚫 NEVER SHRINK */
  transition: 0.25s ease;
}

.color-dot.active {
  border-color: #000;
  transform: scale(1.15);
}

.color-dot.active {
  border-color: #000;
}

.size-btn.active {
  background: #000;
  color: #fff;
}
.color-selector::after {
  content: '→';
  font-size: 12px;
  opacity: 0.4;
  margin-left: 6px;
}
/* ================= HERO DOTS (slide indicators) ================= */
.hero-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
  align-items: center;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  background: #fff;
  height: 22px;
  border-radius: 4px;
  width: 8px;
}

/* ================= NAV CART AS LINK ================= */
a.nav-cart {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* ================= HERO-BG TRANSITION ================= */
#heroBg {
  transition: background 0.8s ease;
}

/* floating-cart also shows when class "active" is set (used by 1.js) */
.floating-cart.active {
  right: 30px;
}

/* Make floating cart an anchor tag safe */
a.floating-cart {
  text-decoration: none;
  color: #fff;
}

/* ================================================
   HERO LOAD ANIMATIONS
   ================================================ */
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroModelIn {
  from { opacity: 0; transform: translateX(-50%) translateY(60px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-anim-text {
  animation: heroTextIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.hero-anim-model {
  animation: heroModelIn 1s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

/* ================================================
   CARD ACTION ROW  (qty + add-to-cart side by side)
   ================================================ */
.card-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 4px;
}
.card-action-row .qty-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.card-action-row .add-to-cart-btn {
  flex: 1;
  margin: 0;
  padding: 9px 12px;
  font-size: 0.72rem;
}

/* WISHLIST BUTTON on store cards */
.add-to-wish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 18px 14px;
  padding: 8px;
  border: 1px solid #ddd;
  background: transparent;
  color: #666;
  border-radius: 6px;
  font-family: 'Panchang', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}
.add-to-wish-btn:hover { border-color: #000; color: #000; }
.add-to-wish-btn.wished { background: #fff0f5; color: #e91e8c; border-color: #e91e8c; }
/* ================================================
   MAIN FOOTER
   ================================================ */
.main-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 40px 30px;
}
.main-footer .footer-socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}
.main-footer .footer-socials a {
  color: #aaa;
  font-size: 1.25rem;
  transition: color 0.3s, transform 0.3s;
}
.main-footer .footer-socials a:hover {
  color: #fff;
  transform: translateY(-4px);
}
.main-footer p {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ================================================
   SEARCH OVERLAY
   ================================================ */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.96);
  padding: 40px 32px 32px;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.search-overlay.open {
  transform: translateY(0);
}
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 24px;
  border-bottom: 2px solid #fff;
  padding-bottom: 12px;
}
.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Panchang', sans-serif;
  font-size: 1.4rem;
  outline: none;
  letter-spacing: 0.04em;
}
.search-box input::placeholder { color: #555; }
.search-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}
.search-results {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 60vh;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-result-item:hover { background: #2a2a2a; }
.search-result-item img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.search-result-item div { display: flex; flex-direction: column; gap: 4px; }
.search-result-item strong { color: #fff; font-size: 0.9rem; }
.search-result-item span  { color: #888; font-size: 0.8rem; }
.no-results { color: #666; font-size: 0.9rem; text-align: center; padding: 20px 0; }

/* ================================================
   WISHLIST DRAWER
   ================================================ */
.wishlist-drawer {
  position: fixed;
  top: 0; right: -400px;
  width: 380px; max-width: 100vw;
  height: 100vh;
  background: #111;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}
.wishlist-drawer.open { right: 0; }
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #222;
}
.wishlist-header h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.wishlist-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1rem;
  cursor: pointer;
}
.wishlist-close:hover { color: #fff; }
.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}
.wishlist-item img {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.wishlist-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wishlist-item-info strong { color: #fff; font-size: 0.85rem; }
.wishlist-item-info span   { color: #888; font-size: 0.78rem; }
.wishlist-remove {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.wishlist-remove:hover { color: #e74c3c; }
.wishlist-empty {
  text-align: center;
  padding: 60px 20px;
  color: #555;
}
.wishlist-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.wishlist-empty p { font-size: 0.85rem; }

/* ================================================
   OVERLAY BACKGROUND (for search/wishlist)
   ================================================ */
.overlay-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
}
.overlay-bg.open { display: block; }

/* ================================================
   WISHLIST BADGE on nav heart
   ================================================ */
.nav-wish-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wish-count {
  position: absolute;
  top: -8px; right: -10px;
  background: #fff; color: #000;
  font-family: 'Panchang', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  padding: 2px 5px; border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  min-width: 16px;
}

/* ================================================
   COLOR SELECTOR — show 3, hide rest behind toggle
   ================================================ */
.color-selector .color-dot.color-hidden {
  display: none;
}
.color-toggle-btn {
  background: none;
  border: 1px solid #bbb;
  border-radius: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #555;
  padding: 3px 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  font-family: 'Panchang', sans-serif;
  white-space: nowrap;
}
.color-toggle-btn:hover { border-color: #000; color: #000; }

/* ================================================
   1.HTML QTY ROW — visible on dark bg
   ================================================ */
.one-qty-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 8px;
}
.one-qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.one-qty-btn:hover { background: #111; color: #fff; }
.one-qty-num {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

/* 1.html wishlist btn — match main.html store style */
.card .add-to-wish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
  padding: 9px;
  border: 1px solid #ddd;
  background: transparent;
  color: #666;
  border-radius: 6px;
  font-family: 'Panchang', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}
.card .add-to-wish-btn:hover { border-color: #000; color: #000; }
.card .add-to-wish-btn.wished { background: #fff0f5; color: #e91e8c; border-color: #e91e8c; }

/* 1.html add-to-cart btn — dark on white card */
.card .add-to-cart-btn {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 11px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Panchang', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}
.card .add-to-cart-btn:hover { background: #333; }
.card .add-to-cart-btn.added { background: #2ecc71; }

/* 1.html color picker toggle */
.color-picker .color-hidden { display: none; }
.color-picker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.one-color-toggle {
  background: none;
  border: 1px solid #bbb;
  border-radius: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: #555;
  padding: 3px 9px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Panchang', sans-serif;
}
.one-color-toggle:hover { border-color: #000; color: #000; }

/* ================================================
   IMAGE PREVIEW MODAL
   ================================================ */
.img-preview-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: previewFadeIn 0.25s ease;
}
.img-preview-overlay.open {
  display: flex;
}
@keyframes previewFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.img-preview-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: previewScaleIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes previewScaleIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.img-preview-inner img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  display: block;
}
.img-preview-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.img-preview-close:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

/* Preview trigger button — sits on top-right of image-slider */
.preview-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 15;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #111;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}
/* Show on card hover */
.store-card:hover .preview-btn,
.card:hover .preview-btn {
  opacity: 1;
  pointer-events: auto;
}
.preview-btn:hover {
  background: #fff;
  transform: scale(1.08);
}


/* ================================================

/* ================================================
   UNIFIED NAV ADDITIONS
   ================================================ */

/* Hero model larger */
.hero-model { bottom: -220px; }
.hero-model img { height: 150vh; }
.hero-content { left: 40px; z-index: 6; }
.hero-socials { position: relative; z-index: 7; }

/* Group arrow note — base styles live in 1.css */

/* ================================================
   HAMBURGER + SIDE DRAWER — shared by all pages
   ================================================ */
@media (max-width: 900px) {
  .hamburger-btn { display: flex; }

  body { padding-top: 48px; }

  .nav-links {
    position: fixed !important;
    top: 0; left: -100%; right: auto;
    width: min(300px, 82vw);
    height: 100dvh;
    background: #0d0d0d !important;
    border-right: 1px solid #2a2a2a;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 72px 28px 40px !important;
    gap: 0 !important;
    z-index: 500;
    list-style: none !important;
    transition: left 0.38s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto; overflow-x: hidden;
    box-shadow: 6px 0 40px rgba(0,0,0,0.8);
  }
  .nav-links.mobile-open { left: 0 !important; }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid #2a2a2a !important;
  }
  .nav-links > li:last-child { border-bottom: none !important; }
  .nav-links a,
  .nav-links a:visited {
    display: block !important;
    padding: 20px 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.2em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-family: 'Panchang', sans-serif !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a:hover {
    color: #c8281e !important;
    padding-left: 6px !important;
    transition: color 0.2s, padding-left 0.2s !important;
  }
  .nav-links a {
    transition: color 0.2s, padding-left 0.2s !important;
  }
  .nav-links a.nav-active {
    color: #c8281e !important;
    position: relative;
  }
  .nav-links a.nav-active::before {
    content: '';
    position: absolute;
    left: -24px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 55%;
    background: #c8281e;
    border-radius: 0 3px 3px 0;
  }
  .nav-links .dropdown-menu {
    position: static !important;
    opacity: 1 !important; visibility: visible !important; transform: none !important;
    background: #1a1a1a !important;
    border: none !important; box-shadow: none !important;
    border-radius: 8px !important;
    padding: 0 0 10px 18px !important;
    min-width: 0 !important;
    display: none; /* JS controls this */
    transition: none !important;
  }
  .nav-links .dropdown-menu li { border-bottom: none !important; padding: 0 !important; }
  .nav-links .dropdown-menu li a {
    font-size: 0.75rem !important;
    color: #bbbbbb !important;
    padding: 11px 0 !important;
    letter-spacing: 0.15em !important;
    font-weight: 500 !important;
  }
  .nav-links .dropdown-menu li a:hover { color: #fff !important; }

  /* ---- HERO main.html ---- */
  .hero { min-height: 100svh; height: 100svh; overflow: hidden; }
  .hero-model {
    /* anchor bottom, stretch tall enough to always reach the top gradient */
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  /* 100svh ensures model spans full screen height — no gap above */
  .hero-model img { height: 100svh !important; }
  .hero-content-wrapper, .hero-content {
    position: absolute !important;
    left: 20px !important; right: 20px !important;
    bottom: 20px !important; top: auto !important;
    transform: none !important; max-width: 100% !important; z-index: 6;
  }
  .hero-subtext { font-size: 0.78rem; }
  .hero-btn { padding: 11px 20px; font-size: 0.73rem; }
  .hero-socials { gap: 10px; margin-top: 14px; }
  .hero-socials a { width: 38px; height: 38px; font-size: 1rem; }
  .floating-card { display: none !important; }
  .hero-dots { right: 10px; }

  /* ---- General ---- */
  body { overflow-x: hidden; }
  .coming-soon-section { padding: 60px 16px; }
  .coming-soon-grid { grid-template-columns: 1fr; gap: 18px; }
  .coming-card { height: 260px; }
  .early-access-form { flex-direction: column; align-items: stretch; }
  .early-access-form input { width: 100%; max-width: 100%; }
  .early-access-form button { width: 100%; }

  /* ---- STORE ---- */
  .store-section { padding: 60px 14px; }
  .store-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .store-grid.collapsed .store-card:nth-child(n+4) { display: none; }
  .store-card img { height: 200px; }
  .store-card-info { padding: 10px 12px; gap: 8px; }
  .store-card-info h4 { font-size: 0.82rem; }
  .card-action-row { flex-direction: column; gap: 8px; padding: 8px 12px; }
  .card-action-row .add-to-cart-btn { width: 100%; }
  .size-selector { flex-wrap: wrap; height: auto; gap: 6px; }
  .size-btn { font-size: 0.65rem; padding: 5px 10px; }
  .add-to-wish-btn { font-size: 0.65rem; margin: 0 12px 10px; }

  /* ---- 1.html stocks ---- */
  .isee { font-size: clamp(2.8rem, 12vw, 5rem) !important; }
  .spring { padding: 60px 14px 70px; }
  .categories { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .products { flex-wrap: wrap; gap: 18px; justify-content: center; }
  .card { width: 90%; max-width: 380px; }
  .card .add-to-cart-btn, .card .add-to-wish-btn { width: 100%; display: block; box-sizing: border-box; }
  .card .add-to-wish-btn { margin-top: 8px; }

  /* ---- Search overlay ---- */
  .search-overlay { padding: 20px 14px; }
  .search-box { max-width: 100%; gap: 8px; }
  .search-box input { font-size: 1.1rem; min-width: 0; flex: 1; }
  .search-close { font-size: 1rem; flex-shrink: 0; padding: 6px 8px; }
  .search-results { max-width: 100%; max-height: 55vh; }
  .search-result-item { padding: 8px 10px; gap: 10px; }
  .search-result-item img { width: 48px; height: 48px; }

  /* ---- Wishlist ---- */
  .wishlist-drawer { width: min(340px, 92vw) !important; right: -100% !important; }
  .wishlist-drawer.open { right: 0 !important; }

  /* ---- Footer ---- */
  .main-footer { padding: 40px 16px 24px; }
  .main-footer .footer-socials { gap: 16px; }

  .nav-inner { padding: 12px 20px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 10px 14px; }
  .nav-logo { font-size: 0.95rem !important; }
  .store-grid { grid-template-columns: 1fr; }
  .products { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 100%; }
  .hero-model img { height: 85svh !important; }
  .store-card img { height: 220px; }
}

/* ── Mobile drawer close (X) button — REMOVED, hamburger handles close ── */
@media (max-width: 900px) {
  .nav-drawer-close { display: none !important;
    position: absolute;
    top: 20px; left: 22px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.7); font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    transition: color .2s, background .2s;
    z-index: 501;
  }
  .nav-drawer-close:hover { color: #fff; background: rgba(255,255,255,.08); }
  .nav-links { position: relative; }
}

/* ── Hamburger improved — smoother X transform ── */
.hamburger-btn span {
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              opacity 0.22s ease,
              background 0.2s ease !important;
}
.hamburger-btn:hover span { background: rgba(255,255,255,0.7) !important; }



/* ════ IMPROVED HAMBURGER → X ANIMATION ════ */
.hamburger-btn {
  position: relative; z-index: 501;
}
.hamburger-btn span {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              opacity 0.2s ease,
              background 0.2s !important;
}
/* Ensure X state is crisp */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-6px) !important;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Hide the injected close button (we removed the JS, but safety net) */
.nav-drawer-close { display: none !important; }

/* ════ SMOOTHER MOBILE DRAWER ════ */
@media (max-width: 900px) {
  .nav-links {
    transition: left 0.38s cubic-bezier(0.16,1,0.3,1) !important;
  }
  .nav-drawer-overlay {
    transition: opacity 0.3s ease !important;
    opacity: 0;
  }
  .nav-drawer-overlay.open {
    opacity: 1 !important;
    display: block !important;
  }
}
