/* ==========================================================================
   MADE WITH LOVE CROCHET (@made_withlove_crochet) - DESIGN SYSTEM
   Slow-Crafted in Hyderabad, India | Anti-Gravity Atelier
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette: Warm Merino Wool & Earth Tones */
  --bg-sand: #fbf7f2;
  --bg-canvas: #f6f0e8;
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.9);
  --border-subtle: #ebdcd0;
  --border-stitch: #d5c4b5;
  
  --text-main: #33241d;
  --text-muted: #6e5d53;
  --text-light: #9e8d83;

  /* Accent Colors */
  --accent-terracotta: #c45d3e;
  --accent-terracotta-hover: #ad4f32;
  --accent-sage: #6b7f6c;
  --accent-sage-light: #e8ede7;
  --accent-honey: #cb8b35;
  --accent-blush: #df9185;
  --accent-cream: #faf5ed;
  --accent-charcoal: #251c17;
  --accent-ig-pink: #d62976;
  --accent-ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(62, 45, 38, 0.04);
  --shadow-md: 0 8px 24px rgba(62, 45, 38, 0.08);
  --shadow-lg: 0 16px 36px rgba(62, 45, 38, 0.12);
  --shadow-float: 0 24px 48px rgba(196, 93, 62, 0.18), 0 8px 16px rgba(0, 0, 0, 0.06);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*, *::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-sand);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(223, 145, 133, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(107, 127, 108, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(203, 139, 53, 0.05) 0%, transparent 60%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

/* Top Announcement Banner */
.top-bar {
  background: #251c17;
  color: #faf5ed;
  font-size: 0.82rem;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.top-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f7d2a9;
  font-weight: 600;
}

/* Currency Toggle */
.currency-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 2px;
}

.currency-btn {
  background: transparent;
  border: none;
  color: #faf5ed;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-btn.active {
  background: var(--accent-terracotta);
  color: white;
}

/* Header & Nav */
header.nostalgic-header-group {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #ffffff;
}

header.site-header {
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-terracotta), var(--accent-honey));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(196, 93, 62, 0.3);
  color: white;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffccd5;
  box-shadow: 0 4px 14px rgba(196, 93, 62, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
}

.brand-container:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 6px 20px rgba(196, 93, 62, 0.35);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-handle {
  font-size: 0.8rem;
  color: var(--accent-terracotta);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Boutique Navigation Links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-terracotta);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--accent-terracotta);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Quick Order on WhatsApp Button */
.btn-nav-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
  transition: all 0.2s ease;
}

.btn-nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Instagram Direct Link Pill */
.btn-ig-link {
  background: var(--accent-ig-gradient);
  color: white;
  text-decoration: none;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(214, 41, 118, 0.28);
  transition: all 0.2s ease;
}

.btn-ig-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.4);
}

.btn-cart-toggle {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cart-toggle:hover {
  background: var(--bg-canvas);
  border-color: var(--border-stitch);
}

.cart-count-badge {
  background: var(--accent-terracotta);
  color: white;
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-sound-toggle {
  background: transparent;
  border: 1px solid var(--border-subtle);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.btn-sound-toggle:hover {
  background: white;
  color: var(--text-main);
}

/* Main Container Layout */
.main-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  position: relative;
  z-index: 10;
}

/* Hero Banner Card */
.hero-banner {
  background: linear-gradient(135deg, #f7efe6 0%, #faece2 50%, #f1e4d6 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hero-banner::after {
  content: '🧶';
  position: absolute;
  right: 15px;
  bottom: -35px;
  font-size: 170px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border-stitch);
  color: var(--accent-terracotta);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-tag.highlight {
  background: #fdf2ec;
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
}

.hero-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero-banner p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-terracotta);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 18px rgba(196, 93, 62, 0.3);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  padding: 13px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--bg-canvas);
  border-color: var(--border-stitch);
}

/* Exhibition & Carnival Spotlight Strip */
.exhibition-strip {
  background: #ffffff;
  border: 1.5px dashed var(--border-stitch);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.exhibition-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.exhibition-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf3eb;
  color: var(--accent-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.exhibition-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.exhibition-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-stall-link {
  background: var(--bg-sand);
  border: 1px solid var(--border-subtle);
  color: var(--accent-terracotta);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-stall-link:hover {
  background: var(--accent-terracotta);
  color: white;
  border-color: var(--accent-terracotta);
}

/* Studio & Customization Section */
.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.section-heading p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Studio Category Tabs */
.studio-category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cat-tab-btn {
  background: white;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cat-tab-btn:hover {
  border-color: var(--accent-terracotta);
  background: #fdf8f5;
}

.cat-tab-btn.active {
  background: var(--accent-terracotta);
  color: white;
  border-color: var(--accent-terracotta);
  box-shadow: 0 4px 14px rgba(196, 93, 62, 0.25);
}

/* Two-Column Studio Layout */
.studio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 56px;
}

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

/* Studio Card */
.studio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.studio-card-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.studio-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.studio-card-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-sage-light);
  color: var(--accent-sage);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-sage);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Option Groups */
.option-group {
  margin-bottom: 26px;
}

.option-group:last-child {
  margin-bottom: 0;
}

.option-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.option-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Tier Selector Grid */
.tier-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.tier-btn {
  background: var(--bg-sand);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tier-btn:hover {
  background: white;
  border-color: var(--accent-terracotta);
  transform: translateY(-1px);
}

.tier-btn.active {
  background: #fff8f5;
  border-color: var(--accent-terracotta);
  box-shadow: 0 4px 12px rgba(196, 93, 62, 0.12);
}

.tier-btn-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.tier-btn-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
}

.tier-btn-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Range Slider */
.slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-sand);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.slider-container input[type="range"] {
  flex: 1;
  height: 6px;
  accent-color: var(--accent-terracotta);
  cursor: pointer;
}

.slider-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  min-width: 100px;
  text-align: right;
}

select.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

select.form-control:focus {
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.15);
}

/* Yarn Swatches */
.yarn-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.yarn-swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--bg-sand);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.yarn-swatch:hover {
  background: white;
  border-color: var(--text-light);
}

.yarn-swatch.active {
  background: white;
  border-color: var(--accent-terracotta);
  box-shadow: 0 3px 10px rgba(196, 93, 62, 0.15);
}

.swatch-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  position: relative;
}

