/*
Theme Name: Zugnoo Jewellery
Theme URI: https://zugnoojewellery.com
Author: Samson Vardhan
Description: Official Cherry (#4D0909) & Cream (#FFFCF6) luxury WooCommerce theme for handmade jewellery and fashion accessories.
Version: 3.5.0
License: GNU General Public License v2 or later
Text Domain: zugnootheme
*/

/* ==========================================================================
   1. DESIGN SYSTEM & GEN-Z BLUSH / LILAC TOKENS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&family=DM+Sans:opsz,wght@9..40,300..700&display=swap');

:root {
  /* STRICT 2-COLOR PALETTE ONLY: CHERRY (#4D0909) & CREAM (#FFFCF6) */
  --bg-primary: #FFFCF6;        /* CREAM */
  --bg-card: #FFFCF6;           /* CREAM */
  --bg-dark: #4D0909;           /* CHERRY */
  --bg-section: #FFFCF6;        /* CREAM */
  --bg-lilac: #FFFCF6;          /* CREAM */

  /* Signature Cherry Accents */
  --accent-pink: #4D0909;       /* CHERRY */
  --accent-pink-hover: #4D0909; /* CHERRY */
  --accent-pink-deep: #4D0909;  /* CHERRY */
  --accent-lilac: #4D0909;      /* CHERRY */
  --accent-purple: #4D0909;     /* CHERRY */
  --accent-purple-hover: #4D0909;
  --accent-purple-dark: #4D0909;
  --accent-purple-light: #FFFCF6; /* CREAM */
  --accent-peach: #4D0909;      /* CHERRY */
  --accent-butter: #FFFCF6;     /* CREAM */

  /* Neutrals & Borders */
  --text-main: #4D0909;         /* CHERRY */
  --text-dark: #4D0909;         /* CHERRY */
  --text-body: #4D0909;         /* CHERRY */
  --text-muted: #4D0909;        /* CHERRY */
  --border-color: #4D0909;      /* CHERRY */
  --border-light: #4D0909;      /* CHERRY */

  /* Sale Tags & Badges */
  --color-sale-tag: #4D0909;
  --color-star-yellow: #4D0909; /* CHERRY */

  /* Typography */
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Baloo 2', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Brand Colors & Shadows */
  --grad-pink-lilac: #4D0909;
  --grad-lilac-pink: #4D0909;
  --grad-peach-pink: #4D0909;
  --grad-blush: #FFFCF6;
  --shadow-pink-glow: 0 8px 24px rgba(77, 9, 9, 0.15);
  --shadow-lilac-glow: 0 8px 24px rgba(77, 9, 9, 0.15);

  /* Compatibility Tokens */
  --clr-bg: #FFFCF6;
  --clr-surface: #FFFCF6;
  --clr-ink: #4D0909;
  --clr-ink-soft: #4D0909;
  --clr-accent: #4D0909;
  --clr-gold: #4D0909;
  --clr-line: #4D0909;
  --clr-success: #4D0909;
  --clr-danger: #4D0909;

  /* Spacing & Borders */
  --radius-xs: 4px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--accent-pink);
  color: #FFFCF6;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fun Handwritten Accent Text */
.zg-script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--accent-pink);
}

/* ==========================================================================
   2.1 FLOATING STICKERS & PLAYFUL GRAPHICS
   ========================================================================== */
.zg-sticker {
  display: none !important;
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 6;
  line-height: 1;
  font-family: var(--font-script);
  font-weight: 700;
  filter: drop-shadow(0 6px 14px rgba(232, 69, 122, 0.25));
  animation: zg-float 6s ease-in-out infinite;
}

.zg-sticker--spin {
  animation: zg-float 6s ease-in-out infinite, zg-spin 14s linear infinite;
}

.zg-sticker--bounce {
  animation: zg-bounce 2.4s ease-in-out infinite;
}

.zg-sticker--small { font-size: 1.4rem; }
.zg-sticker--med { font-size: 2.1rem; }
.zg-sticker--big { font-size: 3rem; }

.zg-sticker--tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #FFFCF6;
  background: var(--grad-pink-lilac);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(77, 9, 9, 0.4);
  transform: rotate(-8deg);
  animation: zg-bounce 3s ease-in-out infinite;
}

.zg-sticker--outline {
  color: var(--accent-pink);
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent;
}

@keyframes zg-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes zg-bounce {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes zg-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes zg-pop-in {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.zg-pop { animation: zg-pop-in 0.5s ease both; }

/* --- Sticker Animation Flavours --- */
.zg-sticker--twinkle { animation: zg-twinkle 2.4s ease-in-out infinite; }
.zg-sticker--heartbeat { animation: zg-pulse-heart 1.6s ease-in-out infinite; }
.zg-sticker--wiggle { animation: zg-wiggle 3.2s ease-in-out infinite; }
.zg-sticker--flutter { animation: zg-flutter 4.5s ease-in-out infinite; }
.zg-sticker--drift { animation: zg-drift 5.5s ease-in-out infinite; }
.zg-sticker--grow { animation: zg-grow-shrink 3.6s ease-in-out infinite; }

.zg-sticker--ring {
  animation: zg-glow-ring 2s ease-out infinite;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 8px 20px rgba(77, 9, 9, 0.35);
  font-size: 1.6rem;
}

/* Solid text accent */
.zg-shimmer-text {
  color: var(--accent-pink);
}

@keyframes zg-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

@keyframes zg-pulse-heart {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.25); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.12); }
}

@keyframes zg-wiggle {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-7px); }
}

@keyframes zg-flutter {
  0%, 100% { transform: rotate(0deg) skewY(0deg) translateY(0); }
  50% { transform: rotate(16deg) skewY(-10deg) translateY(-12px); }
}

@keyframes zg-drift {
  0%, 100% { transform: translateX(0) rotate(-5deg); }
  50% { transform: translateX(28px) rotate(5deg); }
}

