/* ═══════════════════════════════════════════════
   NAWABIQUE — Ultra Premium CSS v3
   ═══════════════════════════════════════════════ */

:root {
  --cream:     #FAF7F0;
  --cream-mid: #F0E6D0;
  --gold-lt:   #F5DC8A;
  --gold:      #C9A84C;
  --gold-dk:   #A8722A;
  --gold-deep: #7A4F1A;
  --ink:       #1A0E04;
  --ink-soft:  #5C3D18;
  --f-display: 'Cinzel', serif;
  --f-body:    'Cormorant Garamond', serif;
}

.logo, .brand-name, header h1, nav .logo {
  font-size: 80px !important;  /* increase number for bigger */
  letter-spacing: 6px !important;
}

.logo img, header img, nav img {
  width: 120px !important;  /* adjust this size */
  height: auto !important;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

nav a, .nav-link, header a {
  font-size: 20px !important;  /* increase this number to make bigger */
  letter-spacing: 3px !important;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Canvas ── */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════
   ANIMATED GOLDEN ORBS
══════════════════════════════════ */
.orb-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat linear infinite;
  will-change: transform, opacity;
}

/* Large orbs */
.orb-lg {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,240,160,0.95),
    rgba(201,168,76,0.75) 40%,
    rgba(168,114,42,0.40) 70%,
    transparent 100%);
  box-shadow:
    0 0 30px 10px rgba(240,208,128,0.55),
    0 0 60px 20px rgba(201,168,76,0.25),
    inset 0 0 20px rgba(255,248,200,0.6);
  border: 1.5px solid rgba(240,208,128,0.5);
}

/* Medium orbs */
.orb-md {
  width: 55px; height: 55px;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,245,180,0.9),
    rgba(201,168,76,0.65) 45%,
    rgba(140,90,30,0.30) 75%,
    transparent 100%);
  box-shadow:
    0 0 20px 8px rgba(240,208,128,0.45),
    0 0 40px 14px rgba(201,168,76,0.20),
    inset 0 0 14px rgba(255,248,200,0.5);
  border: 1px solid rgba(240,208,128,0.4);
}

/* Small orbs */
.orb-sm {
  width: 28px; height: 28px;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,248,200,0.95),
    rgba(201,168,76,0.70) 50%,
    transparent 100%);
  box-shadow:
    0 0 12px 5px rgba(240,208,128,0.50),
    0 0 24px 8px rgba(201,168,76,0.20);
  border: 1px solid rgba(240,208,128,0.35);
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0)      rotate(0deg)   scale(0.85); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translate(var(--dx), var(--dy)) rotate(180deg) scale(1.08); opacity: 0.9; }
  92%  { opacity: 1; }
  100% { transform: translate(var(--dx2),var(--dy2)) rotate(360deg) scale(0.85); opacity: 0; }
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.28);
  transition: box-shadow 0.4s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(138,94,32,0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  user-select: none;
}

.nav-logo-img {
  width: 54px; height: 54px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.55);
  box-shadow:
    0 0 14px rgba(201,168,76,0.40),
    0 0 30px rgba(201,168,76,0.15);
}

.nav-brand-text {
  font-family: var(--f-display);
  font-size: 1.8rem;    /* ← only change this line */
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
}

.nav-link {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  transition: width 0.38s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-dk); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 100px;
  text-align: center;
  overflow: hidden;
}

/* ── Gold dust particles ── */
.dust {
  position: absolute;
  inset: 0; z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.dust-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,208,128,0.9), transparent 70%);
  animation: dustFloat linear infinite;
  pointer-events: none;
}
@keyframes dustFloat {
  0%   { transform: translateY(0) scale(0);    opacity: 0; }
  8%   { transform: translateY(-8px) scale(1); opacity: 0.85; }
  85%  { opacity: 0.25; }
  100% { transform: translateY(-180px) scale(0.4); opacity: 0; }
}

/* ── Logo wrapper ── */
.logo-wrap {
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(32px);
  animation: riseIn 1.3s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Golden halo ring around logo */
.logo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.22);
  animation: haloglow 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}
.logo-wrap::after {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.10);
  pointer-events: none;
  z-index: -1;
}