.swatch-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Custom Add-ons Checkboxes */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-sand);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.addon-card:hover {
  background: white;
  border-color: var(--accent-honey);
}

.addon-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-terracotta);
  cursor: pointer;
}

.addon-card.active {
  background: #fffbf3;
  border-color: var(--accent-honey);
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.addon-price {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-honey);
}

.textarea-wrapper {
  position: relative;
}

textarea.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: white;
  resize: vertical;
  min-height: 105px;
  outline: none;
  transition: all 0.2s ease;
}

textarea.form-control:focus {
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.15);
}

.char-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
  pointer-events: none;
}

/* Card Actions */
.studio-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-add-order {
  flex: 1.2;
  background: var(--accent-terracotta);
  color: white;
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(196, 93, 62, 0.3);
  transition: all 0.25s ease;
}

.btn-add-order:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.4);
}

.btn-dm-order {
  background: var(--accent-ig-gradient);
  color: white;
  text-decoration: none;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-dm-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 41, 118, 0.45);
}

/* WhatsApp Order Button */
.btn-whatsapp-order {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-whatsapp-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #20ba5a 0%, #0e7064 100%);
}

/* Gmail Order Button */
.btn-gmail-order {
  background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
  color: white;
  text-decoration: none;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(234, 67, 53, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-gmail-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.45);
}