@keyframes zg-grow-shrink {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

@keyframes zg-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes zg-glow-ring {
  0% { box-shadow: 0 0 0 0 rgba(77, 9, 9, 0.45); }
  100% { box-shadow: 0 0 0 20px rgba(77, 9, 9, 0); }
}

/* --- Twinkling Sparkle Field (scattered ✦ points) --- */
.zg-spark {
  position: absolute;
  font-style: normal;
  color: #FFFCF6;
  text-shadow: 0 0 10px rgba(255, 252, 246, 0.95);
  animation: zg-twinkle 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
  line-height: 1;
}

/* --- Click Sparkle Burst (JS spawns these) --- */
.zg-burst {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  font-size: 1.15rem;
  line-height: 1;
  animation: zg-burst 0.85s ease-out forwards;
  filter: drop-shadow(0 4px 8px rgba(77, 9, 9, 0.5));
}

@keyframes zg-burst {
  0% { transform: translate(-50%, -50%) scale(0.4) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.2) rotate(40deg); opacity: 0; }
}

/* Wavy Section Divider */
.zg-wave {
  display: block;
  width: 100%;
  height: 46px;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  background-position: center;
}

.zg-wave--pink {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C120,0 240,60 360,30 C480,0 600,60 720,30 C840,0 960,60 1080,30 C1140,15 1170,20 1200,30 L1200,60 L0,60 Z' fill='%23FF5C8A'/%3E%3C/svg%3E");
}

/* ==========================================================================
   3. HEADER & UTILITY BARS
   ========================================================================== */
.zugnoo-top-eta-bar {
  background-color: #FFFCF6;
  border-bottom: 1px solid var(--border-light);
  padding: 6px 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.3px;
}

.zugnoo-ticker-wrap {
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
}

.zugnoo-ticker {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.zugnoo-ticker-item {
  padding-right: 20px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.zugnoo-header {
  background-color: rgba(255, 252, 246, 0.96);
  padding: 14px 0 12px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(77, 9, 9, 0.08);
}

.zugnoo-header.scrolled {
  box-shadow: 0 8px 30px rgba(77, 9, 9, 0.16);
}

.zugnoo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zugnoo-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zugnoo-menu-btn {
  font-size: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.zugnoo-menu-btn:hover {
  color: var(--accent-pink);
  transform: scale(1.1);
}

.zugnoo-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-lilac);
  border: 1.5px solid transparent;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.zugnoo-filter-pill:hover {
  border-color: var(--accent-pink);
  transform: translateY(-2px);
}

.zugnoo-filter-pill i {
  font-size: 0.65rem;
  color: var(--accent-pink);
}

.zugnoo-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  background: var(--grad-pink-lilac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.zugnoo-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.zugnoo-icon-btn {
  font-size: 1.2rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.zugnoo-icon-btn:hover {
  color: var(--accent-pink);
  transform: translateY(-2px);
}

.zugnoo-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  font-size: 0.62rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(77, 9, 9, 0.4);
}

/* Search Bar Row */
.zugnoo-search-row {
  margin-top: 12px;
}

.zugnoo-search-input-wrap {
  position: relative;
  width: 100%;
}

.zugnoo-search-input-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-pink);
  font-size: 0.9rem;
}

.zugnoo-search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: #FFFCF6;
  outline: none;
  transition: var(--transition);
}

.zugnoo-search-input-wrap input::placeholder {
  color: var(--text-muted);
}

.zugnoo-search-input-wrap input:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 4px var(--accent-purple-light), 0 6px 18px rgba(77, 9, 9, 0.12);
}

/* Circular Stories Category Row */
.zugnoo-stories-row {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 0 4px 0;
}

.zugnoo-stories-row::-webkit-scrollbar {
  display: none;
}

.story-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.story-bubble-item:hover {
  color: var(--accent-pink);
}

.story-circle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(77, 9, 9, 0.18);
  transition: var(--transition);
}

.story-bubble-item:hover .story-circle {
  transform: scale(1.08);
}

.story-circle::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: #FFFCF6;
  border-radius: 50%;
  z-index: 0;
}

.story-circle img,
.story-circle span {
  position: relative;
  z-index: 1;
}

.story-circle img {
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
}

.story-circle.text-circle {
  background: var(--accent-purple-light);
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--accent-purple-dark);
  letter-spacing: 0.5px;
}

.story-circle.text-circle::before {
  display: none;
}

.story-circle.text-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 4px;
}

/* ==========================================================================
   4. HERO SECTION 1 (CURATED LOOKS BANNER + FLOATING CARDS)
   ========================================================================== */
.zugnoo-hero-section {
  padding: 28px 0 44px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}



.zugnoo-hero-container {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 20px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.zugnoo-hero-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-thumb-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #FFFCF6;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #FFFCF6;
  box-shadow: 0 10px 24px rgba(77, 9, 9, 0.18);
  transition: var(--transition);
}

.hero-thumb-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 16px 34px rgba(77, 9, 9, 0.3);
}

.hero-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-heart-btn {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.94);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  box-shadow: 0 3px 10px rgba(77, 9, 9, 0.3);
  transition: var(--transition);
}

.thumb-heart-btn:hover {
  background: var(--accent-pink);
  color: #FFFCF6;
  transform: scale(1.18);
}

.zugnoo-hero-center {
  width: 100%;
}

.hero-models-visual {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #FFFCF6;
  box-shadow: 0 20px 50px rgba(77, 9, 9, 0.22);
}

.hero-models-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-models-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(77, 9, 9, 0.18);
  z-index: 1;
}

.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 16px;
  z-index: 3;
}

.zugnoo-hero-headline {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent-pink-deep);
  margin-bottom: 2px;
  line-height: 1;
  transform: rotate(-2deg);
}

.zugnoo-hero-brand {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 7px;
  text-transform: uppercase;
  background: var(--grad-pink-lilac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.05;
  filter: drop-shadow(0 6px 16px rgba(77, 9, 9, 0.3));
}

.zugnoo-hero-pill-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 36px;
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 3px solid #FFFCF6;
  box-shadow: 0 10px 26px rgba(77, 9, 9, 0.45);
  transition: var(--transition);
}

.zugnoo-hero-pill-btn:hover {
  background: var(--grad-lilac-pink);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(77, 9, 9, 0.5);
}

/* ==========================================================================
   5. SECTION 2: 4-GRID PROMO CARDS (PASTEL STICKER VIBES)
   ========================================================================== */