@keyframes haloglow {
  from { box-shadow: 0 0 30px rgba(201,168,76,0.12), inset 0 0 30px rgba(240,208,128,0.04); border-color: rgba(201,168,76,0.18); }
  to   { box-shadow: 0 0 70px rgba(201,168,76,0.28), inset 0 0 50px rgba(240,208,128,0.08); border-color: rgba(240,208,128,0.40); }
}

/* The actual logo image — LARGE */
.logo-img {
  display: block;
  width: min(680px, 90vw);
  height: auto;
  mix-blend-mode: multiply;
  animation: logoAura 5s ease-in-out infinite alternate;
  filter:
    drop-shadow(0 8px 40px rgba(138,94,32,0.22))
    drop-shadow(0 0 16px rgba(201,168,76,0.30));
}

@keyframes logoAura {
  from {
    filter:
      drop-shadow(0 8px 36px rgba(138,94,32,0.18))
      drop-shadow(0 0 12px rgba(201,168,76,0.22));
  }
  to {
    filter:
      drop-shadow(0 12px 60px rgba(138,94,32,0.35))
      drop-shadow(0 0 40px rgba(240,208,128,0.60))
      drop-shadow(0 0 80px rgba(201,168,76,0.25));
  }
}

/* ── Hero CTA ── */
.hero-cta {
  position: relative;
  z-index: 4;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  opacity: 0;
  animation: riseIn 1s ease 1.3s forwards;
}

.hero-tagline {
  font-family: var(--f-body);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.07em;
}

.tag-star {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7em;
  vertical-align: middle;
  margin: 0 10px;
}

/* ── CTA Button — BIG & PREMIUM ── */
.cta-btn {
  position: relative;
  display: inline-block;
  padding: 20px 72px;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #FAF7F0;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(
    110deg,
    #5C3210 0%,
    #A8722A 22%,
    #C9A84C 45%,
    #F0D080 60%,
    #C9A84C 76%,
    #A8722A 90%,
    #5C3210 100%
  );
  background-size: 220% 100%;
  border: none;
  transition:
    background-position 0.7s ease,
    transform 0.3s ease,
    box-shadow 0.4s ease;
  box-shadow:
    0 6px 36px rgba(138,94,32,0.45),
    0 0 0 1.5px rgba(201,168,76,0.55),
    0 0 0 4px rgba(201,168,76,0.10),
    inset 0 1px 0 rgba(240,208,128,0.30),
    inset 0 -1px 0 rgba(90,50,10,0.30);
}

.cta-btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 50px rgba(138,94,32,0.58),
    0 0 0 1.5px rgba(240,208,128,0.75),
    0 0 0 6px rgba(201,168,76,0.12),
    0 0 60px rgba(201,168,76,0.22),
    inset 0 1px 0 rgba(255,245,190,0.40);
}

.cta-btn:active { transform: translateY(-1px) scale(1.00); }

.cta-label { position: relative; z-index: 1; }

/* Shine sweep */
.cta-shine {
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 10%,
    rgba(255,255,255,0.38) 50%,
    transparent 90%
  );
  transform: skewX(-22deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.cta-btn:hover .cta-shine { left: 140%; }

/* Outer gold border ring on button */
.cta-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
  transition: border-color 0.4s;
}
.cta-btn:hover::before { border-color: rgba(240,208,128,0.55); }