/* Order Contact Channels Strip */
.order-channels-card {
  background: linear-gradient(145deg, #ffffff 0%, #fffbf8 100%);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.order-channels-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.order-channels-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.order-channels-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #faf5ed;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.channel-badge:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-card-wa {
  background: #eafaf1;
  border: 1px solid #c2ecd5;
  color: #128c7e;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-card-wa:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-drawer-wa {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  padding: 13px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-drawer-wa:hover {
  transform: translateY(-2px);
}

.btn-drawer-gmail {
  width: 100%;
  background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
  color: white;
  text-decoration: none;
  padding: 13px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(234, 67, 53, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-drawer-gmail:hover {
  transform: translateY(-2px);
}

.btn-gravity-trigger {
  background: linear-gradient(135deg, #33241d, #4e382d);
  color: #faf5ed;
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(37, 28, 23, 0.25);
  transition: all 0.25s ease;
}

.btn-gravity-trigger:hover {
  background: #251c17;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 28, 23, 0.35);
}

/* Right Column: Specs Card */
.specs-card {
  background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}

.specs-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.specs-header h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.specs-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.preview-swatch-box {
  background: var(--bg-sand);
  border: 1px dashed var(--border-stitch);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.preview-yarn-preview-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.preview-swatch-meta h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.preview-swatch-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(235, 220, 208, 0.6);
  font-size: 0.9rem;
}

.stat-label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-value {
  font-weight: 700;
  color: var(--text-main);
}

.stat-row.total-row {
  border-bottom: none;
  padding-top: 16px;
  margin-top: 6px;
  font-size: 1.15rem;
}

.total-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

.artisan-pledge {
  margin-top: 22px;
  background: #f4ede4;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

/* Curated Gallery Section */
.gallery-section {
  margin-top: 60px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: var(--bg-sand);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--accent-terracotta);
  color: white;
  border-color: var(--accent-terracotta);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-stitch);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-sand);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-item-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-ig-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: white;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

/* Card Meta Area & Two-Row Action Buttons */
.card-meta-row {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1.5px solid var(--border-subtle);
  gap: 10px;
  margin-top: auto;
}

.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  letter-spacing: -0.01em;
}

.btn-card-add-bag {
  background: var(--accent-terracotta);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(196, 93, 62, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.btn-card-add-bag:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196, 93, 62, 0.45);
}

.btn-card-add-bag:active {
  transform: translateY(0);
}

.card-secondary-row {
  display: flex;
  gap: 6px;
  width: 100%;
}

.btn-card-select,
.btn-card-wa,
.btn-card-dm {
  flex: 1;
  padding: 7px 4px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-sizing: border-box;
  line-height: 1.2;
}

.btn-card-select {
  background: var(--bg-sand);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
  cursor: pointer;
}

.btn-card-select:hover {
  background: var(--accent-terracotta);
  color: white;
  border-color: var(--accent-terracotta);
  transform: translateY(-1px);
}

.btn-card-wa {
  background: #eafaf1;
  border: 1.5px solid #b7ecd0;
  color: #128c7e;
  cursor: pointer;
}

.btn-card-wa:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
  transform: translateY(-1px);
}

.btn-card-dm {
  background: #fdf2f7;
  border: 1.5px solid #f2cfdf;
  color: var(--accent-ig-pink);
  cursor: pointer;
}

.btn-card-dm:hover {
  background: var(--accent-ig-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

/* Instagram Feed / Community Banner */
.ig-community-section {
  background: linear-gradient(135deg, #fff7f4 0%, #faece9 100%);
  border: 1px solid #f2dbd1;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.ig-community-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.ig-community-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ig-stats-row {
  display: flex;
  gap: 24px;
  margin-top: 14px;
}

.ig-stat-pill {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

/* ==========================================================================
   ANTI-GRAVITY PHYSICS DOCK & MODES
   ========================================================================== */

.physics-dock {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(37, 28, 23, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.physics-dock.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dock-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #faece2;
  font-size: 0.85rem;
  font-weight: 700;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-dock-action {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-dock-action:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-dock-action.active {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
}

.btn-dock-reset {
  background: #faf5ed;
  color: #251c17;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-dock-reset:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

#matter-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
}

body.anti-gravity-active {
  overflow: hidden;
  user-select: none;
}

.physics-card.in-orbit {
  box-shadow: var(--shadow-float) !important;
  cursor: grab;
  touch-action: none;
  z-index: 60 !important;
  transition: none !important;
}

.physics-card.in-orbit:active {
  cursor: grabbing;
}

.physics-card.returning {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.85s ease !important;
  box-shadow: var(--shadow-sm) !important;
  cursor: default;
}

.gravity-status-toast {
  position: fixed;
  top: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(196, 93, 62, 0.95);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.35);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gravity-status-toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   ORDER SUMMARY & CHECKOUT SLIDE-OUT DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(37, 28, 23, 0.45);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.order-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  z-index: 510;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.order-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 16px 22px;
  border-bottom: 1.5px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #ffffff;
  z-index: 2;
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-main);
  margin: 0;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-close-drawer:hover {
  background: var(--bg-sand);
  color: var(--text-main);
  transform: rotate(90deg);
}

.drawer-content {
  padding: 20px 22px;
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.drawer-summary-card {
  background: var(--bg-sand);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.drawer-summary-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.drawer-summary-yarn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.drawer-details-table {
  width: 100%;
  font-size: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.drawer-details-table tr td {
  padding: 4px 0;
}

.drawer-details-table tr td:last-child {
  text-align: right;
  font-weight: 600;
}

/* =========================================================
   STICKY DRAWER CHECKOUT FOOTER
   ========================================================= */
.drawer-footer {
  flex-shrink: 0;
  padding: 12px 20px 16px;
  border-top: 1.5px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.drawer-footer-total-strip {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-subtle);
}

.footer-total-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-total-amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-terracotta);
}

/* WhatsApp Primary Checkout Button */
.btn-drawer-wa {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-drawer-wa:hover {
  background: linear-gradient(135deg, #22bf5b 0%, #0e7065 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-drawer-wa:active {
  transform: translateY(0);
}

/* Secondary Actions (Gmail, Submit, DM) */
.drawer-secondary-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-drawer-gmail-sm,
.btn-drawer-submit-sm,
.btn-drawer-dm-sm {
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-drawer-gmail-sm {
  background: #ffffff;
  color: #c5221f;
  border: 1.5px solid #f8c8c5;
}

.btn-drawer-gmail-sm:hover {
  background: #fdf2f2;
  border-color: #c5221f;
  transform: translateY(-1px);
}

.btn-drawer-submit-sm {
  background: #ffffff;
  color: var(--accent-terracotta);
  border: 1.5px solid #ecd4c7;
}

.btn-drawer-submit-sm:hover {
  background: #fcf4ee;
  border-color: var(--accent-terracotta);
  transform: translateY(-1px);
}

.btn-drawer-dm-sm {
  background: #ffffff;
  color: #d62976;
  border: 1.5px solid #f8c9df;
}

.btn-drawer-dm-sm:hover {
  background: #fdf2f8;
  border-color: #d62976;
  transform: translateY(-1px);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 28, 23, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-icon {
  font-size: 46px;
  margin-bottom: 14px;
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.modal-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Footer */
footer.site-footer {
  background: #251c17;
  color: #faece2;
  padding: 50px 32px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #bfaea5;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social-link {
  color: #f7d2a9;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social-link:hover {
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.82rem;
  color: #9c8a81;
}

/* --- Brand Logo Enhancements --- */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 8px 18px 8px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.hero-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffccd5;
  box-shadow: 0 3px 10px rgba(223, 145, 133, 0.3);
  animation: gentlePulse 3.5s infinite ease-in-out;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
}

.hero-brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-brand-subtitle {
  font-size: 0.78rem;
  color: var(--accent-terracotta);
  font-weight: 600;
}

/* Instagram Community Profile Avatar */
.ig-profile-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}

.ig-avatar-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  padding: 3px;
  background: var(--accent-ig-gradient);
  box-shadow: 0 6px 18px rgba(214, 41, 118, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-community-section:hover .ig-avatar-img {
  transform: scale(1.06) rotate(6deg);
}

/* Modal Logo */
.modal-logo-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffccd5;
  box-shadow: 0 6px 20px rgba(223, 145, 133, 0.35);
  margin-bottom: 16px;
  display: inline-block;
  animation: gentlePulse 2.5s infinite ease-in-out;
}

/* Footer Logo */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 204, 213, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.drawer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ffccd5;
}

/* =========================================================
   HOW IT WORKS (3 SIMPLE STEPS)
   ========================================================= */
.how-it-works-section {
  margin: 40px 0;
  padding: 40px 32px;
  background: linear-gradient(145deg, #ffffff 0%, #fff9f5 100%);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.step-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(196, 93, 62, 0.12);
  border-color: var(--accent-honey);
}

.step-number {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-terracotta);
  color: white;
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(196, 93, 62, 0.35);
}

.step-icon {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================================
   CROCHET CARE GUIDE & FAQ ACCORDION
   ========================================================= */
.faq-section {
  margin: 56px 0;
  padding: 44px 36px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-accordion {
  max-width: 860px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-sand);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--accent-terracotta);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(196, 93, 62, 0.09);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--accent-terracotta);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px 24px;
}

/* =========================================================
   RESPONSIVE ENHANCEMENTS FOR CUSTOMERS
   ========================================================= */
html {
  scroll-behavior: smooth;
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
}

/* =========================================================
   FESTIVE DISCOUNT BANNER & COUPON PROMOTIONS
   ========================================================= */
.festive-discount-banner {
  position: relative;
  background: linear-gradient(135deg, #fff9f5 0%, #fff1e6 50%, #fef4e8 100%);
  border: 2px dashed #e8b292;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 28px 0 44px;
  box-shadow: 0 8px 30px rgba(196, 93, 62, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festive-discount-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196, 93, 62, 0.16);
}

.festive-banner-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.festive-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.festive-badge-side {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 280px;
}

.festive-sparkle {
  font-size: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.4));
  animation: festiveWiggle 3s ease-in-out infinite;
}

@keyframes festiveWiggle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(6deg); }
  75% { transform: scale(1.05) rotate(-6deg); }
}

.festive-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.festive-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fde8dc;
  color: var(--accent-terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
  border: 1px solid #f8cdb8;
}

.festive-text h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--text-main);
  margin: 4px 0 2px;
  letter-spacing: -0.01em;
}

.festive-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 600px;
  line-height: 1.45;
}

.festive-coupon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid #ebd4c7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.coupon-label-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.coupon-code-pill {
  display: inline-flex;
  align-items: center;
  background: #fdf5f0;
  border: 1.5px dashed var(--accent-terracotta);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 12px;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coupon-code-pill:hover {
  background: #faece2;
  border-color: var(--accent-terracotta-hover);
}

.coupon-code-pill code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  letter-spacing: 0.08em;
}

.btn-copy-coupon {
  background: white;
  border: 1px solid #e2c0ad;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-coupon:hover {
  background: var(--accent-terracotta);
  color: white;
  border-color: var(--accent-terracotta);
}

.btn-apply-to-bag {
  background: var(--accent-terracotta);
  color: white;
  border: none;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(196, 93, 62, 0.3);
}

.btn-apply-to-bag:hover {
  background: var(--accent-terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196, 93, 62, 0.4);
}



/* =========================================================
   DRAWER MULTI-PRODUCT QUANTITY STEPPER & ITEM UI
   ========================================================= */
.btn-remove-item {
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #a89485;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-remove-item:hover {
  color: #dc2626;
  transform: scale(1.15);
}

.cart-item-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-subtle);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #f5ece4;
  color: var(--text-main);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--accent-terracotta);
  color: white;
  transform: scale(1.08);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-val {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 32px;
  text-align: center;
  color: var(--text-main);
}