.zugnoo-promo-grid-section {
  padding: 48px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.zugnoo-promo-4grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.zugnoo-promo-card {
  position: relative;
  aspect-ratio: 1 / 1.15;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(77, 9, 9, 0.12), 0 2px 6px rgba(77, 9, 9, 0.04);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1.5px solid rgba(255, 252, 246, 0.9);
  background: #FFFCF6;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.zugnoo-promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(77, 9, 9, 0.22);
}

.card-purple-light {
  background: var(--bg-primary);
}

.card-white-purple {
  background: #FFFCF6;
}

.card-photo-bg {
  padding: 0;
}

.card-photo-bg .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zugnoo-promo-card:hover .bg-img {
  transform: scale(1.08);
}

.photo-overlay-title {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  background: #4D0909;
  border: 1px solid #FFFCF6;
  border-radius: 16px;
  padding: 12px 14px;
  color: #FFFCF6;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  box-shadow: 0 8px 24px rgba(77, 9, 9, 0.25);
  transition: all 0.3s ease;
}

.zugnoo-promo-card:hover .photo-overlay-title {
  background: #FFFCF6;
  color: #4D0909;
  border-color: #4D0909;
  transform: translateY(-2px);
}

.promo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.promo-title-purple {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  line-height: 1.25;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-title-purple i {
  font-family: var(--font-script);
  font-style: normal;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 1.25em;
  color: var(--accent-pink);
}

.promo-price-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--accent-pink-deep);
  background: #FFFCF6;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.promo-price-tag-big {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-pink-deep);
  background: #FFFCF6;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
}

.deal-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFCF6;
  background: var(--grad-pink-lilac);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(77, 9, 9, 0.3);
  z-index: 2;
}

.promo-card-img,
.promo-card-img-right {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.zugnoo-promo-card:hover .promo-card-img,
.zugnoo-promo-card:hover .promo-card-img-right {
  transform: scale(1.05);
}

/* Promo Pagination Dots */
.promo-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.promo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFFCF6;
  transition: var(--transition);
  cursor: pointer;
}

.promo-dot.active {
  background: var(--grad-pink-lilac);
  transform: scale(1.3);
  box-shadow: 0 3px 8px rgba(77, 9, 9, 0.4);
}

/* Wide Watches Banner */
.zugnoo-wide-watches-banner-section {
  padding: 10px 0 44px 0;
}

.zugnoo-wide-banner {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #FFFCF6;
  box-shadow: 0 16px 40px rgba(77, 9, 9, 0.18);
}

.zugnoo-banner img,
.zugnoo-wide-banner img,
.zugnoo-wide-banner video,
.zugnoo-wide-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING CAT CHAT MASCOT & WALKING / SITTING ANIMATION */
.zugnoo-floating-cat-btn {
  position: fixed;
  bottom: 75px;
  right: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(77, 9, 9, 0.35);
  border: 3px solid transparent;
  background-clip: padding-box;
  z-index: 9998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.zugnoo-floating-cat-btn::before {
  content: '';
  position: absolute;
  inset: -3.5px;
  border-radius: 50%;
  background: var(--grad-pink-lilac);
  z-index: -1;
  animation: zg-ring-glow 3s linear infinite;
}

.zugnoo-floating-cat-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 40px rgba(77, 9, 9, 0.45);
}

.cat-speech-bubble {
  position: absolute;
  top: -34px;
  right: -6px;
  background: var(--bg-dark);
  color: #FFFCF6;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(77, 9, 9, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 10;
}

.cat-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 22px;
  width: 8px;
  height: 8px;
  background: var(--bg-dark);
  transform: rotate(45deg);
}

.zugnoo-floating-cat-btn:hover .cat-speech-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cat-icon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cat Walker & Sitter Container */
.cat-walker-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  animation: zg-cat-out-walk-sit 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-origin: center center;
}

.cat-img-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.online-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4D0909;
  border: 2.5px solid #FFFCF6;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Keyframes: Cat peeks out, walks around the circle boundary, and sits down happily */
@keyframes zg-cat-out-walk-sit {
  /* 0%-20%: Cat sitting peacefully in center */
  0%, 18% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  /* 20%-28%: Cat peeks out of the circular badge */
  22% {
    transform: translateY(-8px) rotate(-8deg) scale(1.12);
  }
  26% {
    transform: translateY(-16px) rotate(4deg) scale(1.18);
  }
  /* 28%-65%: Cat walks along the circular rim */
  32% {
    transform: translateY(-16px) rotate(90deg) scale(1.12);
  }
  44% {
    transform: translateY(-16px) rotate(180deg) scale(1.12);
  }
  56% {
    transform: translateY(-16px) rotate(270deg) scale(1.12);
  }
  64% {
    transform: translateY(-16px) rotate(360deg) scale(1.15);
  }
  /* 65%-72%: Cat steps back inside the circle */
  70% {
    transform: translateY(-4px) rotate(360deg) scale(1.05);
  }
  /* 72%-100%: Cat sits contentedly inside the circle badge */
  76%, 100% {
    transform: translateY(0) rotate(360deg) scale(1);
  }
}

@keyframes zg-ring-glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ==========================================================================
   6. SECTION 3: MYSTERY JEWELLERY JAR SPOTLIGHT BANNER
   ========================================================================== */
.zugnoo-mystery-jar-section {
  padding: 34px 0 48px 0;
  position: relative;
}

.mystery-jar-wrapper {
  position: relative;
  width: 100%;
}

/* Floating Animated Gift Box Badge */
.mystery-gift-badge {
  position: absolute;
  top: -22px;
  right: 28px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-dark);
  color: #FFFCF6;
  padding: 10px 22px 10px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px rgba(77, 9, 9, 0.35), 0 0 0 4px #FFFCF6;
  animation: zg-gift-float 4s ease-in-out infinite;
}

.gift-icon-bounce {
  font-size: 1.8rem;
  display: inline-block;
  animation: zg-gift-box-bounce 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gift-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gift-badge-text strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #FFFCF6;
  text-transform: uppercase;
}

.gift-badge-text span {
  font-size: 0.72rem;
  color: rgba(255, 252, 246, 0.88);
}