/* ── Bottom ornament ── */
.bottom-orn {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  animation: riseIn 1s ease 1.8s forwards;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 860px) {
  .navbar { padding: 14px 22px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 78px; right: 0;
    width: 220px;
    flex-direction: column;
    gap: 20px;
    padding: 28px 30px;
    background: rgba(250,247,240,0.97);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(201,168,76,0.22);
    box-shadow: -4px 0 28px rgba(138,94,32,0.10);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .logo-img { width: 92vw; }
  .hero-tagline { font-size: 1.1rem; }
  .cta-btn { padding: 17px 44px; font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}



@media (max-width: 768px) {
  .explore-cart-btn {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 10px !important;
    font-size: 0.6rem !important;
  }

  .explore-info {
    display: flex !important;
    flex-direction: column !important;
    padding: 12px 10px 14px !important;
  }
}

/* Golden Dots */
.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-image:
    radial-gradient(circle, #d4af37 2px, transparent 2px),
    radial-gradient(circle, #d4af37 1px, transparent 1px),
    radial-gradient(circle, #d4af37 3px, transparent 3px);

    background-size:150px 150px, 200px 200px, 250px 250px;
    animation:goldMove 20s linear infinite;

    opacity:0.7;
    pointer-events:none;
}

@keyframes goldMove{
    0%{
        transform:translateY(0);
    }
    100%{
        transform:translateY(-200px);
    }
}

/* Text above dots */
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    color:#d4af37;
    text-shadow:0 0 20px rgba(212,175,55,0.8);
}




/* ══════════════════════════════════
   SHOP BY CATEGORY
══════════════════════════════════ */
.category-section {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
  background: var(--cream);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.category-title {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.category-sub {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 420px;
  line-height: 1.6;
}



.see-all {
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dk);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.see-all:hover { color: var(--gold); }

/* Grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.category-item p {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

/* Golden Circle */
.circle-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(
    135deg,
    #F5DC8A,
    #C9A84C,
    #A8722A,
    #F5DC8A,
    #C9A84C
  );
  box-shadow:
    0 0 18px rgba(201,168,76,0.45),
    0 0 40px rgba(201,168,76,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.circle-wrap:hover {
  transform: scale(1.07);
  box-shadow:
    0 0 30px rgba(201,168,76,0.70),
    0 0 60px rgba(201,168,76,0.30);
}

.circle-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--cream);
}

/* Responsive */
@media (max-width: 860px) {
  .category-section { padding: 60px 20px; }
  .category-header { flex-direction: column; gap: 12px; }
  .circle-wrap { width: 110px; height: 110px; }
  .category-title { font-size: 1.5rem; }
}


/* ══ CATEGORY SECTION ══ */
.category-section {
  padding: 60px 0 60px 30px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-right: 30px;
}

/* THIS IS THE KEY — horizontal scroll row */
.category-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  gap: 24px;
  padding-bottom: 20px;
  padding-right: 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  flex-shrink: 0 !important;
  width: 130px;
  gap: 12px;
}

.circle-wrap {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #F5DC8A, #C9A84C, #A8722A, #F5DC8A);
  box-shadow: 0 0 18px rgba(201,168,76,0.45);
  flex-shrink: 0;
}

.circle-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FAF7F0;
}

.category-item p {
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}





/* ══════════════════════════════════
   EXPLORE COLLECTION
══════════════════════════════════ */
.explore-section {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
  background: linear-gradient(
    160deg,
    #FAF7F0 0%,
    #F5EDD8 40%,
    #EDE0C4 100%
  );
  text-align: center;
}

/* Top ornament line */
.explore-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.explore-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.explore-sub {
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-dk);
  text-transform: uppercase;
}

.explore-title {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.explore-desc {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 50px;
}

/* Cards grid */
.explore-grid {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}









.img-slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.img-slider::-webkit-scrollbar { display: none; }
.img-slider img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.dot.active {
  background: white;
}


/* Single card */
.explore-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  width: 320px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow:
    0 8px 40px rgba(138,94,32,0.10),
    0 0 0 1px rgba(201,168,76,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(138,94,32,0.20),
    0 0 0 1.5px rgba(201,168,76,0.35);
}

/* Image area */
.explore-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, #F0E6D0, #E8D5B0);
}
.explore-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.explore-card:hover .explore-img-wrap img {
  transform: scale(1.06);
}

/* Badge */
.explore-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(110deg, #A8722A, #C9A84C, #F5DC8A);
  color: #FAF7F0;
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(138,94,32,0.30);
}

/* Info area */
.explore-info {
  padding: 24px 22px 28px;
  text-align: left;
}

.explore-cat {
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.explore-name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 10px;
  line-height: 1.4;
}

.explore-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-new {
  font-family: var(--f-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dk);
}
.price-old {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: #aaa;
  text-decoration: line-through;
}

/* Size buttons */
.explore-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.size-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.45);
  background: transparent;
  border-radius: 4px;
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
}
.size-btn:hover, .size-btn.active {
  background: linear-gradient(135deg, #A8722A, #C9A84C);
  color: #FAF7F0;
  border-color: transparent;
}

/* Add to Cart button */
.explore-cart-btn {
  width: 100%;
  padding: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FAF7F0;
  background: linear-gradient(110deg,
    #5C3210, #A8722A, #C9A84C, #F0D080, #C9A84C, #A8722A, #5C3210
  );
  background-size: 220% 100%;
  border-radius: 4px;
  transition: background-position 0.6s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(138,94,32,0.35);
}
.explore-cart-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 860px) {
  .explore-section { padding: 60px 20px; }
  .explore-title { font-size: 1.6rem; }
  .explore-card { width: 100%; max-width: 340px; }
}









