/* ==================================================
   1. ROOT VARIABLES & GLOBAL RESET
================================================== */
:root {
  --black: #0B0B0B;
  --charcoal: #171717;
  --charcoal-2: #1f1f1f;
  --gold: #D4AF37;
  --gold-soft: #e8cd7a;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --whatsapp: #25D366;
  --emerald: #0F766E;
  --line: rgba(212, 175, 55, 0.18);
  --ink-70: rgba(245, 245, 245, 0.7);
  --ink-50: rgba(245, 245, 245, 0.5);
  --ease: cubic-bezier(.16, .84, .32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

h1, h2, h3, h4, .font-display {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media(max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ==================================================
   2. SCROLL REVEAL ANIMATIONS
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* ==================================================
   3. HEADER & NAVBAR (MATCHING BLOG/HOME EXACTLY)
================================================== */
header, #navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  background: rgba(14, 14, 14, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 110px !important;
  height: 50px !important;
}

.brand img,
#nav-brand-logo {
  height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
}

nav.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 auto !important;
}

nav.nav-links a {
  color: #e0e0e0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease !important;
}

nav.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

nav.nav-links a:hover {
  color: #f3d078 !important;
}

nav.nav-links a:hover::after,
nav.nav-links a.active::after {
  width: 100%;
}

nav.nav-links a.active {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.nav-right {
  display: flex !important;
  align-items: center !important;
  min-width: 130px !important;
  justify-content: flex-end !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.btn-gold {
  background: linear-gradient(120deg, #f3d078, #d4af37 60%, #b8912b) !important;
  color: #0b0b0b !important;
  border: 1px solid rgba(243, 208, 120, 0.5) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(212, 175, 55, 0.55);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

@media(max-width: 980px) {
  nav.nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    height: 100vh !important;
    width: min(78vw, 340px) !important;
    background: var(--charcoal) !important;
    flex-direction: column !important;
    padding: 110px 40px !important;
    gap: 26px !important;
    transition: right .5s var(--ease) !important;
    border-left: 1px solid var(--line) !important;
  }
  nav.nav-links.open { right: 0 !important; }
  .menu-toggle { display: flex !important; }
  .nav-right { display: none !important; }
}

/* ==================================================
   4. FLOATING WHATSAPP
================================================== */
#whatsapp-float {
  position: fixed;
  top: 96px;
  right: 26px;
  z-index: 700;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
}

#whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .65; }
  100% { transform: scale(2.1); opacity: 0; }
}

#whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@media(max-width: 768px) {
  #whatsapp-float {
    top: auto;
    bottom: 26px;
    right: 20px;
  }
}

/* ==================================================
   5. PRODUCT HERO & CATEGORY PILLS (BLOG STYLE)
================================================== */
.product-hero {
  padding: 170px 0 60px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.12), transparent 55%), radial-gradient(ellipse at 85% 30%, rgba(15, 118, 110, 0.2), transparent 50%), var(--black);
}

.product-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(100deg, #fff 30%, #f0e3ba 55%, var(--gold) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 20px;
}

.product-hero p {
  margin: 20px auto 0;
  color: var(--ink-70);
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cat-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.cat-pill {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-70);
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 500;
  transition: .35s;
  cursor: pointer;
}

.cat-pill:hover {
  border-color: var(--gold);
  color: var(--white);
}

.cat-pill.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

/* ==================================================
   6. CATALOG GRID & ITEM CARDS
================================================== */
.catalog-section {
  padding: 20px 0 120px;
  background: var(--black);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.item-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.item-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.item-card.featured-card-border {
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.item-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
}

.badge-gold {
  background: var(--gold);
  color: var(--black);
}

.badge-glass {
  background: rgba(11, 11, 11, 0.7);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  backdrop-filter: blur(6px);
}

.item-media {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 70%), linear-gradient(180deg, #1f1f1f, #141414);
}

.item-media img {
  max-height: 175px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.item-card:hover .item-media img {
  transform: scale(1.08) translateY(-4px);
}

.item-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-type {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.item-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 8px 0 10px;
  color: var(--white);
  line-height: 1.35;
}

.item-body p {
  color: var(--ink-70);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.item-specs {
  list-style: none;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-50);
}

.item-specs svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.item-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-price-wrap {
  display: flex;
  flex-direction: column;
}

.item-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Manrope';
}

.item-old-price {
  font-size: 0.82rem;
  color: var(--ink-50);
  text-decoration: line-through;
}

.item-footer .btn {
  padding: 10px 18px;
  font-size: 11.5px;
}

/* ==================================================
   7. FOOTER (MATCHING BLOG/HOME EXACTLY)
================================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  min-width: unset !important;
  margin-bottom: 18px !important;
}

.footer-brand .brand img,
#footer-brand-logo {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer-brand p {
  color: var(--ink-50);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--ink-50);
  font-size: .9rem;
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  color: var(--ink-50);
  font-size: .82rem;
}
/* ==================================================
   FOOTER LOGO & BRAND VISIBILITY FIX
================================================== */
footer {
  background: #080808 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 60px 0 30px !important;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.footer-brand .brand {
  display: inline-block !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

#footer-brand-logo {
  height: 52px !important;            /* लोगोको साइज ठूलो बनाइएको */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1) !important; /* लोगोलाई १००% चम्किलो शुद्ध सेतो बनाउने */
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  max-width: 340px !important;
}
/* ==================================================
   MOBILE HEADER LOGO SIZE FIX (< 980px)
================================================== */
@media (max-width: 980px) {
  header#navbar,
  header {
    height: 70px !important;
  }

  .brand,
  header .brand {
    height: 40px !important;
    min-width: unset !important;
    display: flex !important;
    align-items: center !important;
  }

  #nav-brand-logo,
  .brand img,
  header .brand img {
    height: 34px !important;      /* मोबाइलमा चिटिक्क देखिने साइज */
    max-height: 34px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}