.mystery-jar-banner {
  width: 100%;
  height: 380px;
  max-height: 380px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(77, 9, 9, 0.22);
  border: 5px solid #FFFCF6;
  background: var(--bg-dark);
  transition: var(--transition);
}

.mystery-jar-banner:hover {
  box-shadow: 0 24px 52px rgba(77, 9, 9, 0.36);
  transform: translateY(-4px);
}

.mystery-jar-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.mystery-jar-banner:hover img {
  transform: scale(1.03);
}

/* Glossy Shine Sweep Effect */
.banner-shine-overlay {
  display: none;
}

/* CTA Pill Button on Banner */
.mystery-cta-btn {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  color: #FFFCF6 !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 2px solid rgba(255, 252, 246, 0.35);
}

.mystery-cta-btn:hover {
  background: #4D0909;
  transform: translateY(-2px) scale(1.04);
}

@keyframes zg-gift-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes zg-gift-box-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-6px) rotate(-10deg) scale(1.15); }
  50% { transform: translateY(0) rotate(8deg) scale(1); }
  75% { transform: translateY(-3px) rotate(-4deg) scale(1.08); }
}

@keyframes zg-shine-sweep {
  0% { left: -100%; }
  35%, 100% { left: 180%; }
}

/* ==========================================================================
   7. PRODUCT CARDS GRID & 3D TILT EFFECT
   ========================================================================== */
.zugnoo-products-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.zugnoo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PRICE DROP BADGE */
.price-drop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-purple, #4D0909);
  color: #FFFCF6;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(107, 59, 167, 0.3);
}

/* ==========================================================================
   CATEGORY PRODUCT GRID SYSTEM (3-Column Desktop PC, 2-1-2-1 Mobile)
   ========================================================================== */

.shop-archive-section .zugnoo-products-grid,
.zugnoo-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* PC / Desktop (992px and above): Clean 3-Column Grid matching zugnoo PC screenshot */
@media (min-width: 992px) {
  .shop-archive-section .zugnoo-products-grid,
  .zugnoo-editorial-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }

  .shop-archive-section .zugnoo-products-grid > .zugnoo-product-card,
  .shop-archive-section .zugnoo-products-grid > .new-product-card,
  .zugnoo-editorial-grid > .zugnoo-product-card,
  .zugnoo-editorial-grid > .new-product-card {
    grid-column: span 1 !important;
  }

  .shop-archive-section .zugnoo-products-grid > .zugnoo-product-card .product-img-box,
  .shop-archive-section .zugnoo-products-grid > .new-product-card .new-product-card__media-wrap,
  .zugnoo-editorial-grid > .zugnoo-product-card .product-img-box,
  .zugnoo-editorial-grid > .new-product-card .new-product-card__media-wrap {
    aspect-ratio: 1 / 1 !important;
    max-height: 380px !important;
  }

  .shop-archive-section .zugnoo-products-grid > .zugnoo-product-card .product-img-box img,
  .zugnoo-editorial-grid > .zugnoo-product-card .product-img-box img {
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* 3D Perspective Product Card */
.new-product-card,
.zugnoo-product-card {
  background: #FFFCF6;
  border-radius: var(--radius-md);
  padding: 10px;
  border: 2px solid var(--border-light);
  box-shadow: 0 8px 22px rgba(77, 9, 9, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.new-product-card:hover,
.zugnoo-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(77, 9, 9, 0.22);
  border-color: var(--accent-pink);
}

.new-product-card__media-wrap,
.product-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #FFFCF6;
  perspective: 180px;
}

.new-product-card__media,
.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: perspective(180px) rotateX(-4deg);
  transition: transform 0.35s ease;
  border-radius: var(--radius-sm);
}

.new-product-card:hover .new-product-card__media,
.zugnoo-product-card:hover .product-img-box img {
  transform: perspective(180px) rotateX(0deg) scale(1.06);
}

.product-wishlist-btn,
.new-product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.95);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 3;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(77, 9, 9, 0.25);
}

.product-wishlist-btn:hover {
  background: var(--accent-pink);
  color: #FFFCF6;
  transform: scale(1.18);
}

.product-quick-cart-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(77, 9, 9, 0.45);
  transition: var(--transition);
}

.product-quick-cart-btn:hover {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 10px 22px rgba(77, 9, 9, 0.6);
}

.product-info-box,
.new-product-card__bottom {
  padding: 10px 4px 4px 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.product-title,
.new-product-card__title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.new-product-card__rating,
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--accent-purple-light);
  padding: 2px 6px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-purple-dark);
}

.new-product-card__rating i {
  color: var(--accent-pink);
  font-size: 0.65rem;
}

.new-product-card__price-row,
.product-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.new-product-card__price-main,
.new-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--accent-pink-deep);
  letter-spacing: -0.48px;
}

.new-product-card__price-compare,
.old-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.new-product-card__discount-badge,
.off-badge {
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-left: auto;
  box-shadow: 0 3px 8px rgba(77, 9, 9, 0.3);
}

.zugnoo-view-all-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--accent-pink-deep);
  text-decoration: none;
  background: var(--accent-purple-light);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(77, 9, 9, 0.12);
}

.zugnoo-view-all-link:hover {
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-glow);
}

/* ==========================================================================
   7.1 SHOP BY VIBE SECTION (GEN-Z AESTHETIC CARDS)
   ========================================================================== */
.zg-vibe-section {
  padding: 60px 0;
  background: var(--bg-lilac);
  position: relative;
  overflow: hidden;
}



.zg-vibe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zg-vibe-card {
  position: relative;
  background: #FFFCF6;
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  text-align: center;
  border: 2px solid #FFFCF6;
  box-shadow: 0 12px 30px rgba(77, 9, 9, 0.18);
  transition: var(--transition);
  overflow: hidden;
}

.zg-vibe-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-pink-glow);
}

.zg-vibe-emoji {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(77, 9, 9, 0.3));
}

.zg-vibe-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zg-vibe-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 6px 0 14px;
  line-height: 1.4;
}

.zg-vibe-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: #FFFCF6;
  background: var(--grad-pink-lilac);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(77, 9, 9, 0.35);
  transition: var(--transition);
}

.zg-vibe-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-pink-glow);
}