.item-subtotal-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.item-subtotal-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.item-subtotal-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--accent-terracotta);
}

/* =========================================================
   DRAWER COUPON CODE INPUT & FEEDBACK
   ========================================================= */
.coupon-section {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-subtle);
}

.coupon-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: white;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.coupon-input:focus {
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.15);
}

.coupon-input:disabled {
  background: #f5efe9;
  color: var(--accent-terracotta);
  cursor: not-allowed;
}

.btn-apply-coupon {
  background: var(--text-main);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  background: var(--accent-terracotta);
  transform: translateY(-1px);
}

.coupon-feedback {
  font-size: 0.78rem;
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.4;
}

.coupon-feedback.success {
  color: #15803d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.coupon-feedback.error {
  color: #b91c1c;
  font-weight: 600;
}

.btn-text-remove {
  background: none;
  border: none;
  color: #dc2626;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 4px;
}

.btn-text-remove:hover {
  color: #991b1b;
}

/* =========================================================
   DRAWER PRICE BREAKDOWN & TOTAL
   ========================================================= */
.drawer-breakdown {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.drawer-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  color: var(--text-muted);
}

.drawer-breakdown-row.discount-row {
  color: #16a34a;
  font-weight: 700;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: 8px;
  margin: 6px 0;
}

@media (max-width: 640px) {
  .festive-discount-banner {
    padding: 18px 20px;
  }
  .festive-badge-side {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .festive-coupon-box {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================================================
   PER-PRODUCT CUSTOMIZATION COMMENTS BOX
   ========================================================= */
.item-custom-box {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
}

.item-custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

.item-custom-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}

.item-custom-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.item-custom-textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-main);
  background: #ffffff;
  resize: vertical;
  min-height: 52px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.item-custom-textarea:focus {
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 93, 62, 0.12);
  background: #fffdfb;
}

.item-custom-textarea::placeholder {
  color: #b5a498;
  font-size: 0.8rem;
}

/* =========================================================
   DRAWER PAYMENT OPTIONS SELECTOR & CALLOUT
   ========================================================= */
.drawer-payment-section {
  margin: 18px 0 16px;
  padding-top: 14px;
  border-top: 1.5px dashed var(--border-subtle);
}

.payment-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-section-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
}

.payment-trust-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

@media (max-width: 420px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

.payment-method-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.payment-method-card:hover {
  border-color: var(--accent-terracotta);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(196, 93, 62, 0.12);
}

.payment-method-card.active {
  background: #fff7f2;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 2px rgba(196, 93, 62, 0.2);
}

.pm-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.pm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pm-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-terracotta);
}

.payment-detail-card {
  background: #fffbf8;
  border: 1.5px solid #ecd5c7;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.pm-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
  flex-wrap: wrap;
}

.pm-detail-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
}

.pm-detail-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: #eafaf1;
  color: #128c7e;
  border: 1px solid #b7ecd0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.pm-detail-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.upi-id-box {
  background: #ffffff;
  border: 1.5px dashed var(--accent-terracotta);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.upi-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
}

.upi-pill {
  display: flex;
  align-items: center;
  gap: 8px;
}

.upi-pill code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  letter-spacing: 0.03em;
}

.btn-copy-upi {
  background: var(--accent-terracotta);
  color: white;
  border: none;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy-upi:hover {
  background: var(--accent-terracotta-hover);
}

.pm-apps-row,
.card-types-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pm-app-pill {
  background: #f4ece4;
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid #e3d5c8;
}

.advance-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.advance-split-box {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.split-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.split-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.split-val.highlight {
  color: var(--accent-terracotta);
}

.split-hint {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.bank-details-box {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.pm-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.35;
}

/* =========================================================
   WORKING PAYMENT ACTION BUTTONS & QR CODE
   ========================================================= */
.btn-pay-now-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin: 10px 0 6px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.25s ease;
  border: none;
  line-height: 1.3;
}

.btn-pay-now-action.upi-action {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-pay-now-action.upi-action:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

.btn-pay-now-action.card-action {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-pay-now-action.card-action:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.btn-pay-now-action.bank-action {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(71, 85, 105, 0.25);
}

.btn-pay-now-action.bank-action:hover {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(71, 85, 105, 0.35);
}

/* Secondary Payment Sub-Action Links */
.btn-pay-subaction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  margin-top: 6px;
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}

.btn-pay-subaction:hover {
  color: var(--text-main);
  background: #fdf8f4;
  border-color: var(--accent-terracotta);
}

/* Live Dynamic QR Code Card */
.upi-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #ecd5c7;
  border-radius: var(--radius-md);
  padding: 12px;
  margin: 10px 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.upi-qr-image {
  width: 136px;
  height: 136px;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.upi-qr-hint {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   📸 Multi-Photo Carousel & Quick-View Lightbox Modal
   ========================================================================== */

/* Multi-Photo Carousel in Product Card */
.card-img-wrapper.has-carousel {
  position: relative;
  cursor: pointer;
}

.card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-main, #2c2523);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.card-img-wrapper:hover .card-carousel-btn {
  opacity: 1;
}

.card-carousel-btn.prev-btn {
  left: 10px;
}

.card-carousel-btn.next-btn {
  right: 10px;
}

.card-carousel-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.12);
  color: var(--primary, #c45d3e);
}

.carousel-dots-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: auto;
}

.carousel-dots-indicator .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dots-indicator .dot.active {
  background: #ffffff;
  width: 18px;
  border-radius: 10px;
}

.card-quickview-trigger {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-main, #2c2523);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.card-img-wrapper:hover .card-quickview-trigger {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.card-quickview-trigger:hover {
  background: #ffffff;
  color: #c45d3e;
  transform: translateX(-50%) translateY(-2px);
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.card-photo-count-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  background: #fdf2f4;
  color: #e11d48;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Card Size / Age Selector */
.card-size-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 10px;
  background: #fbf7f4;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(196, 93, 62, 0.12);
}

.size-selector-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted, #7c726e);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.size-pill-group {
  display: flex;
  gap: 6px;
}

.size-pill-btn {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-main, #2c2523);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.3;
}

.size-pill-btn:hover {
  border-color: #e11d48;
  color: #e11d48;
}

.size-pill-btn.active {
  background: #e11d48;
  color: #ffffff;
  border-color: #e11d48;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.25);
}

/* Product Image Quick-View Lightbox Modal */
.quickview-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quickview-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 12, 0.78);
  backdrop-filter: blur(10px);
}