/* ══ MOBILE CARD FIX ══ */
@media (max-width: 768px) {
  .explore-section {
    padding: 40px 12px;
  }

  .explore-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-wrap: unset !important;
  }

  .explore-card {
    width: 100% !important;
    border-radius: 10px;
  }

  .explore-img-wrap {
    height: 200px !important;
  }

  .explore-info {
    padding: 12px 10px 14px !important;
  }

  .explore-name {
    font-size: 0.75rem !important;
    margin: 4px 0 6px !important;
    line-height: 1.3 !important;
  }

  .explore-cat {
    font-size: 0.55rem !important;
  }

  .price-new {
    font-size: 0.9rem !important;
  }

  .price-old {
    font-size: 0.75rem !important;
  }

  /* Hide sizes on mobile like Ada */
  .explore-sizes {
    display: none !important;
  }

  .explore-cart-btn {
    padding: 10px !important;
    font-size: 0.6rem !important;
  }
}





/* ══ WHATSAPP BUTTON ══ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px 12px 14px;
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37,211,102,0.60);
}

.wa-icon {
  width: 32px;
  height: 32px;
}







/* ══ NAV ACTIONS ══ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, background 0.3s;
}
.nav-icon-btn:hover {
  color: var(--gold-dk);
  background: rgba(201,168,76,0.10);
}

/* ══ SEARCH BAR ══ */
.search-bar-wrap {
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 299;
  background: rgba(250,247,240,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 14px 30px;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 8px 30px rgba(138,94,32,0.10);
}
.search-bar-wrap.open {
  transform: translateY(0);
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  border-bottom: 1.5px solid rgba(201,168,76,0.45);
  padding-bottom: 8px;
}

#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}
#searchInput::placeholder { color: var(--ink-soft); opacity: 0.6; }

#searchClose {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.3s;
}
#searchClose:hover { color: var(--gold-dk); }

/* ══ SIDEBAR OVERLAY ══ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(26,14,4,0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══ SIDEBAR ══ */
.sidebar {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  z-index: 401;
  background: var(--cream);
  border-left: 1px solid rgba(201,168,76,0.25);
  box-shadow: -8px 0 40px rgba(138,94,32,0.15);
  padding: 0;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
}
.sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.20);
  background: linear-gradient(135deg, #F5EDD8, #FAF7F0);
}

.sidebar-brand {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 4px 8px;
  transition: color 0.3s;
}
.sidebar-close:hover { color: var(--gold-dk); }

.sidebar-section {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.sidebar-label {
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
}

.sidebar-link {
  display: block;
  font-family: var(--f-body);
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.3s, padding-left 0.3s;
  letter-spacing: 0.04em;
}
.sidebar-link:hover {
  color: var(--gold-dk);
  padding-left: 8px;
}
.sidebar-link:last-child { border-bottom: none; }

/* Hamburger animation */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold-dk);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}















/* ══ BOTTOM NAVIGATION BAR ══ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: none; /* mobile only */
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(90deg, #A8722A, #C9A84C, #D4A843, #C9A84C, #A8722A);
  padding: 10px 0 14px;
  box-shadow: 0 -4px 20px rgba(138,94,32,0.30);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255,255,255,0.80);
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
  flex: 1;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: #fff;
}

.bottom-nav-item svg {
  stroke: currentColor;
}

/* NEW center button */
.bottom-nav-new {
  color: #fff !important;
}

.new-label {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  margin-top: 6px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }

  /* Add padding so content doesn't hide behind bar */
  body {
    padding-bottom: 70px;
  }
}