/* ==========================================================================
   7.2 SHOP ARCHIVE PRODUCT CARDS (Product Grid, Pills & Buttons)
   ========================================================================== */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  color: var(--text-main);
  background: #FFFCF6;
  border: 2px solid var(--border-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.pill-btn:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink-deep);
  transform: translateY(-2px);
}

.pill-btn.active {
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  border-color: transparent;
  box-shadow: var(--shadow-pink-glow);
}

.pills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #FFFCF6;
  border-radius: var(--radius-md);
  padding: 10px;
  border: 2px solid var(--border-light);
  box-shadow: 0 8px 22px rgba(77, 9, 9, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(77, 9, 9, 0.22);
  border-color: var(--accent-pink);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #FFFCF6;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: #FFFCF6;
  box-shadow: 0 4px 12px rgba(77, 9, 9, 0.25);
  z-index: 2;
}

.product-badge.sale {
  background: var(--grad-pink-lilac);
}

.product-badge.bestseller {
  background: var(--accent-lilac);
}

.product-badge.new {
  background: var(--accent-pink);
}

.wishlist-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.95);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(77, 9, 9, 0.25);
  transition: var(--transition);
}

.wishlist-toggle:hover {
  background: var(--accent-pink);
  color: #FFFCF6;
  transform: scale(1.18);
}

.product-content {
  padding: 12px 4px 4px;
}

.product-content .product-rating {
  background: var(--accent-purple-light);
  color: var(--accent-purple-dark);
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-content .product-rating .star {
  color: var(--color-star-yellow);
}

.reviews-count {
  color: var(--text-muted);
  font-weight: 400;
}

.product-content .product-title {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.product-content .product-title a:hover {
  color: var(--accent-pink);
}

.product-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-content .product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--accent-pink-deep);
}

.product-content .old-price {
  font-size: 0.75rem;
}

.product-content .add-to-cart-btn {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  color: #FFFCF6;
  background: var(--grad-pink-lilac);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(77, 9, 9, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.product-content .add-to-cart-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: var(--shadow-pink-glow);
}

/* Single Product Page Helpers */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.gallery-thumb {
  transition: var(--transition);
}

.gallery-thumb:hover {
  border-color: var(--accent-pink) !important;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .single-product-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ==========================================================================
   8. SECTION 5: GIANT MARQUEE BANNER
   ========================================================================== */
.zugnoo-marquee-banner-section {
  padding: 36px 16px;
  background: var(--grad-pink-lilac);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zugnoo-marquee-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1rem, 2.8vw, 2.2rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-shadow: 0 4px 16px rgba(77, 9, 9, 0.35);
  line-height: 1.3;
}

.purple-pill-text {
  background: #FFFCF6;
  color: var(--accent-pink-deep);
  padding: 6px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: 3px 4px 0px rgba(77, 9, 9, 0.9);
  display: inline-block;
  transform: rotate(-1.5deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.purple-pill-text:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 5px 6px 0px rgba(77, 9, 9, 0.9);
}

/* ==========================================================================
   9. SECTION 6: GIFT HAMPERS BANNER & GRID
   ========================================================================== */
.zugnoo-hampers-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.hampers-hero-banner {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #FFFCF6;
  box-shadow: 0 18px 44px rgba(77, 9, 9, 0.18);
}

.hampers-hero-banner video,
.hampers-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hampers-overlay-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #FFFCF6;
  z-index: 2;
}

.spark-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
  display: inline-block;
  animation: zg-spin 12s linear infinite;
}

.hampers-overlay-content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(77, 9, 9, 0.6);
}

/* ==========================================================================
   10. REVIEWS & TRUST GRID
   ========================================================================== */
.zugnoo-reviews-section {
  padding: 60px 0;
  background: var(--grad-blush);
  border-top: 1px solid var(--border-light);
}

.zugnoo-trust-grid-section {
  padding: 40px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   9.5 LOVED BY CREATORS CAROUSEL SECTION
   ========================================================================== */
.zg-creators-section {
  padding: 60px 0;
  background-color: var(--bg-primary);
}

.zg-creators-header {
  margin-bottom: 28px;
}

.creators-asterisk {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: inline-block;
  animation: zg-spin 14s linear infinite;
}

.creators-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.creators-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Horizontal Scrollable Rail */
.zg-creators-rail-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: -16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.zg-creators-rail-wrap::-webkit-scrollbar {
  display: none;
}

.zg-creators-rail {
  display: flex;
  gap: 20px;
  padding: 10px 4px 20px 4px;
}

/* Creator Card */
.zg-creator-card {
  flex: 0 0 310px;
  max-width: 310px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(77, 9, 9, 0.12);
  background: var(--bg-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid var(--border-color);
}

.zg-creator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(77, 9, 9, 0.22);
}

.creator-media-box {
  width: 100%;
  height: 440px;
  overflow: hidden;
  position: relative;
  background: #FFFCF6;
}

.creator-media-img,
.creator-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.zg-creator-card:hover .creator-media-img,
.zg-creator-card:hover .creator-media-video {
  transform: scale(1.05);
}

/* Overlay Product Card at Bottom of Image */
.creator-product-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #FFFCF6;
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.zg-creator-card:hover .creator-product-overlay {
  transform: translateY(-2px);
}

.overlay-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.overlay-info {
  flex: 1;
  min-width: 0;
}

.overlay-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.overlay-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.overlay-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
}

.overlay-old-price {
  font-size: 0.72rem;
  color: #4D0909;
  text-decoration: line-through;
}

.overlay-eye-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.overlay-eye-btn:hover {
  background: #4D0909;
  transform: scale(1.1);
}

/* ==========================================================================
   9.6 FEELING LOST SECTION & STORY BUBBLE FILTERS
   ========================================================================== */