.quickview-modal-container {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quickview-modal-overlay.active .quickview-modal-container {
  transform: scale(1);
}

.quickview-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  color: #2c2523;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.quickview-close-btn:hover {
  background: #2c2523;
  color: #ffffff;
  transform: rotate(90deg);
}

.quickview-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

@media (max-width: 820px) {
  .quickview-content-layout {
    grid-template-columns: 1fr;
  }
}

.quickview-media-col {
  background: #fbf9f6;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.quickview-main-stage {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #f0ebe4;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.06);
}

.quickview-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quickview-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #2c2523;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.quickview-nav-btn.prev {
  left: 8px;
}

.quickview-nav-btn.next {
  right: 8px;
}

.quickview-nav-btn:hover {
  background: #ffffff;
  color: #c45d3e;
  transform: translateY(-50%) scale(1.1);
}

.quickview-photo-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.quickview-thumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.quickview-thumb-item {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
  background: #ece7e0;
}

.quickview-thumb-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.quickview-thumb-item.active {
  opacity: 1;
  border-color: #e11d48;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.35);
  transform: scale(1.05);
}

.quickview-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-details-col {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quickview-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #fdf2f4;
  color: #e11d48;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quickview-details-col h3 {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.7rem;
  color: var(--text-main, #2c2523);
  margin-bottom: 8px;
}

.quickview-price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c45d3e;
  margin-bottom: 12px;
}

.quickview-details-col p {
  color: var(--text-muted, #645a56);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.quickview-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fdfbf7;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px dashed rgba(196, 93, 62, 0.25);
}

.qv-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.qv-feature-icon {
  font-size: 1.25rem;
  line-height: 1.2;
}

.qv-feature-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main, #2c2523);
}

.qv-feature-item p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted, #7c726e);
}

.quickview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qv-delivery-badge-box {
  background: #fff8f5;
  border: 1.5px dashed #f2cbbe;
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(240, 114, 144, 0.06);
}

.qv-delivery-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #3b1d16;
  font-weight: 600;
  line-height: 1.35;
}

.qv-delivery-line .delivery-badge-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.qv-delivery-line .delivery-badge-text {
  font-family: inherit;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   ✨ CHIC FAME THEME SYSTEM (Haute Couture Luxury Boutique Edition)
   ========================================================================== */

/* Chic Fame Color Palette & Tokens */
body.chic-fame {
  --bg-sand: #fffaf8;
  --bg-canvas: #fcf4f2;
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.95);
  --border-subtle: #f5dedb;
  --border-stitch: #eac6c0;
  
  --text-main: #271d1c;
  --text-muted: #6a5652;
  --text-light: #9c837f;

  /* Chic Accents */
  --accent-terracotta: #d34b6b; /* Chic Couture Rose */
  --accent-terracotta-hover: #ba3856;
  --accent-sage: #4f7361; /* French Sage */
  --accent-sage-light: #f0f7f3;
  --accent-honey: #c59b27; /* Haute Champagne Gold */
  --accent-blush: #f7aab9; /* Silk Rose */
  --accent-cream: #fff9f6;
  --accent-charcoal: #1c1414;
  --accent-ig-pink: #d62976;

  /* Shadows with Soft Rose Glow */
  --shadow-sm: 0 2px 10px rgba(211, 75, 107, 0.05);
  --shadow-md: 0 10px 30px rgba(211, 75, 107, 0.08);
  --shadow-lg: 0 20px 45px rgba(211, 75, 107, 0.13);
  --shadow-float: 0 24px 50px rgba(211, 75, 107, 0.22), 0 8px 20px rgba(197, 155, 39, 0.12);

  background-color: #fffaf8;
  background-image: 
    radial-gradient(circle at 12% 16%, rgba(247, 170, 185, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 88% 84%, rgba(197, 155, 39, 0.12) 0%, transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255, 240, 243, 0.45) 0%, transparent 70%);
}

/* Theme Switcher Toggle Pill */
.theme-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(247, 210, 169, 0.4);
  color: #fff6f2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.theme-switch-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #f7d2a9;
  transform: translateY(-1px);
}

body.chic-fame .theme-switch-btn {
  background: linear-gradient(135deg, rgba(211, 75, 107, 0.35), rgba(197, 155, 39, 0.35));
  border-color: rgba(247, 210, 169, 0.7);
  box-shadow: 0 0 10px rgba(211, 75, 107, 0.3);
}

/* Chic Fame Top Bar */
body.chic-fame .top-bar {
  background: #1c1414;
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
  color: #fff6f2;
}

