/* ================= GLOBAL VARIABLES ================= */
:root {
  --primary: #c8a14a;
  --accent-rose: #d6a7b2;
  --accent-blush: #f2d7df;

  --dark: #0e0e0e;
  --light: #f9f9f9;
  --gray: #777;

  --glass: rgba(255,255,255,0.92);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #faf6f8 40%,
    #f6eef2 100%
  );
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--glass);
  backdrop-filter: blur(18px);

  box-shadow:
    0 14px 45px rgba(0,0,0,0.06),
    inset 0 -1px 0 rgba(255,255,255,0.6);
}


/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  perspective: 1000px;
  transform-origin: center;
  backface-visibility: hidden;
  color: #a80355;
  background-color: transparent;
}

/* Logo Image – No Color Effects */
.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transform-origin: left center;
  background: transparent;
  box-shadow: none;
  filter: none;
  transition: transform 0.3s ease;
}

/* Hover Effect – Clean (No Color) */
.logo img:hover {
  transform: scale(1.05);
}


/* ================= DESKTOP LINKS ================= */
.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #2f2f2f;
  position: relative;

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--accent-rose),
    var(--accent-blush)
  );

  border-radius: 2px;
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: #a56a7c;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
/* ================= Hamburger Menu ================= */
.hamburger {
  display: none; /* will show via media query on mobile */
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  z-index: 10001; /* above everything */
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--dark); /* your global dark color */
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Hamburger open animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Optional: make sure Instagram icon aligns perfectly with hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px; /* space between Instagram icon and hamburger */
}

.nav-ig img {
  height: 26px; /* same as hamburger height for symmetry */
  width: 38px;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
}

.nav-ig img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Show hamburger only on mobile */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none; /* hide desktop links on mobile */
  }
}


/* ================= PREMIUM MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 76px;
  right: 16px;

  width: min(50vw, 360px);

  background:
    linear-gradient(
      45deg, #ffc3a0, #FFAFBD
    );

  backdrop-filter: blur(22px);

  border-radius: 28px 28px 36px 36px;

  box-shadow:
    0 40px 90px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.75);

  padding: 22px 18px 26px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  opacity: 0;
  transform: translateY(-20px) scale(0.94);
  pointer-events: none;

  transition: all 0.5s cubic-bezier(.22,1,.36,1);
  z-index: 1100;
}

/* Elegant glowing border */
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    120deg,
    rgba(212,175,55,0.55),
    rgba(255,255,255,0.4),
    rgba(212,175,55,0.55)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ================= MOBILE LINKS ================= */
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.6px;
  text-decoration: none;
  color: #1b1b1b;

  padding: 13px 16px;
  border-radius: 16px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.4)
  );

  box-shadow:
    0 8px 18px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);

  transform: translateY(8px);
  opacity: 0;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease;
}

/* Stagger animation */
.mobile-menu.active a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.active a:nth-child(2) { transition-delay: .12s; }
.mobile-menu.active a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.active a:nth-child(4) { transition-delay: .24s; }
.mobile-menu.active a:nth-child(5) { transition-delay: .30s; }
.mobile-menu.active a:nth-child(6) { transition-delay: .36s; }

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a:hover {
  box-shadow:
    0 18px 36px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ================= FOOTER ================= */
.footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transform-origin: left center;

  filter:
    drop-shadow(0 0 6px rgba(255, 140, 170, 0.45))
    drop-shadow(0 0 14px rgba(255, 97, 166, 0.35));

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 10px rgba(255, 140, 170, 0.75))
    drop-shadow(0 0 22px rgba(255, 97, 166, 0.6));
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(45deg, #ffc3a0, #FFAFBD);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

 border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}

/* ================= WHOLESALE ALERT ================= */
.wholesale-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.wholesale-alert.show {
  opacity: 1;
  pointer-events: auto;
}

.alert-box {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(245,245,245,0.95)
  );
  padding: 26px 28px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border-radius: 22px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.8);

  animation: popIn 0.45s cubic-bezier(.22,1,.36,1);
}

.alert-box p {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
  color: #2b2b2b;
  margin-bottom: 18px;
}

.alert-box strong {
  color: #160404;
}

.alert-box button {
  border: none;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #d4af37, #f0d58c);
  color: #1a1a1a;
  box-shadow: 0 10px 22px rgba(212,175,55,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alert-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212,175,55,0.45);
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================= NAV CONTAINER ================= */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ================= FLOATING ENQUIRY ================= */
#instantEnquiry {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  cursor: pointer;
}

/* TEXT STATE */
.enquiry-text {
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(120deg, #ff9a9e, #fad0c4);
  box-shadow: 0 0 30px rgba(255, 160, 160, 0.9);
  animation: zoomGlow 1.8s ease-in-out infinite;
}

/* LOGO STATE (NO CIRCLE MOTION, ONLY ZOOM) */
.enquiry-logo {
  width: 50px;
  height: 50px;
  border-radius: 15px; /* 🔥 NOT CIRCULAR */
  background: linear-gradient(135deg, #ffffff, #ffb3c6);
  box-shadow: 0 0 35px rgba(255, 180, 200, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  animation: zoomGlowLogo 1.6s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */

/* Text zoom + glow */
@keyframes zoomGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 160, 160, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 180, 180, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 160, 160, 0.6);
  }
}

/* Logo zoom + soft light */
@keyframes zoomGlowLogo {
  0% {
    transform: scale(1);
    box-shadow: 0 0 22px rgba(255, 180, 200, 0.7);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 50px rgba(255, 200, 220, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 22px rgba(255, 180, 200, 0.7);
  }
}

/* ================= POPUP ================= */
.enquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.popup-card {
  background: rgba(255,255,255,0.9);
  padding: 28px;
  border-radius: 22px;
  width: 320px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: popupIn 0.5s ease;
}

.popup-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  text-align: center;
}

.popup-card input,
.popup-card textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

.popup-card button {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  font-weight: 600;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}

/* ================= ANIMATIONS ================= */
@keyframes glowPulse {
  from { box-shadow: 0 0 15px rgba(255,150,150,0.6); }
  to { box-shadow: 0 0 35px rgba(255,150,150,1); }
}

@keyframes floatSpin {
  from { transform: rotate(0deg) translateY(0); }
  to { transform: rotate(360deg) translateY(-4px); }
}

@keyframes popupIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ================= NAV RIGHT SOCIAL ICONS ================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Shared social style */
.nav-social {
  width: 38px;
  height: 38px;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);

  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-social img {
  width: 18px;
  height: 18px;
}

/* Hover animation */
.nav-social:hover {
  transform: translateY(-2px) scale(1.08);
}

/* Platform glow */
.nav-social.instagram:hover {
  box-shadow: 0 0 16px rgba(225,48,108,0.55);
}

.nav-social.whatsapp:hover {
  box-shadow: 0 0 18px rgba(37,211,102,0.6);
}