.zg-feeling-lost-section {
  padding: 50px 0 60px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.zg-feeling-banner-container {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.zg-feeling-banner-wrapper {
  position: relative;
  width: 100%;
  padding: 24px 10px;
}

.zg-feeling-banner-card {
  position: relative;
  width: 88%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transform: rotate(0deg) scale(0.94);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 252, 246, 0.8);
}

.zg-feeling-lost-section.in-view .zg-feeling-banner-card {
  transform: rotate(3.5deg) scale(1);
  opacity: 1;
}

.zg-feeling-banner-wrapper:hover .zg-feeling-banner-card {
  transform: rotate(1deg) scale(1.03);
  box-shadow: 0 24px 54px rgba(77, 9, 9, 0.28);
}

.banner-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text-top {
  position: absolute;
  top: 4px;
  left: 6px;
  font-family: var(--font-heading), 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  font-weight: 900;
  color: var(--accent-pink);
  line-height: 1;
  z-index: 10;
  letter-spacing: -0.5px;
  text-shadow: 
    3px 3px 0 #FFFCF6,
   -3px -3px 0 #FFFCF6,
    3px -3px 0 #FFFCF6,
   -3px 3px 0 #FFFCF6,
    0 0 12px #FFFCF6,
    0 6px 20px rgba(77, 9, 9, 0.4);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-16px) translateX(-10px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transition-delay: 0.2s;
}

.zg-feeling-lost-section.in-view .banner-text-top {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.banner-text-bottom {
  position: absolute;
  bottom: 34px;
  right: 6px;
  font-family: var(--font-heading), 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 6.2vw, 3.8rem);
  font-weight: 900;
  color: var(--accent-pink);
  line-height: 1;
  z-index: 10;
  letter-spacing: -1px;
  text-shadow: 
    3px 3px 0 #FFFCF6,
   -3px -3px 0 #FFFCF6,
    3px -3px 0 #FFFCF6,
   -3px 3px 0 #FFFCF6,
    0 0 12px #FFFCF6,
    0 6px 20px rgba(77, 9, 9, 0.4);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px) translateX(10px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transition-delay: 0.35s;
}

.zg-feeling-lost-section.in-view .banner-text-bottom {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.zg-feeling-subtitle {
  font-family: var(--font-heading), var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1.5px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.5s;
}

.zg-feeling-lost-section.in-view .zg-feeling-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Story Bubbles Filter Rail */
.zg-bubbles-rail-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.zg-bubbles-rail-wrap::-webkit-scrollbar {
  display: none;
}

.zg-bubbles-rail {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 4px;
}

@media (max-width: 767px) {
  .zg-bubbles-rail {
    justify-content: flex-start;
  }
}

.zg-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.zg-bubble-item:hover {
  transform: translateY(-4px);
}

.bubble-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: #FFFCF6;
  border: 2px solid var(--border-color);
  box-shadow: 0 6px 18px rgba(77, 9, 9, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.zg-bubble-item.active .bubble-ring {
  border: 2.5px solid var(--accent-pink);
  box-shadow: 0 8px 22px rgba(77, 9, 9, 0.25);
}

.bubble-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bubble-ring.text-bubble {
  background: #FFFCF6;
  text-align: center;
}

.bubble-ring.text-bubble span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.bubble-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.zg-bubble-item.active .bubble-label {
  color: var(--accent-pink);
  font-weight: 800;
}

/* ==========================================================================
   9.7 FOLLOW US ON INSTAGRAM CAROUSEL SECTION
   ========================================================================== */
.zg-instagram-section {
  padding: 60px 0 50px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.zg-instagram-header {
  text-align: center;
  margin-bottom: 28px;
}

.instagram-title {
  font-family: var(--font-heading), 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.zg-instagram-slider-container {
  position: relative;
  width: 100%;
}

.zg-insta-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFCF6;
  box-shadow: 0 8px 24px rgba(77, 9, 9, 0.35);
  cursor: pointer;
  z-index: 25;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  font-size: 1rem;
}

.zg-insta-nav-btn:hover {
  background: #4D0909;
  transform: translateY(-50%) scale(1.12);
}

.zg-insta-nav-btn.prev-btn {
  left: -20px;
}

.zg-insta-nav-btn.next-btn {
  right: -20px;
}

/* Scrollable Rail */
.zg-instagram-rail-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: -8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.zg-instagram-rail-wrap.active-drag {
  cursor: grabbing;
  scroll-behavior: auto;
}

.zg-instagram-rail-wrap::-webkit-scrollbar {
  display: none;
}

.zg-instagram-rail {
  display: flex;
  gap: 20px;
  padding: 10px 4px 20px 4px;
}

.zg-insta-card {
  flex: 0 0 310px;
  max-width: 310px;
  height: 480px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(77, 9, 9, 0.12);
  background: #4D0909;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid var(--border-color);
  scroll-snap-align: center;
}

.zg-insta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(77, 9, 9, 0.22);
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.zg-insta-card:hover .insta-img {
  transform: scale(1.04);
}

.insta-overlay-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #FFFCF6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.zg-insta-card:hover .insta-overlay-badge {
  opacity: 1;
  transform: scale(1);
}

/* Pagination Dots */
.zg-instagram-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.zg-instagram-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4D0909;
  transition: background 0.3s ease, transform 0.3s ease;
}

.zg-instagram-dots .dot.active {
  background: var(--text-dark);
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   11. MOBILE & TABLET RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .zugnoo-promo-4grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zugnoo-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zg-vibe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zugnoo-marquee-banner-section {
    padding: 22px 12px !important;
  }
  .zugnoo-marquee-headline {
    font-size: 0.95rem !important;
    gap: 6px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.35 !important;
  }
  .purple-pill-text {
    padding: 4px 14px !important;
    font-size: 0.88rem !important;
    box-shadow: 2px 3px 0px rgba(77, 9, 9, 0.9) !important;
  }
  .zugnoo-hero-container {
    grid-template-columns: 54px 1fr 54px !important;
    gap: 8px !important;
    padding: 0 6px !important;
  }
  .zugnoo-hero-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .hero-thumb-card {
    border-radius: 12px !important;
  }
  .thumb-heart-btn {
    width: 18px !important;
    height: 18px !important;
    font-size: 0.55rem !important;
    bottom: 4px !important;
    left: 4px !important;
  }
  .hero-models-visual {
    height: 380px !important;
    border-radius: 20px !important;
  }
  .hero-overlay-content {
    top: auto !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0 10px !important;
  }
  .zugnoo-hero-headline {
    font-size: 1.3rem !important;
    margin-bottom: 2px !important;
  }
  .zugnoo-hero-brand {
    font-size: 1.7rem !important;
    letter-spacing: 3px !important;
  }
  .zugnoo-hero-pill-btn {
    padding: 7px 18px !important;
    font-size: 0.7rem !important;
    margin-top: 8px !important;
  }
  .zugnoo-filter-pill {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
  .zugnoo-logo {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  .zugnoo-wide-banner {
    height: 200px;
  }
  .hampers-hero-banner {
    height: 260px;
  }
  .hampers-overlay-content {
    bottom: 16px;
    left: 16px;
  }
  .hampers-overlay-content h2 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   12. DRAWER OVERLAYS (MOBILE NAVIGATION & CART DRAWER)
   ========================================================================== */
.mobile-nav-overlay,
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(77, 9, 9, 0.6);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open,
.cart-drawer-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #FFFCF6;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 24px rgba(77, 9, 9, 0.18);
  transition: left 0.3s ease;
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  left: 0;
}

.mobile-nav-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grad-blush);
}

.close-drawer-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.close-drawer-btn:hover {
  color: var(--accent-pink);
  transform: rotate(90deg);
}

.mobile-links-wrap {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-link {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: var(--accent-purple-light);
  color: var(--accent-pink-deep);
}

.nav-tag {
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Cart Drawer */
.cart-drawer {
  position: absolute;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 420px;
  height: 100%;
  background: #FFFCF6;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 24px rgba(77, 9, 9, 0.18);
  transition: right 0.3s ease;
}

.cart-drawer-overlay.open .cart-drawer {
  right: 0;
}

.cart-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grad-blush);
}

.cart-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}

.shipping-progress-bar {
  padding: 10px 16px;
  font-size: 0.8rem;
  text-align: center;
}

.cart-items-wrap {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-pink-deep);
  margin-bottom: 6px;
}