body.chic-fame .top-location-badge {
  color: #f7d2a9;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.chic-fame .currency-btn.active {
  background: linear-gradient(135deg, #d34b6b, #c59b27);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(211, 75, 107, 0.35);
}

/* Chic Fame Site Header */
body.chic-fame .site-header {
  background: rgba(255, 250, 248, 0.94);
  border-bottom: 1px solid rgba(244, 222, 219, 0.85);
  box-shadow: 0 4px 20px rgba(211, 75, 107, 0.05);
}

body.chic-fame .brand-logo-img {
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #eac6c0, 0 6px 16px rgba(211, 75, 107, 0.16);
  transition: all 0.3s ease;
}

body.chic-fame .brand-logo-img:hover {
  transform: scale(1.05) rotate(4deg);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d34b6b, 0 8px 22px rgba(211, 75, 107, 0.3);
}

body.chic-fame .brand-text h1 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #271d1c 40%, #d34b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.chic-fame .brand-handle {
  color: #c59b27;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

body.chic-fame .nav-link {
  font-weight: 600;
  color: #4a3b38;
}

body.chic-fame .nav-link:hover {
  color: #d34b6b;
}

body.chic-fame .btn-cart-toggle {
  background: linear-gradient(135deg, #d34b6b, #e85d7b);
  border-color: #e85d7b;
  box-shadow: 0 4px 14px rgba(211, 75, 107, 0.3);
}

/* Chic Fame Hero Section */
body.chic-fame .hero-banner {
  background: linear-gradient(135deg, #ffffff 0%, #fff7f8 60%, #fffbf2 100%);
  border: 1px solid #f5dedb;
  box-shadow: 0 20px 50px rgba(211, 75, 107, 0.08);
}

body.chic-fame .badge-tag {
  background: linear-gradient(135deg, #fff0f3 0%, #fffbf0 100%);
  border: 1px solid #eac6c0;
  color: #d34b6b;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.chic-fame .hero-text-col h2 {
  background: linear-gradient(135deg, #271d1c 25%, #d34b6b 65%, #c59b27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.chic-fame .btn-primary {
  background: linear-gradient(135deg, #d34b6b 0%, #e15576 50%, #c59b27 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(211, 75, 107, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body.chic-fame .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

body.chic-fame .btn-primary:hover::after {
  left: 150%;
}

body.chic-fame .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(211, 75, 107, 0.45);
}

/* Chic Fame Festive Banner */
body.chic-fame .festive-discount-banner {
  background: linear-gradient(135deg, #3d121c 0%, #290a13 50%, #1f070e 100%);
  border: 1px solid rgba(223, 177, 123, 0.4);
  box-shadow: 0 14px 40px rgba(61, 18, 28, 0.28);
}

body.chic-fame .festive-pill-tag {
  background: rgba(247, 170, 185, 0.18);
  border: 1px solid rgba(247, 170, 185, 0.4);
  color: #ffd6df;
}

body.chic-fame #banner-coupon-code {
  color: #271d1c;
  background: linear-gradient(135deg, #ffd700 0%, #ffc02b 100%);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Chic Fame Product Cards */
body.chic-fame .product-item-card {
  background: #ffffff;
  border: 1px solid #f5dedb;
  box-shadow: 0 8px 24px rgba(211, 75, 107, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.chic-fame .product-item-card:hover {
  transform: translateY(-8px);
  border-color: #eac6c0;
  box-shadow: 0 20px 45px rgba(211, 75, 107, 0.12), 0 4px 12px rgba(197, 155, 39, 0.08);
}

body.chic-fame .card-tag {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #f5dedb;
  color: #d34b6b;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(211, 75, 107, 0.1);
}

body.chic-fame .card-price {
  color: #d34b6b;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

body.chic-fame .btn-card-add-bag {
  background: linear-gradient(135deg, #d34b6b 0%, #e85d7b 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(211, 75, 107, 0.3);
}

body.chic-fame .btn-card-add-bag:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(211, 75, 107, 0.45);
}

body.chic-fame .filter-btn.active {
  background: linear-gradient(135deg, #d34b6b, #e85d7b);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(211, 75, 107, 0.3);
}

body.chic-fame .size-pill-btn.active {
  background: linear-gradient(135deg, #d34b6b, #c59b27);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(211, 75, 107, 0.3);
}

body.chic-fame .quickview-price-tag {
  color: #d34b6b;
}

body.chic-fame .quickview-badge {
  background: #fff0f3;
  color: #d34b6b;
  border: 1px solid #f5dedb;
}

/* Chic Fame Exhibition Strip */
body.chic-fame .exhibition-strip {
  background: linear-gradient(135deg, #fff7f8 0%, #fffdf8 100%);
  border: 1px solid #f5dedb;
  box-shadow: 0 6px 20px rgba(211, 75, 107, 0.05);
}

body.chic-fame .btn-stall-link {
  background: #ffffff;
  border: 1px solid #eac6c0;
  color: #d34b6b;
}

body.chic-fame .btn-stall-link:hover {
  background: #d34b6b;
  color: #ffffff;
}

/* Chic Fame Order Channels Card */
body.chic-fame .order-channels-card {
  background: #ffffff;
  border: 1px solid #f5dedb;
  box-shadow: 0 12px 36px rgba(211, 75, 107, 0.06);
}

/* Chic Fame Community Spotlight */
body.chic-fame .ig-community-section {
  background: linear-gradient(135deg, #fff8f9 0%, #ffffff 100%);
  border: 1px solid #f5dedb;
  box-shadow: 0 10px 30px rgba(211, 75, 107, 0.06);
}

/* Chic Fame Footer */
body.chic-fame .site-footer {
  background: #1a1213;
  border-top: 1px solid rgba(218, 165, 32, 0.25);
}

body.chic-fame .footer-brand h3 {
  background: linear-gradient(135deg, #ffffff 40%, #f7aab9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* UPI App Quick Selector in Drawer */
.upi-platform-selector {
  margin-top: 14px;
  width: 100%;
}

.upi-select-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #78483b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.upi-app-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
}

.btn-upi-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  border: 1.5px solid #ecdcd5;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4a2820;
}

.btn-upi-app:hover {
  border-color: #f07290;
  background: #fff8f9;
  transform: translateY(-2px);
}

.btn-upi-app.active {
  border-color: #f07290;
  background: #fff0f4;
  color: #c0264b;
  box-shadow: 0 3px 12px rgba(240, 114, 144, 0.25);
}

.upi-app-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Inline Validation Alert */
.checkout-inline-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: none;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.drawer-delivery-promise-row {
  margin: 6px 0 2px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: #5c382e;
}

/* =========================================================================
   PAYMENT SUCCESSFUL RECEIPT MODAL (Matching Razorpay Payment Successful Card)
   ========================================================================= */
.receipt-modal-container {
  width: 92%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(11, 26, 66, 0.32), 0 4px 16px rgba(0, 0, 0, 0.08);
  animation: receiptModalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes receiptModalFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.receipt-navy-banner {
  background: #0b1a42;
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.receipt-secure-badge {
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.receipt-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.receipt-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.receipt-card-body {
  padding: 26px 22px 20px;
  text-align: center;
}

.receipt-check-circle {
  width: 46px;
  height: 46px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.32);
}

.receipt-amount-display {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0b1a42;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.receipt-status-text {
  font-size: 1.02rem;
  color: #586c8f;
  font-weight: 500;
  margin-top: 5px;
}

.receipt-divider {
  border-top: 1px solid #e2e8f0;
  margin: 20px 0 16px;
}

.receipt-table {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.receipt-table-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.receipt-label {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

.receipt-mark-order {
  background: #fef08a;
  color: #1e293b;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.receipt-value {
  font-size: 0.88rem;
  color: #1e293b;
  text-align: right;
  word-break: break-all;
}

.receipt-value.receipt-bold {
  font-weight: 700;
  color: #0f172a;
}

.receipt-value.receipt-mono {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.02em;
}

.receipt-value-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.receipt-customer-email {
  font-size: 0.86rem;
  color: #334155;
}

.receipt-customer-phone {
  font-size: 0.88rem;
  color: #1d4ed8;
  text-decoration: underline;
  font-weight: 600;
}

.receipt-extra-details {
  margin-top: 16px;
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
}

.receipt-extra-header {
  font-size: 0.80rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}

.receipt-extra-header:hover {
  color: #0b1a42;
}

.receipt-extra-content {
  margin-top: 8px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.receipt-email-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.35;
}

.receipt-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-receipt-return {
  width: 100%;
  padding: 12px 20px;
  background: #0b1a42;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-receipt-return:hover {
  background: #14285e;
  transform: translateY(-1px);
}

.receipt-sub-actions {
  display: flex;
  gap: 8px;
}

.btn-receipt-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-receipt-wa:hover {
  background: #1ebc57;
}

.btn-receipt-email {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  background: #f1f5f9;
  color: #334155 !important;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  font-size: 0.80rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-receipt-email:hover {
  background: #e2e8f0;
}

.receipt-photo-sent-badge {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.80rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.35;
}

.btn-receipt-download {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0b1a42 0%, #1e3a8a 100%);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 12px 18px;
  font-size: 0.90rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 14px rgba(11, 26, 66, 0.22);
}

.btn-receipt-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 26, 66, 0.32);
  background: linear-gradient(135deg, #0f2359 0%, #2563eb 100%);
}

.receipt-upi-link {
  font-size: 0.76rem;
  color: #64748b;
  text-decoration: underline;
  margin-top: 2px;
  cursor: pointer;
}

/* Order Confirmation Modal (Rich Receipt & Dispatched Emails) */
.order-confirmation-modal-box {
  max-width: 540px !important;
  width: 92% !important;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 20px !important;
  padding: 24px 22px !important;
  box-sizing: border-box;
}

.order-confirm-badge-top {
  text-align: center;
  margin-bottom: 14px;
}

.order-confirm-check-icon {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 6px;
}

.order-confirm-badge-top h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: #361e2b;
  margin: 0 0 4px;
}

.order-id-display {
  font-size: 0.86rem;
  color: #78483b;
  margin: 0;
}

.order-email-alert-banner {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.email-alert-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.email-alert-content strong {
  display: block;
  font-size: 0.9rem;
  color: #166534;
  margin-bottom: 2px;
}

.email-alert-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #14532d;
  line-height: 1.35;
}

.order-receipt-summary-box {
  background: #fffdfb;
  border: 1.5px solid #f1e4dc;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #4a2820;
}

.receipt-row-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px dashed #e8d0c8;
  padding-top: 8px;
  margin-top: 4px;
}

.receipt-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a2820;
}

.receipt-products-list {
  font-size: 0.82rem;
  color: #61392f;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.receipt-address-text {
  margin: 0;
  font-size: 0.8rem;
  color: #61392f;
  line-height: 1.35;
}

.text-paid-amount {
  font-size: 1.25rem;
  color: #e11d48;
}

.order-confirm-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-action-reopen-upi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f07290 0%, #e04870 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
}

.btn-action-email-receipt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #ea4335 !important;
  border: 1.5px solid #ea4335;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
}

.btn-action-wa-receipt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f0fdf4;
  color: #16a34a !important;
  border: 1.5px solid #bbf7d0;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
}

.btn-return-boutique {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
}

/* Specific Guaranteed Active Rules for Modals */
#upi-qr-modal.active,
#success-modal.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  z-index: 2100 !important;
}

#upi-qr-modal:not(.active) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Direct App Buttons inside QR Modal */
.modal-upi-apps-row {
  margin: 10px 0 14px;
  width: 100%;
}

.modal-upi-apps-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #78483b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-upi-app-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.btn-modal-app-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #ecdcd5;
  background: #ffffff;
  color: #4a2820;
  transition: all 0.2s ease;
}

.btn-modal-app-pill:hover {
  transform: translateY(-1px);
}

.upi-modal-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff8f5;
  border: 1.5px dashed #f2cbbe;
  border-radius: 12px;
  padding: 10px 16px;
  margin: 12px 0 10px;
}

.upi-modal-amt-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.upi-amt-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6a4a40;
}

.upi-amt-val {
  font-size: 1.35rem;
  color: #e11d48;
  font-weight: 800;
}

.upi-modal-order-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #78483b;
}

.upi-modal-delivery-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 12px;
}

.upi-confirm-subtext {
  font-size: 0.75rem;
  color: #78483b;
  margin: 8px 0 0;
  line-height: 1.35;
}

/* =========================================================================
   CUSTOM DM COMMISSION REQUEST MODAL
   ========================================================================= */
.custom-dm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 25, 36, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.custom-dm-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.custom-dm-box {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  max-height: 90dvh;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(54, 30, 43, 0.28), 0 0 0 1px rgba(246, 171, 188, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-sizing: border-box;
}

.custom-dm-modal-overlay.active .custom-dm-box {
  transform: scale(1) translateY(0);
}

.custom-dm-header {
  padding: 24px 28px 18px;
  background: linear-gradient(135deg, #fff5f8 0%, #fffbfb 100%);
  border-bottom: 1px solid #fedfe7;
  position: relative;
  text-align: left;
}

.cdm-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff0f5;
  color: #e11d48;
  border: 1px solid #fecdd3;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.custom-dm-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: #361e2b;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.custom-dm-header p {
  color: #634352;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.custom-dm-body {
  padding: 20px 28px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  text-align: left;
}

/* Section Title */
.cdm-section-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #361e2b;
  margin: 22px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #f6abbc;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cdm-section-title:first-of-type {
  margin-top: 0;
}
.cdm-sec-icon {
  font-size: 1.1rem;
}

/* Fields */
.cdm-form-group {
  margin-bottom: 14px;
}
.cdm-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #361e2b;
  margin-bottom: 6px;
}
.cdm-label .req {
  color: #e11d48;
  margin-left: 2px;
}
.cdm-input, .cdm-textarea {
  width: 100%;
  border: 1.5px solid #fedfe7;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  background: #ffffff;
  color: #361e2b;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cdm-input:focus, .cdm-textarea:focus {
  border-color: #f07290;
  box-shadow: 0 0 0 3.5px rgba(240, 114, 144, 0.15);
  outline: none;
}
.cdm-textarea {
  resize: vertical;
  min-height: 68px;
}

.cdm-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Phone combo */
.cdm-phone-combo {
  display: flex;
  gap: 8px;
}
.cdm-phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #fff5f8;
  border: 1.5px solid #fedfe7;
  border-radius: 12px;
  font-weight: 700;
  color: #e11d48;
  font-size: 0.9rem;
  user-select: none;
}

/* Checkbox & Radio Grids */
.cdm-checkbox-grid, .cdm-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.cdm-check-card, .cdm-radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff8fa;
  border: 1.5px solid #fedfe7;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #361e2b;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.cdm-check-card:hover, .cdm-radio-card:hover {
  border-color: #f07290;
  background: #fff0f5;
}
.cdm-check-card input, .cdm-radio-card input {
  accent-color: #e11d48;
  cursor: pointer;
}

/* File upload */
.cdm-upload-dropzone {
  border: 2px dashed #f6abbc;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  background: #fff8fa;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cdm-upload-dropzone:hover {
  background: #fff0f5;
  border-color: #f07290;
}
.cdm-file-input {
  display: none;
}
.cdm-btn-upload-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #ffffff;
  border: 1.5px solid #f6abbc;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #d62976;
  box-shadow: 0 2px 6px rgba(240, 114, 144, 0.12);
}
.cdm-upload-hint {
  font-size: 0.77rem;
  color: #7b5969;
  margin: 8px 0 0;
  font-style: italic;
}
.cdm-preview-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #fedfe7;
  border-radius: 12px;
}
.cdm-preview-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #fedfe7;
}
.cdm-preview-meta {
  flex: 1;
  font-size: 0.8rem;
  color: #361e2b;
  overflow: hidden;
}
.cdm-preview-meta strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cdm-preview-del {
  background: none;
  border: none;
  color: #e11d48;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
}

/* Submit */
.cdm-submit-section {
  margin-top: 22px;
  text-align: center;
}
.btn-cdm-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.28);
  transition: all 0.25s ease;
}
.btn-cdm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.36);
  background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
}
.cdm-footer-note {
  font-size: 0.78rem;
  color: #7b5969;
  line-height: 1.45;
  margin-top: 10px;
  font-style: italic;
}