.qty-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-color);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

.qty-btn {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-pink);
}

.remove-item-btn {
  font-size: 1.2rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.remove-item-btn:hover {
  color: var(--accent-pink-deep);
  transform: scale(1.2);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: #FFFCF6;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-glow);
}

/* ==========================================================================
   13. SITE FOOTER DESIGN STYLES
   ========================================================================== */
.site-footer {
  background-color: #FFFCF6;
  border-top: 4px solid transparent;
  border-image: var(--grad-pink-lilac) 1;
  padding: 60px 0 80px 0;
  color: var(--text-main);
  font-family: var(--font-body);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 5px;
  background: var(--grad-pink-lilac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1.5px solid var(--border-color);
}

.social-icon:hover {
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  border-color: transparent;
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--shadow-pink-glow);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-pink);
  padding-left: 4px;
}

.newsletter-box p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 4px var(--accent-purple-light);
}

.newsletter-form button {
  padding: 10px 22px;
  background: var(--grad-pink-lilac);
  color: #FFFCF6;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 16px rgba(77, 9, 9, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-glow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.payment-icons {
  background: var(--bg-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  font-weight: 700;
  color: var(--accent-pink-deep);
}

/* ==========================================================================
   13b. LOCATION PINCODE MODAL (base / desktop)
   ========================================================================== */
.loc-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.loc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 25, 45, 0.65);
  animation: zg-fade-in 0.25s ease;
}

.loc-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: #FFFCF6;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 24px 60px rgba(120, 60, 160, 0.3);
  border: 1px solid var(--border-color);
  animation: zg-modal-pop 0.3s ease;
}

.loc-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.loc-close:hover {
  color: var(--accent-pink-deep);
  background: rgba(77, 9, 9, 0.1);
}

@keyframes zg-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zg-modal-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   14. MOBILE RESPONSIVE MEDIA QUERIES (≤767px & ≤420px)
   ========================================================================== */