/* Success View */
.cdm-success-view {
  text-align: center;
  padding: 24px 12px;
}
.cdm-success-img-tip {
  background: #fff0f5;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #9f1239;
  margin: 14px 0;
  text-align: left;
}

.btn-cdm-email {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.25);
  transition: all 0.25s ease;
}
.btn-cdm-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.35);
  color: #ffffff !important;
}

.btn-cdm-wa {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25d366;
  color: #ffffff !important;
  border: none;
  border-radius: 25px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.22);
  transition: all 0.25s ease;
}
.btn-cdm-wa:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  color: #ffffff !important;
}

.btn-cdm-close {
  background: transparent;
  border: none;
  color: #a3758b;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
  transition: color 0.2s ease;
}
.btn-cdm-close:hover {
  color: #361e2b;
}

@media (max-width: 580px) {
  .custom-dm-header {
    padding: 18px 20px 14px;
  }
  .custom-dm-body {
    padding: 16px 20px 24px;
  }
  .cdm-form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cdm-checkbox-grid, .cdm-radio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================================
   CATEGORY COLLECTIONS CARDS & DYNAMIC BANNER
   ========================================================================= */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 22px 0 24px;
}

@media (max-width: 960px) {
  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 580px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.category-card {
  background: #ffffff;
  border: 1.5px solid #fedfe7;
  border-radius: 18px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(54, 30, 43, 0.04);
  position: relative;
  user-select: none;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #f07290;
  box-shadow: 0 10px 24px rgba(240, 114, 144, 0.16);
}

.category-card.active {
  border-color: #e11d48;
  background: #fff8fa;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.18), 0 0 0 2px rgba(225, 29, 72, 0.15);
}

.category-card-img-wrap {
  width: 100%;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fdf2f8;
}

.category-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img-wrap img {
  transform: scale(1.06);
}

.category-count-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(45, 25, 36, 0.78);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.category-card-info {
  margin-top: 10px;
  width: 100%;
}

.category-card-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: #361e2b;
  margin: 0 0 2px;
  font-weight: 700;
}