@media (max-width: 767px) {
  .container {
    padding: 0 12px;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding-bottom: 28px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .zugnoo-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .shop-archive-section .zugnoo-products-grid,
  .zugnoo-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .shop-archive-section .zugnoo-products-grid > .zugnoo-product-card:nth-child(3n),
  .shop-archive-section .zugnoo-products-grid > .new-product-card:nth-child(3n),
  .zugnoo-editorial-grid > .zugnoo-product-card:nth-child(3n),
  .zugnoo-editorial-grid > .new-product-card:nth-child(3n) {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .shop-archive-section .zugnoo-products-grid > .zugnoo-product-card:nth-child(3n) .product-img-box,
  .shop-archive-section .zugnoo-products-grid > .new-product-card:nth-child(3n) .new-product-card__media-wrap,
  .zugnoo-editorial-grid > .zugnoo-product-card:nth-child(3n) .product-img-box,
  .zugnoo-editorial-grid > .new-product-card:nth-child(3n) .new-product-card__media-wrap {
    aspect-ratio: 1 / 1 !important;
    max-height: 380px !important;
  }

  .new-product-card,
  .zugnoo-product-card {
    max-width: 100%;
    min-height: 250px;
    padding: 6px;
    border-radius: 14px;
  }

  .new-product-card__media-wrap,
  .product-img-box {
    margin: 4px;
    aspect-ratio: 185 / 181 !important;
    perspective: 180px;
  }

  .new-product-card__media,
  .product-img-box img {
    transform: perspective(180px) rotateX(-4deg);
    border-radius: 10px;
  }

  .product-wishlist-btn,
  .new-product-card__wishlist {
    top: 10px;
    right: 8px;
    width: 26px;
    height: 26px;
    font-size: 0.74rem;
  }

  .product-quick-cart-btn {
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .new-product-card__bottom,
  .product-info-box {
    padding: 6px 4px 4px 4px;
  }

  .new-product-card__title,
  .product-title {
    font-size: 12px !important;
    line-height: 1.25;
    font-weight: 600;
  }

  .new-product-card__rating,
  .product-rating {
    gap: 2px;
    padding: 1px 5px;
    font-size: 8px !important;
    letter-spacing: -0.24px;
  }

  .new-product-card__rating i {
    font-size: 6.5px !important;
  }

  .new-product-card__price-row,
  .product-price-row {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 4px;
    margin-top: 2px;
  }

  .new-product-card__price-main,
  .new-price {
    font-size: 12px !important;
    font-weight: 700;
  }

  .new-product-card__price-compare,
  .old-price {
    font-size: 8px !important;
    margin-top: 1px;
  }

  .new-product-card__discount-badge,
  .off-badge {
    width: 46px;
    height: 16px;
    font-size: 8px !important;
    padding: 2px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .zugnoo-promo-4grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 6px 16px 16px 16px !important;
    margin: 0 -16px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .zugnoo-promo-4grid::-webkit-scrollbar {
    display: none;
  }
  .zugnoo-promo-4grid .zugnoo-promo-card {
    flex: 0 0 76% !important;
    scroll-snap-align: center !important;
    min-width: 240px !important;
    aspect-ratio: 1 / 1.15 !important;
  }

  .zg-vibe-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .mystery-jar-banner {
    height: 240px !important;
    max-height: 240px !important;
  }

  .zugnoo-hero-col {
    display: none !important;
  }

  .zugnoo-hero-container {
    grid-template-columns: 1fr !important;
  }

  .hero-models-visual {
    height: 380px !important;
  }

  .zugnoo-hero-headline {
    font-size: 1.6rem !important;
  }

  .zugnoo-hero-brand {
    font-size: 2.2rem !important;
    letter-spacing: 4px !important;
  }

  .zugnoo-hero-pill-btn {
    padding: 10px 24px !important;
    font-size: 0.78rem !important;
    margin-top: 14px !important;
  }

  .loc-modal {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 20px 18px !important;
    animation: slideUp 0.3s ease !important;
  }
}

@media (max-width: 420px) {
  .new-product-card__price-main,
  .new-price {
    font-size: 10px !important;
  }
}

/* STICKY MOBILE BOTTOM BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background-color: #FFFCF6;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 9999;
  box-shadow: 0 -6px 20px rgba(77, 9, 9, 0.12);
}

.sticky-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  flex-grow: 1;
  height: 100%;
  transition: var(--transition);
}

.sticky-bar-item i,
.sticky-bar-item svg {
  font-size: 1.15rem;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: var(--transition);
}

.sticky-bar-item.active,
.sticky-bar-item:hover {
  color: var(--accent-pink);
}

.sticky-bar-item.active {
  position: relative;
}

.sticky-bar-item.active::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 30px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--grad-pink-lilac);
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

/* ==========================================================================
   9. zugnoo DARK CUSTOMER PHOTO REVIEWS WALL ("Trusted our vision")
   ========================================================================== */
.zugnoo-dark-reviews-section {
  background-color: #050505;
  padding: 80px 0;
  color: #FFFCF6;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.zugnoo-dark-reviews-header {
  text-align: center;
  margin-bottom: 44px;
}

.spark-asterisk {
  font-size: 2.6rem;
  color: #FFFCF6;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 300;
}

.dark-reviews-title {
  font-family: var(--font-heading), 'Funnel Display', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: #FFFCF6;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.dark-reviews-title strong {
  font-weight: 900;
  color: #FFFCF6;
}

.dark-reviews-sub {
  font-family: var(--font-body), 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #FFFCF6;
  margin-top: 12px;
  letter-spacing: 0.2px;
}

.dark-reviews-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.dark-reviews-rail::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

.dark-review-card {
  flex: 0 0 330px;
  max-width: 330px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFCF6;
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.dark-review-card:hover {
  transform: translateY(-6px);
}

.dark-review-photo-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #4D0909;
}

.dark-review-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dark-review-card:hover .dark-review-photo-wrap img {
  transform: scale(1.05);
}

.dark-review-info-box {
  padding: 18px 20px 22px 20px;
  background: #FFFCF6;
  color: #4D0909;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark-review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reviewer-name {
  font-family: var(--font-heading), 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  color: #4D0909;
  text-transform: uppercase;
}

.reviewer-stars {
  color: #4D0909;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
}

.reviewer-comment {
  font-family: var(--font-body), 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: #4D0909;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 767px) {
  .zugnoo-dark-reviews-section {
    padding: 50px 0;
  }
  .dark-review-card {
    flex: 0 0 270px;
    max-width: 270px;
  }
  .dark-review-photo-wrap {
    height: 210px;
  }
}

/* ==========================================================================
   STAGGERED WORD REVEAL & LIQUID SHIMMER ANIMATION FOR SHOP BY VIBE
   ========================================================================== */
.zg-vibe-header-wrap {
  text-align: center;
  position: relative;
}

.zg-vibe-subtitle {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px) rotate(-2deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zg-vibe-section.in-view .zg-vibe-subtitle {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}

.zg-vibe-shimmer-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-top: 4px;
}

.vibe-word-wrap {
  overflow: hidden;
  display: inline-block;
}

.vibe-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  color: var(--accent-pink);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.zg-vibe-section.in-view .vibe-word {
  transform: translateY(0);
  opacity: 1;
  transition-delay: var(--delay, 0s);
  animation: zg-shimmer-text 4s ease infinite 1s;
}

.vibe-emoji-pop {
  display: inline-block;
  transform: scale(0) rotate(-15deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.zg-vibe-section.in-view .vibe-emoji-pop {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  transition-delay: var(--delay, 0.4s);
  animation: zg-float 5s ease-in-out infinite 1.2s;
}

.vibe-underline-box {
  width: 220px;
  margin: 4px auto 0;
  overflow: hidden;
}

.zg-vibe-underline-svg {
  width: 100%;
  height: 16px;
  display: block;
}

.zg-vibe-underline-svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.zg-vibe-section.in-view .zg-vibe-underline-svg path {
  stroke-dashoffset: 0;
  transition-delay: 0.5s;
}

@keyframes zg-shimmer-text {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

@media (max-width: 767px) {
  .mystery-gift-badge {
    top: -18px;
    right: 12px;
    padding: 6px 14px 6px 10px;
    gap: 8px;
  }
  .gift-icon-bounce {
    font-size: 1.4rem;
  }
  .gift-badge-text strong {
    font-size: 0.72rem;
  }
  .gift-badge-text span {
    font-size: 0.65rem;
  }
  .mystery-cta-btn {
    bottom: 14px;
    left: 14px;
    padding: 8px 16px;
    font-size: 0.76rem;
  }
}