.category-hint {
  font-size: 0.74rem;
  color: #7b5969;
}

/* Category Banner Above Grid */
.active-category-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff5f8;
  border: 1px solid #fedfe7;
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 24px;
}

.active-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.active-cat-icon {
  font-size: 1.4rem;
}

.active-cat-title h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  color: #361e2b;
  margin: 0;
}

.active-cat-pill {
  background: #ffffff;
  color: #e11d48;
  border: 1px solid #fecdd3;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 14px;
}

.active-cat-desc {
  font-size: 0.83rem;
  color: #634352;
  margin: 0;
}

/* =========================================================================
   ATELIER INFORMATION HUB
   ========================================================================= */
.atelier-info-hub-section {
  padding: 36px 24px;
  margin: 36px auto;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #fedfe7;
  box-shadow: 0 16px 40px rgba(54, 30, 43, 0.05);
}

.info-hub-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.info-hub-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  color: #361e2b;
  margin: 8px 0;
}

.info-hub-header p {
  color: #634352;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.info-hub-tab-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.info-hub-tab-btn {
  background: #fff5f8;
  color: #361e2b;
  border: 1.5px solid #fedfe7;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.info-hub-tab-btn:hover {
  background: #f07290;
  color: #ffffff;
  border-color: #f07290;
  transform: translateY(-1px);
}

.info-hub-tab-btn.active {
  background: #e11d48;
  color: #ffffff;
  border-color: #e11d48;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
}

.info-hub-panel {
  animation: fadeInPanel 0.3s ease;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .atelier-info-hub-section {
    padding: 24px 16px;
    margin: 24px 12px;
    border-radius: 20px;
  }
  .info-hub-header h2 {
    font-size: 1.45rem;
  }
  .info-hub-tab-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}




