/* ==========================================================================
   SOLAX CAKE ATELIER - LUXURY ARTISANAL STYLESHEET
   Authentic, Editorial, Haute Pâtisserie UI/UX Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Dancing+Script:wght@700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Harmonized with #e0b6a8 (Blush Rose & Warm Cocoa) */
  --bg-cream: #FAF5F3;
  --bg-sand: #F3E9E5;
  --bg-surface: #FFFFFF;
  --bg-dark: #1E1210;
  --bg-dark-surface: #2B1B18;
  --bg-dark-card: #35221F;

  --text-primary: #221412;
  --text-secondary: #5E4742;
  --text-muted: #8E7570;
  --text-light: #FBF8F6;
  --text-light-muted: #DDD1CB;

  /* Primary Theme Accents (derived from #e0b6a8) */
  --theme-rose: #E0B6A8;
  --gold-primary: #D09A8B;
  --gold-light: #F2D8D0;
  --gold-dark: #A36253;
  --gold-gradient: linear-gradient(135deg, #F6E6E1 0%, #E0B6A8 48%, #BE7D6C 100%);
  --gold-subtle: rgba(224, 182, 168, 0.16);
  --gold-border: rgba(224, 182, 168, 0.45);

  --rose-subtle: #FDF7F5;
  --border-light: #EADCD7;
  --border-dark: rgba(224, 182, 168, 0.2);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Garamond, Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 18, 16, 0.04);
  --shadow-md: 0 8px 24px rgba(30, 18, 16, 0.08);
  --shadow-lg: 0 16px 40px rgba(30, 18, 16, 0.12);
  --shadow-xl: 0 24px 60px rgba(30, 18, 16, 0.18);
  --shadow-gold: 0 8px 25px rgba(224, 182, 168, 0.35);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-primary);
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER & NAVIGATION (Wireframe Page 1)
   ========================================================================== */
.top-notice-bar {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  letter-spacing: 0.5px;
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-notice-left, .top-notice-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-notice-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-notice-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-light);
}

.header-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0;
  border-top: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: background-color var(--transition-fast);
}

/* Header Container: Exact 3-column Grid Layout (Guarantees 100% Centered Logo) */
.nav-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0.6rem 0;
  width: 100%;
}

/* Left Nav Group: Hamburger + Location + Our Products */
.nav-group-left {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem;
}

.nav-hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background var(--transition-fast), opacity var(--transition-fast);
}

.nav-hamburger-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  opacity: 0.85;
}

.hamburger-bar {
  width: 22px;
  height: 2.2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: background-color var(--transition-fast);
}

.nav-location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.04);
  border: none !important;
  outline: none !important;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.nav-location-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
}

.nav-location-link:hover {
  background: rgba(197, 155, 39, 0.14);
  border: none !important;
  color: var(--gold-dark);
}

/* Center Logo Area: Guaranteed 100% Dead Center via Grid Column 2 */
.nav-logo-anchor {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  margin: 0 1.25rem;
  justify-self: center;
}

.nav-logo-circle {
  height: 64px;
  width: auto;
  min-width: 80px;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background: transparent;
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.nav-logo-circle:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(144, 90, 30, 0.28));
}

.nav-logo-img {
  max-height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Right Nav Group: Aligned to Right in Grid Column 3 */
.nav-group-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

/* Social Icon Buttons (Facebook, Instagram & WhatsApp in header) */
.nav-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: none !important;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-social-btn svg {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: block;
}

.nav-social-btn:hover {
  background: rgba(197, 155, 39, 0.14);
  color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.2);
}

.nav-social-btn:hover svg {
  color: var(--gold-dark);
  transform: scale(1.08);
}

/* WhatsApp / Phone Direct Pill in Header */
.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  color: #128C7E;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-phone-pill svg {
  width: 16px;
  height: 16px;
  color: #25D366;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.nav-phone-pill:hover {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.nav-phone-pill:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .nav-phone-pill .nav-phone-num {
    display: none;
  }
  .nav-phone-pill {
    padding: 0.45rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}

/* Nav Links */
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  padding: 0.45rem 0.2rem;
  transition: color var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.nav-link svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-secondary);
  transition: stroke var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:hover svg {
  stroke: var(--gold-dark);
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================================================
   GOOEY BLOB BUTTON ANIMATION (Clean, Simple, Stroke-Free)
   ========================================================================== */
.blob-btn {
  z-index: 1;
  position: relative;
  padding: 0.65rem 1.65rem;
  text-align: center;
  text-transform: uppercase;
  color: #8B4B3D;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: transparent;
  outline: none;
  border: none !important;
  transition: color 0.45s ease, box-shadow 0.3s ease, transform 0.25s ease;
  cursor: pointer;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(34, 20, 18, 0.08);
}

.blob-btn:before {
  display: none !important;
}

.blob-btn:after {
  display: none !important;
}

.blob-btn:hover {
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(224, 182, 168, 0.45);
  transform: translateY(-2px);
}

.blob-btn:hover svg {
  stroke: #FFFFFF !important;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #FFFDFD;
  border: none !important;
  outline: none !important;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url('#goo');
  -webkit-filter: url('#goo');
}

.blob-btn__blob {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  background: #E0B6A8;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.6);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.blob-btn__blob:nth-child(1) {
  left: -2%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 24%;
  transition-delay: 0.06s;
}

.blob-btn__blob:nth-child(3) {
  left: 50%;
  transition-delay: 0.12s;
}

.blob-btn__blob:nth-child(4) {
  left: 74%;
  transition-delay: 0.18s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translate3d(0, 0, 0) scale(2.3);
}

/* ==========================================================================
   ORDER NOW HEADER BUTTON (Crisp, Elegant, Guaranteed No-Wrap on Desktop)
   ========================================================================== */
.btn-order-now {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.58rem 1.45rem !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #8B4B3D !important;
  line-height: 1 !important;
  border-radius: 9999px !important;
  border: 1.5px solid rgba(139, 75, 61, 0.3) !important;
  background: #FFFDFD !important;
  box-shadow: 0 3px 12px rgba(139, 75, 61, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1 !important;
}

.btn-order-now span {
  display: inline-block !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  color: inherit !important;
  position: relative !important;
  z-index: 3 !important;
  transition: color 0.3s ease !important;
}

.btn-order-now svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #8B4B3D !important;
  stroke-width: 2.4 !important;
  transition: transform 0.25s ease, stroke 0.25s ease !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 3 !important;
}

.btn-order-now:hover {
  background: #8B4B3D !important;
  border-color: #8B4B3D !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(139, 75, 61, 0.32) !important;
}

.btn-order-now:hover span {
  color: #FFFFFF !important;
}

.btn-order-now:hover svg {
  stroke: #FFFFFF !important;
  transform: translateX(3px) !important;
}

.btn-order-now .blob-btn__inner {
  display: none !important;
}

/* WhatsApp Variation for Order Modal */
.btn-confirm-whatsapp {
  color: #FFFFFF !important;
  background: #25D366 !important;
  width: 100% !important;
  padding: 0.95rem 1.5rem !important;
  margin-bottom: 1.25rem !important;
  border: none !important;
  outline: none !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.btn-confirm-whatsapp:hover {
  background: #1EBE5D !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
}

.btn-confirm-whatsapp span {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  z-index: 2 !important;
}

.btn-confirm-whatsapp svg {
  fill: #FFFFFF !important;
  width: 20px !important;
  height: 20px !important;
  z-index: 2 !important;
  flex-shrink: 0 !important;
}

.btn-confirm-whatsapp .blob-btn__inner {
  display: none !important;
}

/* Hero Pill Blob Button Adjustment (Completely Stroke-Free, Smooth & Simple) */
.btn-hero-pill.blob-btn {
  padding: 0.85rem 2.6rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.btn-hero-pill.blob-btn:before,
.btn-hero-pill.blob-btn:after {
  display: none !important;
  border: none !important;
}

.btn-hero-pill.blob-btn .blob-btn__inner {
  background: rgba(255, 255, 255, 0.92);
  border: none !important;
  border-radius: 9999px;
}

.btn-hero-pill.blob-btn:hover {
  border: none !important;
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.35);
}

/* ==========================================================================
   SLIDE-IN NAVIGATION DRAWER (Picture 2 Style)
   ========================================================================== */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 350px;
  max-width: 88vw;
  background: #ffffff;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 12px 0 45px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-header {
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid #f2f2f2;
}

.nav-drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  transition: color var(--transition-fast), transform var(--transition-bounce);
}

.nav-drawer-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: #333333;
  transition: transform var(--transition-fast), stroke var(--transition-fast);
}

.nav-drawer-close-btn:hover {
  color: var(--gold-dark);
  transform: scale(1.05);
}

.nav-drawer-close-btn:hover svg {
  stroke: var(--gold-dark);
  transform: rotate(90deg);
}

.nav-drawer-body {
  padding: 1.75rem 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer-menu-primary {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.drawer-nav-item svg {
  width: 15px;
  height: 15px;
  stroke: #888888;
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.drawer-nav-item:hover {
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.08);
  padding-left: 1rem;
}

.drawer-nav-item:hover svg {
  stroke: var(--gold-dark);
  transform: translateX(4px);
}

.drawer-divider {
  height: 1px;
  background: #f0ece6;
  margin: 1.75rem 0 1.5rem;
}

.drawer-menu-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-sub-item {
  font-size: 0.92rem;
  color: #555555;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.drawer-sub-item:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
  padding-left: 0.9rem;
}

/* ==========================================================================
   HERO SECTION (Full-Width Responsive Banner Slider with Proportional Aspect Ratio)
   ========================================================================== */
.hero-mint-section {
  position: relative;
  width: 100%;
  height: clamp(480px, 42vw, 680px);
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-cream, #FAF5F3);
}

.hero-slider-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.01);
}

.hero-slide.pure-image-slide .hero-slide-bg {
  transform: none !important;
}

/* Container to keep content away from screen edges and navigation arrows */
.hero-slide-container {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(4rem, 8vw, 7rem) !important;
  padding-right: clamp(4rem, 8vw, 7rem) !important;
  box-sizing: border-box;
}

.hero-slide-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 5;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #c4821a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  color: #221412;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.7);
}

.hero-subline {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.3vw, 1.12rem);
  color: #4A332E;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 500px;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.8);
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
}

/* Order Now Pill Button in Hero */
.btn-hero-pill.blob-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none !important;
  outline: none !important;
  color: #7a3e30;
  background: transparent !important;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-pill.blob-btn .blob-btn__inner {
  background: rgba(255, 255, 255, 0.95);
  border: none !important;
  border-radius: 9999px;
}

.btn-hero-pill.blob-btn svg {
  width: 15px;
  height: 15px;
  stroke: #7a3e30;
  transition: transform var(--transition-bounce), stroke 0.3s ease;
}

.btn-hero-pill.blob-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.45);
}

.btn-hero-pill.blob-btn:hover svg {
  stroke: #ffffff !important;
  transform: translateX(4px);
}

/* Minimalist Navigation Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none !important;
  outline: none !important;
  color: #7a3e30;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-smooth);
  opacity: 0.9;
}

.hero-slider-nav svg {
  width: 20px;
  height: 20px;
  stroke: #7a3e30;
  transition: stroke var(--transition-fast), transform var(--transition-fast);
}

.hero-slider-nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 22px rgba(224, 182, 168, 0.45);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider-prev {
  left: 1.5rem;
}

.hero-slider-next {
  right: 1.5rem;
}

/* Dots Indicators */
.hero-slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(122, 62, 48, 0.35);
  border: none !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider-dot.active {
  width: 24px;
  border-radius: 12px;
  background: #7a3e30;
}

/* ==========================================================================
   CUSTOMER FAVOURITES SECTION (Shop Our Customer Favourites)
   ========================================================================== */
/* ==========================================================================
   CUSTOMER FAVOURITES SECTION (Shop Our Customer Favourites)
   ========================================================================== */
.section-favourites {
  padding: 5.5rem 0 4.5rem;
  background-color: var(--bg-cream);
  position: relative;
}

.favourites-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.favourites-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin: 0;
}

.favourites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.favourite-card {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  border: none !important;
  box-shadow: none !important;
}

.favourite-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #FFFFFF;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(25, 16, 13, 0.07);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.favourite-card:hover .favourite-img-wrap {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(25, 16, 13, 0.12);
}

.favourite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.favourite-card:hover .favourite-img {
  transform: scale(1.05);
}

.favourite-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.favourite-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.favourite-card:hover .favourite-name {
  color: #7A5310;
}

.favourite-price-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #7A5310;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.favourite-size-hint {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.favourite-sep {
  color: #DDD2C7;
  font-size: 0.8rem;
}

.favourite-from-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.favourite-price-val {
  font-weight: 700;
  color: #7A5310;
}

/* Hover Reveal Actions: Hidden by default, smooth animated reveal on hover without affecting other cards */
.favourite-hover-actions {
  width: 100%;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.3s ease;
  margin-top: 0;
}

.favourite-card:hover .favourite-hover-actions,
.favourite-card.hovered .favourite-hover-actions,
.favourite-card:focus-within .favourite-hover-actions {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 0.9rem;
}

/* 2-Column Radio Options Grid (Luxury Gold Theme Matching) */
.favourite-sizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
  max-width: 210px;
  margin: 0 auto 1.15rem;
  text-align: left;
}

.size-radio-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.size-radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.custom-radio-mark {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 155, 39, 0.45);
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.size-radio-item:hover .custom-radio-mark {
  border-color: var(--gold-primary);
  transform: scale(1.06);
}

.size-radio-item input[type="radio"]:checked + .custom-radio-mark {
  border-color: var(--gold-primary);
}

.size-radio-item input[type="radio"]:checked + .custom-radio-mark::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  display: block;
}

.size-label-text {
  font-size: 0.86rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.size-radio-item:hover .size-label-text {
  color: #8B4B3D;
}

/* Select Store & Order CTA Blob Button (Identical to header Order Now button style) */
.btn-favourite-order.blob-btn {
  display: inline-flex;
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  padding: 0.65rem 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(224, 182, 168, 0.22);
  border: none !important;
  background-color: transparent !important;
}

.btn-favourite-order.blob-btn .blob-btn__inner {
  background: #FFFDFD;
  border: none !important;
  border-radius: 9999px;
}

.btn-favourite-order.blob-btn:hover {
  box-shadow: 0 8px 25px rgba(224, 182, 168, 0.45);
  transform: translateY(-2px);
  border: none !important;
}

.btn-favourite-order.blob-btn svg {
  width: 13px;
  height: 13px;
  stroke: #8B4B3D;
  transition: transform var(--transition-bounce), stroke 0.3s ease;
}

.btn-favourite-order.blob-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: translateX(3px);
}

/* ==========================================================================
   OUR STORY & PHILOSOPHY (Pure White 2-Row Alternating Story Showcase)
   ========================================================================== */
.section-story {
  width: 100%;
  padding: 6.5rem 0;
  background-color: #FFFFFF !important;
  position: relative;
}

.section-story .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: clamp(1.5rem, 5vw, 5rem);
  padding-right: clamp(1.5rem, 5vw, 5rem);
}

.story-dual-rows {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  width: 100%;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-row-reverse .story-col-image {
  order: 2;
}

.story-row-reverse .story-col-content {
  order: 1;
}

/* Story Powered by Tagline */
.story-powered-by-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.45rem 1.15rem;
  background: #FFFFFF;
  border: 1px solid rgba(224, 182, 168, 0.6);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(163, 98, 83, 0.08);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #7A3F33;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-powered-by-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 98, 83, 0.16);
  border-color: #8B4B3D;
}

.story-powered-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
  display: inline-block;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}

/* Image Showcase Wrapper */
.story-feature-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  overflow: hidden;
  background: #FAF7F2;
  box-shadow: 0 8px 30px rgba(25, 16, 13, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-row:hover .story-feature-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(25, 16, 13, 0.12);
}

.story-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-row:hover .story-feature-img {
  transform: scale(1.04);
}

/* Content Column */
.story-col-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0;
}

.story-feature-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.2px;
}

.story-feature-p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 1.25rem;
}

.story-feature-actions {
  margin-top: 0.75rem;
}

/* Story Blob CTA Button (Matching header Order Now button style) */
.btn-story-cta.blob-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #8B4B3D;
  background: transparent !important;
  border-radius: var(--radius-pill);
  border: none !important;
  outline: none !important;
  box-shadow: 0 4px 16px rgba(224, 182, 168, 0.22);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-story-cta.blob-btn .blob-btn__inner {
  background: #FFFDFD;
  border: none !important;
  border-radius: 9999px;
}

.btn-story-cta.blob-btn svg {
  width: 15px;
  height: 15px;
  stroke: #8B4B3D;
  transition: transform var(--transition-bounce), stroke 0.3s ease;
}

.btn-story-cta.blob-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 182, 168, 0.45);
  border: none !important;
}

.btn-story-cta.blob-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: translateX(4px);
}

/* ==========================================================================
   TRUST & VALUE HIGHLIGHTS BANNER (3-Feature Trust Badges)
   ========================================================================== */
.section-trust-badges {
  padding: 4.25rem 0 4.5rem;
  background-color: var(--bg-cream);
  border-top: 1px solid rgba(224, 182, 168, 0.25);
  border-bottom: 1px solid rgba(224, 182, 168, 0.25);
  position: relative;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-badge-item:hover {
  transform: translateY(-4px);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  color: #A36253;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.trust-badge-icon svg {
  width: 38px;
  height: 38px;
  stroke: #A36253;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon svg {
  stroke: var(--gold-primary);
  transform: scale(1.08);
}

.trust-badge-title {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.trust-badge-item:hover .trust-badge-title {
  color: #7A5310;
}

.trust-badge-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

/* ==========================================================================
   PICTURE GALLERY / DUAL FEATURE SPOTLIGHT (Wireframe Page 3)
   ========================================================================== */
.section-gallery {
  padding: 6.5rem 0;
  background: #e0b6a8;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.section-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 25, 20, 0.2), transparent);
}

.gallery-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.gallery-header .section-label {
  color: #7A3F33;
  font-weight: 700;
  letter-spacing: 2px;
}

.gallery-header .section-heading {
  color: #221412;
  font-size: 3.2rem;
  font-weight: 700;
}

.gallery-header p {
  color: #4A332E;
  font-size: 1.05rem;
}

/* Dual Feature Frames (As sketched in Page 3: "Nice pictures" & "Nice pictures") */
/* Gallery Showcase Grid (3 Masterpiece Images in a Row) */
.dual-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.feature-frame-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.feature-frame-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 28px 55px rgba(197, 155, 39, 0.25);
}

.feature-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-frame-card:hover .feature-frame-img {
  transform: scale(1.06);
}

.feature-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 16, 13, 0.1) 0%,
    rgba(25, 16, 13, 0.4) 50%,
    rgba(25, 16, 13, 0.92) 100%
  );
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--transition-fast);
}

.feature-frame-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(197, 155, 39, 0.2);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.feature-frame-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.feature-frame-desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.feature-frame-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: gap var(--transition-fast);
}

.feature-frame-card:hover .feature-frame-cta {
  gap: 0.85rem;
}

.feature-frame-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
}

/* Gallery Section Dedicated Exploration Button (High-Contrast Espresso on #e0b6a8) */
.section-gallery .blob-btn {
  color: #221412 !important;
  box-shadow: 0 6px 22px rgba(50, 25, 20, 0.16);
  font-weight: 700;
  padding: 0.8rem 2.2rem;
  letter-spacing: 1px;
}

.section-gallery .blob-btn svg {
  stroke: #221412 !important;
  transition: transform 0.25s ease, stroke 0.45s ease;
}

.section-gallery .blob-btn__inner {
  background: #FFFFFF !important;
}

.section-gallery .blob-btn__blob {
  background: #2A1613 !important; /* Rich Dark Chocolate */
}

.section-gallery .blob-btn:hover {
  color: #FAF5F3 !important;
  box-shadow: 0 12px 32px rgba(42, 22, 19, 0.35);
  transform: translateY(-2px);
}

.section-gallery .blob-btn:hover svg {
  stroke: #FAF5F3 !important;
  transform: translateX(4px);
}

/* ==========================================================================
   INSIDE (PRODUCT CATALOG - Wireframe Page 4)
   ========================================================================== */
.section-catalog {
  padding: 7rem 0;
  background-color: var(--bg-cream);
  position: relative;
}

.catalog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.catalog-header .section-heading {
  margin-bottom: 1rem;
}

.catalog-subtitle {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/* Filter & Search Bar */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.catalog-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-pill {
  background: rgba(0, 0, 0, 0.04);
  border: none !important;
  outline: none !important;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  background: rgba(197, 155, 39, 0.14);
  color: var(--gold-dark);
  border: none !important;
}

.filter-pill.active {
  background: #1A110E;
  color: var(--gold-light);
  border: none !important;
  box-shadow: 0 4px 14px rgba(26, 17, 14, 0.18);
}

.catalog-search-wrap,
.catalog-search-wrapper {
  position: relative;
  min-width: 280px;
  max-width: 360px;
}

.catalog-search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem 0.65rem 2.75rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.catalog-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.catalog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  pointer-events: none;
}

.catalog-search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Catalog Status Bar & WhatsApp Prompt */
.catalog-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.catalog-count-badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(224, 182, 168, 0.18);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border);
}

.catalog-whatsapp-prompt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B5E20;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.catalog-whatsapp-prompt svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: #25D366 !important;
  flex-shrink: 0;
  display: inline-block;
}

/* 3-Column Product Grid (Wireframe Page 4: 3 columns x 3 rows) */
.cakes-grid,
.products-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.cake-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.cake-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.cake-card-img-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background-color: var(--bg-sand);
  cursor: pointer;
}

.cake-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cake-card:hover .cake-card-img {
  transform: scale(1.08);
}

.cake-card-badge,
.cake-card-category-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(25, 16, 13, 0.75);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(197, 155, 39, 0.3);
}

.cake-card-hover-prompt {
  position: absolute;
  inset: 0;
  background: rgba(25, 16, 13, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(2px);
}

.cake-card:hover .cake-card-hover-prompt {
  opacity: 1;
}

.cake-card-hover-badge {
  background: var(--gold-gradient);
  color: #1A110E;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Card Body (Wireframe Page 4: "Description") */
.cake-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cake-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.45rem;
}

.cake-card-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cake-card:hover .cake-card-title {
  color: var(--gold-primary);
}

.cake-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.cake-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.cake-card-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-card-order {
  border: 1px solid rgba(224, 182, 168, 0.5) !important;
  outline: none !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  background: #F4EBE8 !important;
  color: #221412 !important;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 1;
}

.btn-card-order span {
  white-space: nowrap;
  color: inherit !important;
}

.btn-card-order svg {
  width: 14px;
  height: 14px;
  stroke: #221412 !important;
  fill: none !important;
  flex-shrink: 0;
  transition: transform var(--transition-fast), stroke var(--transition-fast);
}

.btn-card-order.blob-btn {
  background: #F4EBE8 !important;
  color: #221412 !important;
}

.btn-card-order:before,
.btn-card-order:after {
  display: none !important;
  border: none !important;
}

.btn-card-order.blob-btn .blob-btn__inner {
  display: none !important;
}

/* Hover only when hovering directly on the button or card */
.btn-card-order:hover {
  background: var(--gold-primary, #C59B27) !important;
  border-color: var(--gold-primary, #C59B27) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.35);
  transform: translateY(-2px);
}

.btn-card-order:hover span {
  color: #FFFFFF !important;
}

.btn-card-order:hover svg {
  stroke: #FFFFFF !important;
  transform: translateX(2px);
}

/* When hovering over the cake card, gently highlight the button without turning text invisible */
.cake-card:hover .btn-card-order {
  background: #EDE1DC !important;
  color: #221412 !important;
  border-color: #D4A89C !important;
}

.cake-card:hover .btn-card-order span {
  color: #221412 !important;
}

.cake-card:hover .btn-card-order svg {
  stroke: #221412 !important;
}

.cake-card:hover .btn-card-order:hover {
  background: var(--gold-primary, #C59B27) !important;
  border-color: var(--gold-primary, #C59B27) !important;
  color: #FFFFFF !important;
}

.cake-card:hover .btn-card-order:hover span {
  color: #FFFFFF !important;
}

.cake-card:hover .btn-card-order:hover svg {
  stroke: #FFFFFF !important;
}

/* ==========================================================================
   ORDER DETAILS DRAWER / MODAL (Wireframe Page 5: "after clicking the picture")
   ========================================================================== */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 11, 9, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.order-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.order-modal-dialog {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-smooth);
}

.order-modal-backdrop.open .order-modal-dialog {
  transform: translateY(0) scale(1);
}

.order-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none !important;
  outline: none !important;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.order-modal-close-btn:hover {
  background: #1A110E;
  color: var(--gold-light);
  transform: rotate(90deg);
}

.order-modal-close-btn svg {
  width: 20px;
  height: 20px;
}

/* Modal Content Grid */
.order-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

/* Left Image Column */
.order-modal-visual {
  position: relative;
  background: var(--bg-sand);
  min-height: 380px;
}

.order-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-modal-ribbon-preview-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(25, 16, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.ribbon-swatch-pip {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.ribbon-swatch-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Right Form Column (Wireframe Page 5 exact fields) */
.order-modal-form-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.order-modal-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.order-modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.order-modal-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Field: Wrapping Color (Sketch Page 5: "wrapping color") */
.order-field-group {
  margin-bottom: 1.5rem;
}

.order-field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.order-field-label span.highlight {
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: none;
}

.wrapping-colors-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wrapping-color-chip {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-bounce), border-color var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.wrapping-color-chip:hover {
  transform: scale(1.15);
}

.wrapping-color-chip.active {
  border-color: #1A110E;
  box-shadow: 0 0 0 2px var(--gold-light), 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.wrapping-color-chip.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Field: Price & Qty Row (Sketch Page 5: "Product Price", "Qty", "Total") */
.order-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.order-calc-col {
  display: flex;
  flex-direction: column;
}

.calc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.calc-value-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Quantity Stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
  width: fit-content;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.qty-stepper:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.qty-btn {
  width: 34px;
  height: 34px;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  border: none;
  user-select: none;
}

.qty-btn:hover {
  background: var(--gold-subtle);
  color: var(--gold-primary);
}

.qty-input {
  min-width: 44px;
  max-width: 60px;
  width: auto;
  padding: 0 4px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Total Box */
.calc-total-banner {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light);
}

.calc-total-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-total-value {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Field: Remarks (Sketch Page 5: "Remarks") */
.order-remarks-textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--bg-cream);
  resize: vertical;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.order-remarks-textarea:focus {
  border-color: var(--gold-primary);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* Confirm Order via WhatsApp (Sketch Page 5 exact text) */
.btn-confirm-whatsapp {
  background: #25D366;
  background: linear-gradient(135deg, #2ED76D 0%, #1EBE5D 100%);
  color: #FFFFFF;
  border: none !important;
  outline: none !important;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  width: 100%;
  margin-bottom: 1.25rem;
}

.btn-confirm-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  border: none !important;
}

.btn-confirm-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Response Promise Guarantee (Sketch Page 5: "we will contact you with :- 1 working day.") */
.order-promise-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.order-promise-banner svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   LOCATION MODAL & DETAILS
   ========================================================================== */
.location-modal-card {
  max-width: 560px;
  padding: 2.5rem;
  text-align: center;
}

.location-icon-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location-icon-bubble svg {
  width: 28px;
  height: 28px;
}

.location-modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.location-info-list {
  text-align: left;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-info-row:last-child {
  margin-bottom: 0;
}

.location-info-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.location-info-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   HERITAGE & COMMUNITY QUOTE BANNER (Before Footer)
   ========================================================================== */
.section-quote-heritage {
  width: 100%;
  background-color: var(--bg-cream);
  padding: 3rem 1.5rem 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(197, 155, 39, 0.15);
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
}

.quote-heritage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* 3 Pillars / Vertical Bars Motif */
.heritage-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.heritage-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 28px;
}

.heritage-bar {
  display: block;
  width: 5.5px;
  height: 26px;
  background-color: var(--gold-primary);
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.heritage-emblem:hover .heritage-bar:nth-child(1) {
  transform: translateY(-2px);
}
.heritage-emblem:hover .heritage-bar:nth-child(2) {
  transform: translateY(-4px);
}
.heritage-emblem:hover .heritage-bar:nth-child(3) {
  transform: translateY(-2px);
}

.heritage-estd {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* Quote Headline */
.heritage-quote-text {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 1.15rem 0;
  letter-spacing: -0.2px;
  max-width: 780px;
}

/* Bottom Logo: CHEESE Cake SHOP */
.heritage-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-primary);
  user-select: none;
}

.heritage-brand-logo .brand-word {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1;
}

.heritage-brand-logo .brand-script {
  font-family: 'Dancing Script', 'Brush Script MT', 'Caveat', cursive;
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-primary);
  line-height: 0.9;
  transform: translateY(-1px);
  margin: 0 0.15rem;
}

@media (max-width: 768px) {
  .section-quote-heritage {
    padding: 2.25rem 1.25rem 2rem;
  }
  .heritage-quote-text {
    font-size: 1.05rem;
    margin-bottom: 0.95rem;
  }
  .heritage-bars {
    height: 24px;
    gap: 4px;
  }
  .heritage-bar {
    width: 4.5px;
    height: 22px;
  }
  .heritage-brand-logo .brand-word {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  .heritage-brand-logo .brand-script {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(197, 155, 39, 0.25);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.footer-brand-tagline {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-dark-card);
  border: none !important;
  outline: none !important;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--gold-gradient);
  color: #1A110E;
  border: none !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(197, 155, 39, 0.3);
}

.footer-social-btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  color: var(--gold-light);
  display: block;
}

.footer-social-btn:hover svg {
  color: #1A110E;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.65rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-light);
}

/* Footer Boutique Location Map */
.footer-map-section {
  background: var(--bg-dark-surface);
  border: 1px solid rgba(224, 182, 168, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.footer-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-map-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.footer-map-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-map-sub {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
}

.footer-map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(224, 182, 168, 0.12);
  border: 1.5px solid rgba(224, 182, 168, 0.35);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer-map-link-btn:hover {
  background: var(--gold-gradient);
  color: #1A110E;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 155, 39, 0.35);
}

.footer-map-container {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(224, 182, 168, 0.25);
  background: #2b1b18;
}

@media (max-width: 768px) {
  .footer-map-section {
    padding: 1.25rem 1.25rem;
    margin-bottom: 2.5rem;
  }
  .footer-map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-map-link-btn {
    width: 100%;
    justify-content: center;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-admin-link {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-admin-link:hover {
  text-decoration: underline;
}

.footer-powered-link {
  color: var(--gold-light, #D4AF37);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease), text-shadow var(--transition-fast, 0.2s ease);
}

.footer-powered-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   BACK TO TOP FLOATING BUTTON (Luxury Gold Pill Expansion & Mobile Optimized)
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1A110E;
  border: none !important;
  outline: none !important;
  font-family: var(--font-sans);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: transform, opacity;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top-btn:active {
  transform: scale(0.92) translate3d(0, 0, 0) !important;
}

.back-to-top-btn .btt-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.back-to-top-btn .svgIcon {
  width: 14px;
  height: 14px;
  display: block;
}

.back-to-top-btn .svgIcon path {
  fill: #EAC775;
  transition: fill 0.3s ease;
}

.back-to-top-btn .btt-text {
  position: absolute;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1A110E;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Desktop Only Hover Pill Expansion */
@media (hover: hover) and (pointer: fine) {
  .back-to-top-btn:hover {
    width: 142px;
    border-radius: 40px;
    background: linear-gradient(135deg, #F6E6E1 0%, #E0B6A8 50%, #BE7D6C 100%);
    border: none !important;
    box-shadow: 0 8px 25px rgba(224, 182, 168, 0.45);
  }

  .back-to-top-btn:hover .btt-icon-wrap {
    transform: translate3d(0, -200%, 0);
    opacity: 0;
  }

  .back-to-top-btn:hover .svgIcon path {
    fill: #1A110E;
  }

  .back-to-top-btn:hover .btt-text {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1280px) {
  .nav-wrapper {
    padding: 0.6rem 0;
  }
  .nav-group-left, .nav-group-right {
    gap: 0.65rem;
  }
  .nav-link {
    font-size: 0.8rem;
    gap: 0.35rem;
  }
  .btn-order-now {
    padding: 0.55rem 1.25rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1200px) {
  .nav-phone-pill .nav-phone-num {
    display: none !important;
  }
  .nav-phone-pill {
    padding: 0.45rem !important;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    justify-content: center !important;
  }
  .nav-gallery-link .nav-text-desktop {
    display: none !important;
  }
  .nav-location-link .nav-text-desktop {
    display: none !important;
  }
  .nav-group-left, .nav-group-right {
    gap: 0.55rem;
  }
  .btn-order-now {
    padding: 0.52rem 1.15rem !important;
    font-size: 0.78rem !important;
  }
  .hero-mint-content {
    max-width: 520px;
  }
}

@media (max-width: 1024px) {
  .nav-text-desktop {
    display: none;
  }
  .nav-group-left {
    gap: 0.55rem;
  }
  .nav-group-right {
    gap: 0.55rem;
  }
  .nav-social-btn {
    display: inline-flex !important;
  }
  .btn-order-now {
    padding: 0.5rem 1rem !important;
    font-size: 0.76rem !important;
  }
  .nav-logo-anchor {
    margin: 0 0.75rem;
  }
  .nav-logo-circle {
    height: 52px;
    max-width: 110px;
    min-width: auto;
  }
  .nav-logo-img {
    max-height: 48px;
  }
  .hero-mint-section {
    min-height: 520px;
    padding: 4rem 0;
  }
  .hero-mint-content {
    max-width: 480px;
  }
  .hero-mint-heading {
    font-size: 3.5rem;
  }
  .products-3col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual-feature-grid {
    gap: 1.5rem;
  }
  .feature-frame-card {
    height: 380px;
  }
  .story-dual-rows {
    gap: 3.5rem;
  }
  .story-row {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .story-row-reverse .story-col-image {
    order: 1;
  }
  .story-row-reverse .story-col-content {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .favourites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }
  .nav-wrapper {
    min-height: 62px;
    padding: 0.45rem 0.65rem;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-group-left {
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .nav-hamburger-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    transition: background var(--transition-fast);
  }
  .nav-hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.07);
  }

  /* Desktop-only text links & location hidden on mobile top bar */
  .nav-location-link,
  .nav-products-link,
  .nav-gallery-link,
  .btn-order-now {
    display: none !important;
  }

  /* Guaranteed Centered Logo */
  .nav-logo-anchor {
    margin: 0 0.4rem;
    justify-self: center;
  }
  .nav-logo-circle {
    height: 46px;
    max-width: 110px;
    min-width: auto;
    padding: 1px 4px;
  }
  .nav-logo-img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
  }

  /* Right Action Group: Facebook, Instagram, WhatsApp, Cart */
  .nav-group-right {
    gap: 0.38rem;
    justify-content: flex-end;
  }
  .nav-social-btn {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
  }
  .nav-social-btn svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    max-width: 15px !important;
  }
  .nav-phone-pill {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(37, 211, 102, 0.12) !important;
    border: 1px solid rgba(37, 211, 102, 0.3) !important;
    color: #128C7E !important;
  }
  .nav-phone-pill .nav-phone-num {
    display: none !important;
  }
  .nav-phone-pill svg {
    width: 16px !important;
    height: 16px !important;
  }
  .nav-cart-btn {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: var(--text-primary) !important;
    position: relative !important;
  }
  .nav-cart-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
  .hero-mint-section {
    position: relative;
    width: 100%;
    height: clamp(340px, 60vh, 520px);
    min-height: 340px;
    padding: 2rem 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-slider-nav {
    display: none;
  }
  .hero-slider-dots {
    bottom: 1.25rem;
  }
  .hero-slide-bg {
    background-position: center center !important;
    background-size: cover !important;
    transform: none !important;
  }
  .overlay-mint {
    background: linear-gradient(
      180deg,
      rgba(189, 227, 212, 0.96) 0%,
      rgba(189, 227, 212, 0.88) 55%,
      rgba(189, 227, 212, 0.45) 100%
    );
  }
  .overlay-mocha {
    background: linear-gradient(
      180deg,
      rgba(247, 243, 238, 0.96) 0%,
      rgba(247, 243, 238, 0.88) 55%,
      rgba(247, 243, 238, 0.45) 100%
    );
  }
  .overlay-pastel {
    background: linear-gradient(
      180deg,
      rgba(253, 244, 245, 0.96) 0%,
      rgba(253, 244, 245, 0.88) 55%,
      rgba(253, 244, 245, 0.45) 100%
    );
  }
  .hero-mint-container {
    justify-content: center;
  }
  .hero-mint-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0;
  }
  .hero-mint-eyebrow {
    font-size: clamp(0.75rem, 3vw, 0.95rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
  }
  .hero-mint-title-group {
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
  }
  .hero-coin-badge {
    width: 52px;
    height: 52px;
  }
  .hero-coin-text {
    font-size: 1.35rem;
  }
  .hero-mint-heading {
    font-size: clamp(1.65rem, 6vw, 2.35rem);
    line-height: 1.15;
    word-break: break-word;
  }
  .hero-mint-desc {
    font-size: clamp(0.82rem, 3vw, 0.95rem);
    line-height: 1.45;
    margin-bottom: 1.25rem;
    max-width: 460px;
  }
  .btn-hero-pill {
    padding: 0.7rem 1.8rem;
    font-size: 0.875rem;
  }
  .dual-feature-grid {
    grid-template-columns: 1fr;
  }
  .products-3col-grid {
    grid-template-columns: 1fr;
  }
  .order-modal-layout {
    grid-template-columns: 1fr;
  }
  .order-modal-visual {
    min-height: 220px;
    max-height: 260px;
  }
  .order-modal-form-side {
    padding: 1.25rem 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .favourites-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 2rem;
  }
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 340px;
    margin: 0 auto;
  }
  .favourites-title {
    font-size: 1.6rem;
  }
  .favourite-hover-actions {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 0.85rem;
  }
  .back-to-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  }
  .back-to-top-btn .btt-text {
    display: none !important;
  }
  .back-to-top-btn .btt-icon-wrap {
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    padding: 0.35rem 0.5rem;
    min-height: 56px;
  }
  .nav-group-left {
    gap: 0.35rem;
    justify-content: flex-start;
  }
  .nav-group-right {
    gap: 0.28rem;
    justify-content: flex-end;
  }
  .nav-hamburger-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
  }
  .nav-social-btn,
  .nav-phone-pill,
  .nav-cart-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  .nav-social-btn svg,
  .nav-phone-pill svg,
  .nav-cart-btn svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    max-width: 14px !important;
  }
  .nav-logo-anchor {
    margin: 0 0.25rem;
  }
  .nav-logo-circle {
    height: 42px;
    max-width: 95px;
  }
  .nav-logo-img {
    max-height: 38px;
  }
  .hero-mint-heading {
    font-size: 2.15rem;
  }
  .hero-coin-badge {
    width: 64px;
    height: 64px;
  }
  .hero-coin-text {
    font-size: 1.5rem;
  }
  .hero-mint-desc {
    font-size: 0.9rem;
  }
  .catalog-tabs-wrapper {
    gap: 0.4rem;
  }
  .filter-pill {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   DEDICATED ABOUT PAGE STYLES (.about-*)
   ========================================================================== */
.about-hero,
.products-hero,
.contact-hero,
.gallery-hero {
  position: relative;
  min-height: 440px;
  background: #19100D url('../images/image_43e367fe.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 5rem 1.5rem;
  box-sizing: border-box;
}

.about-hero::before,
.products-hero::before,
.contact-hero::before,
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 16, 13, 0.85) 0%, rgba(25, 16, 13, 0.92) 100%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.about-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.about-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumbs a:hover {
  color: var(--gold-light);
}

.about-hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(197, 155, 39, 0.18);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FAF7F2;
  margin-bottom: 1.25rem;
}

.about-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  max-width: 660px;
  margin: 0 auto;
}

/* ==========================================================================
   VISION & MISSION SECTION (.about-vm-*)
   ========================================================================== */
.section-about-vm {
  padding: 4.5rem 0 2rem;
  background: var(--bg-cream);
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.about-vm-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.about-vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.about-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
}

.about-vm-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(224, 182, 168, 0.2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.about-vm-icon svg {
  width: 26px;
  height: 26px;
}

.about-vm-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.about-vm-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-vm-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold-primary);
}

/* Brand Ecosystem Section */
.section-about-brands {
  padding: 5.5rem 0;
  background: var(--bg-cream);
}

.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-brand-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.about-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.about-brand-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: rgba(224, 182, 168, 0.2);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.about-brand-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.about-brand-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* Founder Credentials Showcase */
.about-founder-box {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

.about-founder-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.about-founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F9EDE8 0%, #E0B6A8 50%, #B87363 100%);
  color: #1E1210;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(224, 182, 168, 0.4);
  flex-shrink: 0;
}

.about-founder-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-founder-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.25rem;
}

.about-credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-credential-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Narrative Story Section */
.section-about-story {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-lead {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.45;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-story-p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.about-signature-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-signature-script {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--gold-dark);
}

.about-signature-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-collage {
  position: relative;
}

.about-collage-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-collage-sub {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 6px solid #FFFFFF;
}

.about-collage-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--bg-dark);
  color: var(--gold-light);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
  text-align: center;
  z-index: 3;
}

.about-collage-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-collage-badge-lbl {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #FAF7F2;
}

/* Pillars Section */
.section-about-pillars {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.about-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.about-section-tag {
  display: inline-block;
  font-size: 0.78125rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.about-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-section-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-pillar-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.about-pillar-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.about-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.about-pillar-icon svg {
  width: 24px;
  height: 24px;
}

.about-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.about-pillar-text {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Timeline Section */
.section-about-timeline {
  padding: 6rem 0;
  background: var(--bg-sand);
}

.about-timeline {
  position: relative;
  max-width: 860px;
  margin: 3rem auto 0;
  padding: 1rem 0;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-border);
  transform: translateX(-50%);
}

.about-timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  width: 100%;
}

.about-timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 50%;
}

.about-timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 50%;
}

.about-timeline-dot {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 4px solid var(--bg-sand);
  box-shadow: 0 0 0 3px var(--gold-border);
  z-index: 2;
}

.about-timeline-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 380px;
  transition: transform var(--transition-smooth);
}

.about-timeline-item:nth-child(odd) .about-timeline-card {
  margin-right: 2.5rem;
}

.about-timeline-item:nth-child(even) .about-timeline-card {
  margin-left: 2.5rem;
}

.about-timeline-card:hover {
  transform: translateY(-4px);
}

.about-timeline-year {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(197, 155, 39, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.about-timeline-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-timeline-p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Culinary Artisans Team Section */
.section-about-team {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-team-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.about-team-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-team-card:hover .about-team-img {
  transform: scale(1.05);
}

.about-team-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(25, 16, 13, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 155, 39, 0.3);
}

.about-team-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.about-team-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about-team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 0.85rem;
}

.about-team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Kitchen Gallery Strip */
.section-about-kitchen {
  padding: 5rem 0 6rem;
  background: var(--bg-surface);
}

.about-kitchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-kitchen-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.about-kitchen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-kitchen-item:hover .about-kitchen-img {
  transform: scale(1.08);
}

.about-kitchen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(25, 16, 13, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #FAF7F2;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.about-kitchen-caption {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Call To Action Banner */
.about-cta-section {
  position: relative;
  background: #19100D url('../images/hero2.jpg') center/cover no-repeat;
  padding: 6rem 1.5rem;
  color: #FAF7F2;
  text-align: center;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 16, 13, 0.9);
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FAF7F2;
  margin-bottom: 1rem;
}

.about-cta-p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin-bottom: 2.25rem;
}

.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
  .about-vm-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-brands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-collage-sub {
    right: 0;
    bottom: -1.5rem;
  }
  .about-collage-badge {
    left: 0;
  }
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-kitchen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 380px;
    padding: 4rem 1rem;
  }
  .about-timeline::before {
    left: 20px;
  }
  .about-timeline-item:nth-child(odd),
  .about-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 45px;
    padding-right: 0;
  }
  .about-timeline-dot {
    left: 20px;
  }
  .about-timeline-item:nth-child(odd) .about-timeline-card,
  .about-timeline-item:nth-child(even) .about-timeline-card {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-kitchen-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DEDICATED PRODUCTS PAGE STYLES (products.php)
   ========================================================================== */
/* Inherits unified hero style from .about-hero */

.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.products-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 182, 168, 0.3);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.products-breadcrumbs a {
  color: #FAF7F2;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.products-breadcrumbs a:hover {
  color: var(--gold-light);
}

.products-breadcrumbs-sep {
  opacity: 0.5;
  color: var(--gold-light);
}

.products-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FAF7F2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.products-hero-title span {
  background: linear-gradient(135deg, #FFF1ED 0%, #E0B6A8 50%, #BD7A6A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #D9CFC4;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.products-features-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.products-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 182, 168, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FAF7F2;
  letter-spacing: 0.5px;
}

.products-feature-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
  flex-shrink: 0;
}

/* Catalog Toolbar Enhancements */
.catalog-toolbar-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.catalog-toolbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.catalog-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(224, 182, 168, 0.16);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(224, 182, 168, 0.35);
}

.catalog-search-wrapper {
  position: relative;
  min-width: 280px;
  flex-grow: 1;
  max-width: 380px;
}

.catalog-search-clear {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: none;
  font-size: 1.1rem;
  line-height: 1;
}

.catalog-search-clear:hover {
  color: var(--text-primary);
}

/* Empty search state */
.catalog-no-match-box {
  display: none;
  text-align: center;
  padding: 4.5rem 2rem;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.catalog-no-match-box svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold-primary);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.catalog-no-match-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.catalog-no-match-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

/* Bespoke Wedding & Event Consultation Banner */
.bespoke-consult-section {
  position: relative;
  background: #19100D url('../images/hero2.jpg') center/cover no-repeat;
  padding: 5.5rem 1.5rem;
  margin-top: 5rem;
  color: #FAF7F2;
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bespoke-consult-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 16, 13, 0.93) 0%, rgba(35, 22, 18, 0.88) 100%);
}

.bespoke-consult-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.bespoke-consult-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(224, 182, 168, 0.18);
  border: 1px solid rgba(224, 182, 168, 0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.bespoke-consult-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #FAF7F2;
  margin-bottom: 1rem;
}

.bespoke-consult-p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .products-hero {
    padding: 3.5rem 1rem 3rem;
  }
  .products-features-strip {
    gap: 0.5rem;
  }
  .products-feature-pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }
  .catalog-search-wrapper {
    max-width: 100%;
    min-width: 100%;
  }
  .bespoke-consult-section {
    padding: 3.5rem 1.25rem;
    margin-top: 3.5rem;
  }
}


/* ==========================================================================
   DEDICATED GALLERY PAGE STYLES (gallery.php)
   ========================================================================== */
/* Inherits unified hero style from .about-hero */

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.gallery-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.gallery-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.gallery-breadcrumbs a:hover {
  color: var(--gold-light);
}

.gallery-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(224, 182, 168, 0.18);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gallery-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FAF7F2;
  margin-bottom: 1.25rem;
}

.gallery-hero-title span {
  color: var(--theme-rose);
  font-style: italic;
}

.gallery-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  max-width: 660px;
  margin: 0 auto 1.75rem;
}

.gallery-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.gallery-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 182, 168, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.78125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

.gallery-hero-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--theme-rose);
}

/* Gallery Section Layout */
.section-gallery-page {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.gallery-count-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-count-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.gallery-count-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Gallery Grid & Cards */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.full-gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.full-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
}

.full-gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #19100D;
}

.full-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.full-gallery-card:hover .full-gallery-img {
  transform: scale(1.08);
}



.full-gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 16, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.full-gallery-card:hover .full-gallery-hover-overlay {
  opacity: 1;
}

.zoom-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E1210;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.75);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-icon-bubble svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.full-gallery-card:hover .zoom-icon-bubble {
  transform: scale(1);
}

.full-gallery-caption {
  padding: 1.35rem 1.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  text-align: left;
}

.full-gallery-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.full-gallery-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Fullscreen Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
}

.lightbox-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-backdrop.open .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(224, 182, 168, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

.lightbox-caption-box {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Lightbox Controls */
.lightbox-close-btn {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(224, 182, 168, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.25s ease;
}

.lightbox-close-btn svg {
  width: 22px;
  height: 22px;
}

.lightbox-close-btn:hover {
  background: var(--gold-gradient);
  color: #1E1210;
  border-color: transparent;
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(224, 182, 168, 0.3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.25s ease;
}

.lightbox-nav-btn svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav-btn:hover {
  background: var(--gold-gradient);
  color: #1E1210;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

@media (max-width: 768px) {
  .about-hero,
  .products-hero,
  .contact-hero,
  .gallery-hero {
    padding: 3.5rem 1rem;
    min-height: 360px;
  }
  .full-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lightbox-prev, .lightbox-next {
    display: none;
  }
  .lightbox-close-btn {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
  .lightbox-title { font-size: 1.3rem; }
  .lightbox-desc { font-size: 0.85rem; }
}

/* ==========================================================================
   VISION & MISSION SECTION (.about-vm-*, .section-vision-mission)
   ========================================================================== */
.section-about-vm,
.section-vision-mission {
  padding: 4.5rem 0 2rem;
  background: var(--bg-cream);
}

.about-vm-grid,
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.about-vm-card,
.vision-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.about-vm-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.about-vm-card:hover,
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
}

.about-vm-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-vm-icon,
.vision-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  border-radius: 14px;
  background: rgba(224, 182, 168, 0.2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.about-vm-icon svg,
.vision-card-icon svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  display: block;
}

.about-vm-tag,
.vision-card-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.about-vm-title,
.vision-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-vm-quote,
.vision-card-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold-primary);
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .about-vm-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-vm-card,
  .vision-card {
    padding: 2.25rem 2rem;
  }
}

@media (max-width: 768px) {
  .section-about-vm,
  .section-vision-mission {
    padding: 3.5rem 0 1.5rem;
  }

  .about-vm-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-vm-card,
  .vision-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg, 16px);
  }

  .about-vm-header {
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .about-vm-icon,
  .vision-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 12px;
  }

  .about-vm-icon svg,
  .vision-card-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }

  .about-vm-tag,
  .vision-card-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .about-vm-title,
  .vision-card-title {
    font-size: 1.45rem;
  }

  .about-vm-quote,
  .vision-card-text {
    font-size: 1.1rem;
    line-height: 1.55;
    padding-left: 1.15rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .about-vm-card,
  .vision-card {
    padding: 1.5rem 1.2rem;
  }

  .about-vm-header {
    gap: 0.75rem;
  }

  .about-vm-title,
  .vision-card-title {
    font-size: 1.3rem;
  }

  .about-vm-quote,
  .vision-card-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 0.9rem;
    border-left-width: 2.5px;
  }
}


/* ==========================================================================
   CUSTOMER REVIEWS & CHAT SCREENSHOTS SECTION (Luxury Atelier Theme)
   ========================================================================== */
.section-reviews {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #FBF6F4 0%, #F5ECE8 50%, #FBF6F4 100%);
  position: relative;
  overflow: hidden;
}

.section-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 182, 168, 0.6), transparent);
}

.section-reviews::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 182, 168, 0.6), transparent);
}

.reviews-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.reviews-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* Reviews Slider Layout (3 items visible on desktop, slideable) */
.reviews-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0.5rem 0 1rem;
}

.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.25rem 1.5rem;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  gap: 1.75rem;
}

.review-slide-item {
  flex: 0 0 calc((100% - (1.75rem * 2)) / 3);
  max-width: calc((100% - (1.75rem * 2)) / 3);
  box-sizing: border-box;
  display: flex;
}

.review-slide-item .review-card {
  width: 100%;
}

/* Slider Navigation Arrows */
.reviews-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(224, 182, 168, 0.7);
  box-shadow: 0 8px 24px rgba(58, 30, 25, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--text-primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-slider-arrow:hover:not(:disabled) {
  background: var(--gold-primary, #C59B27);
  border-color: var(--gold-primary, #C59B27);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 28px rgba(197, 155, 39, 0.3);
}

.reviews-slider-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.reviews-slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.reviews-prev-btn {
  left: -22px;
}

.reviews-next-btn {
  right: -22px;
}

/* Slider Dots Pagination */
.reviews-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(224, 182, 168, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-dot:hover {
  background: var(--gold-light, #D4AF37);
  transform: scale(1.15);
}

.reviews-dot.active {
  width: 28px;
  background: var(--gold-primary, #C59B27);
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.35);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid rgba(224, 182, 168, 0.45);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(58, 30, 25, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(58, 30, 25, 0.12);
  border-color: #E0B6A8;
}

.review-card.featured-review {
  background: linear-gradient(175deg, #FFFFFF 0%, #FFFDFD 100%);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 12px 35px rgba(197, 155, 39, 0.08);
}

.review-card.featured-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
}

.review-card-top,
.review-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  font-size: 1.15rem;
  color: #E0B6A8;
  letter-spacing: 1px;
}

.star-svg,
.review-stars .star {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: inline-block;
  fill: #EADCD7;
  stroke: none;
  flex-shrink: 0;
}

.star-svg.filled,
.review-stars .star.filled {
  fill: #C59B27 !important;
}

.review-date-badge {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(224, 182, 168, 0.35);
}

.review-quote-icon svg {
  width: 100%;
  height: 100%;
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.review-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

/* Chat Screenshot Mockup Container */
.review-chat-preview {
  margin: 0.5rem 0 1.5rem;
  background: #F8F3F1;
  border: 1px solid rgba(224, 182, 168, 0.5);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.review-chat-preview:hover {
  border-color: #8B4B3D;
  box-shadow: 0 8px 24px rgba(58, 30, 25, 0.15);
  transform: scale(1.02);
}

.review-chat-tag,
.review-chat-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: rgba(37, 211, 102, 0.12);
  border-bottom: 1px solid rgba(37, 211, 102, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-chat-tag svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  stroke: #1B5E20 !important;
  fill: none !important;
  display: inline-block;
}

.chat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chat-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8B4B3D;
}

.review-chat-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  background: #FAF7F5;
  overflow: hidden;
}

.review-chat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.review-chat-preview:hover .review-chat-img {
  transform: scale(1.05);
}

.chat-hover-zoom {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 19, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.chat-hover-zoom svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
}

.chat-hover-zoom span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.review-chat-preview:hover .chat-hover-zoom {
  opacity: 1;
}

/* Customer Author Signature Footer */
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(224, 182, 168, 0.25);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0B6A8 0%, #C48474 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(196, 132, 116, 0.35);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.review-author-event {
  font-size: 0.78rem;
  color: #8B4B3D;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .review-slide-item {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
  .reviews-slider-track {
    gap: 1.5rem;
  }
  .reviews-prev-btn {
    left: -12px;
  }
  .reviews-next-btn {
    right: -12px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-reviews {
    padding: 4.5rem 0 5rem;
  }
  .review-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reviews-slider-track {
    gap: 1rem;
  }
  .reviews-slider-arrow {
    width: 38px;
    height: 38px;
  }
  .reviews-prev-btn {
    left: 4px;
  }
  .reviews-next-btn {
    right: 4px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .review-card {
    padding: 1.75rem 1.4rem 1.4rem;
  }
  .review-title {
    font-size: 1.2rem;
  }
  .review-text {
    font-size: 0.875rem;
  }
}

/* Catalog Empty / No-Match State */
.catalog-no-match,
.catalog-no-match-box {
  text-align: center;
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 560px;
  background: #FFFDFD;
  border: 1.5px dashed rgba(224, 182, 168, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(58, 30, 25, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.catalog-no-match svg,
.catalog-no-match-box svg {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  stroke: var(--gold-primary, #C59B27) !important;
  color: var(--gold-primary, #C59B27) !important;
  fill: none !important;
  stroke-width: 1.75;
  margin-bottom: 0.25rem;
  display: block;
}

.catalog-no-match h3,
.catalog-no-match-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary, #221412);
  margin: 0;
  line-height: 1.3;
}

.catalog-no-match p,
.catalog-no-match-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-secondary, #6D5048);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

.catalog-no-match #catalogResetBtn,
.catalog-no-match-box #catalogResetBtn {
  margin-top: 0.75rem;
  background: #1A110E;
  color: var(--gold-light, #F8E7D8);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--gold-border, rgba(197, 155, 39, 0.4));
  box-shadow: 0 4px 15px rgba(26, 17, 14, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.catalog-no-match #catalogResetBtn:hover,
.catalog-no-match-box #catalogResetBtn:hover {
  background: var(--gold-gradient, linear-gradient(135deg, #C59B27, #E0B6A8));
  color: #1A110E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.3);
}

/* PRODUCTS & HERO RESPONSIVE RULES (Tablet & Mobile Edge-to-Edge Adaptation) */
@media (max-width: 1024px) {
  .hero-mint-section {
    height: auto !important;
    aspect-ratio: 16 / 8 !important;
    min-height: 360px !important;
  }

  .hero-slide-container {
    padding-left: clamp(3rem, 6vw, 4.5rem) !important;
    padding-right: clamp(3rem, 6vw, 4.5rem) !important;
  }

  .cakes-grid,
  .products-3col-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .catalog-toolbar {
    gap: 1.25rem;
  }

  .catalog-search-wrap,
  .catalog-search-wrapper {
    min-width: 240px;
    max-width: 320px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-bottom: 2.5rem !important;
  }

  /* Dynamic Proportional Hero: Left-Right corners touch screen edges */
  .hero-mint-section {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 220px !important;
    max-height: 440px !important;
  }

  .hero-slide-bg {
    background-size: 100% 100% !important;
    background-position: center center !important;
  }

  .hero-slide-container {
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .hero-headline {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.35rem !important;
  }

  .hero-subline {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.65rem !important;
    max-width: 300px !important;
  }

  .hero-badge {
    font-size: 0.68rem !important;
    padding: 0.2rem 0.6rem !important;
    margin-bottom: 0.35rem !important;
  }

  .btn-hero-pill.blob-btn {
    padding: 0.45rem 1.2rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.8px !important;
  }

  .btn-hero-pill.blob-btn svg {
    width: 11px !important;
    height: 11px !important;
  }

  .hero-slider-nav {
    width: 32px !important;
    height: 32px !important;
    opacity: 0.85 !important;
  }

  .hero-slider-nav svg {
    width: 14px !important;
    height: 14px !important;
  }

  .hero-slider-prev {
    left: 0.4rem !important;
  }

  .hero-slider-next {
    right: 0.4rem !important;
  }

  .hero-slider-dots {
    bottom: 0.5rem !important;
    padding: 0.2rem 0.5rem !important;
    gap: 0.35rem !important;
  }

  .hero-slider-dot {
    width: 5px !important;
    height: 5px !important;
  }

  .hero-slider-dot.active {
    width: 14px !important;
  }

  /* Catalog / Products Section on Mobile */
  .section-catalog {
    padding: 3rem 0 4rem;
  }

  .catalog-header {
    margin-bottom: 2rem;
    text-align: center;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .category-pills-wrap,
  .catalog-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.6rem;
    gap: 0.5rem;
    width: 100%;
    scrollbar-width: thin;
  }

  .filter-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1.15rem;
    font-size: 0.8125rem;
  }

  .catalog-search-wrap,
  .catalog-search-wrapper {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .catalog-status-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .catalog-count-badge,
  .catalog-whatsapp-prompt {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .cakes-grid,
  .products-3col-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .cake-card {
    max-width: 100%;
  }

  .cake-card-img-wrap {
    height: 250px;
  }

  .cake-card-body {
    padding: 1.35rem 1.25rem;
  }

  .cake-card-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .cake-card-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .cake-card-footer {
    padding-top: 1rem;
  }

  .cake-card-price {
    font-size: 1.35rem;
  }

  .btn-card-order {
    padding: 0.55rem 1.15rem;
    font-size: 0.78rem;
  }

  .catalog-no-match,
  .catalog-no-match-box {
    padding: 2.75rem 1.25rem;
    margin: 1.5rem auto;
    width: 100%;
    box-sizing: border-box;
  }

  .catalog-no-match svg,
  .catalog-no-match-box svg {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }

  .catalog-no-match h3,
  .catalog-no-match-title {
    font-size: 1.3rem;
  }

  .catalog-no-match p,
  .catalog-no-match-desc {
    font-size: 0.875rem;
  }

  .catalog-no-match #catalogResetBtn,
  .catalog-no-match-box #catalogResetBtn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-mint-section {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 180px !important;
  }

  .hero-slide-container {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .btn-hero-pill.blob-btn {
    padding: 0.35rem 0.9rem !important;
    font-size: 0.65rem !important;
  }

  .section-catalog {
    padding: 2.5rem 0 3.5rem;
  }

  .cake-card-img-wrap {
    height: 220px;
  }

  .cake-card-body {
    padding: 1.15rem 1rem;
  }

  .cake-card-title {
    font-size: 1.2rem;
  }

  .cake-card-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   CONTACT US & ATELIER CONCIERGE STYLES
   ========================================================================== */
/* Inherits unified hero style from .about-hero */

.section-contact-cards {
  padding: 3.5rem 0 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: transform var(--transition-fast);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.contact-card-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.contact-card-value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.contact-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-btn-link.primary {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.contact-btn-link.primary:hover {
  background: #1ebc57;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.contact-btn-link.secondary {
  background: rgba(224, 182, 168, 0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.contact-btn-link.secondary:hover {
  background: var(--gold-dark);
  color: #ffffff;
  border-color: var(--gold-dark);
}

/* Main Form & Aside Layout */
.section-contact-main {
  padding: 2.5rem 0 5rem;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--text-primary);
  margin: 0.5rem 0 0.85rem;
  line-height: 1.2;
}

.contact-form-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: #dc3545;
}

.highlight-optional {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px var(--gold-subtle);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn-whatsapp-direct {
  background: #25D366 !important;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  border-radius: 9999px !important;
  width: 100%;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem !important;
  padding: 0.95rem 1.5rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-whatsapp-direct span {
  color: #ffffff !important;
  font-weight: 700 !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-whatsapp-direct svg {
  width: 20px !important;
  height: 20px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  flex-shrink: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.3s ease !important;
}

.btn-whatsapp-direct:hover {
  background: #1ebc57 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
}

.btn-whatsapp-direct:hover svg {
  transform: scale(1.1) !important;
}

.btn-whatsapp-direct.blob-btn {
  background: #25D366 !important;
  color: #ffffff !important;
}

.btn-whatsapp-direct.blob-btn .blob-btn__inner {
  display: none !important;
}

.contact-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.contact-btn-submit:hover {
  background: var(--bg-sand);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.contact-btn-submit svg {
  width: 16px;
  height: 16px;
}

.form-guarantee-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.contact-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.notice-success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid #25D366;
  color: #0e6b30;
}

.notice-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #b02a37;
}

/* Aside: Map & Highlights */
.contact-aside-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map-banner {
  padding: 1.75rem 1.75rem 1.25rem;
}

.map-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.map-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.map-address {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-map-frame {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #eee;
}

.contact-map-footer {
  padding: 1.15rem 1.75rem;
  background: var(--bg-cream);
  text-align: center;
}

.btn-map-open {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.btn-map-open:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.contact-highlights-card {
  background: var(--bg-sand);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.highlights-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.highlight-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.highlight-bullet {
  color: var(--gold-dark);
  font-weight: bold;
}

/* FAQ Section */
.section-contact-faq {
  padding: 4rem 0 5rem;
  background: var(--bg-sand);
  border-top: 1px solid var(--border-light);
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  color: var(--text-primary);
  margin: 0.5rem 0 0.85rem;
}

.faq-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.faq-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth);
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 1.75rem 1.25rem;
  }
}

/* ==========================================================================
   LUXURY PRELOADER & IMAGE LOADING COVER SCREEN
   - Hides unrendered layouts & loading images
   - Smooth champagne/rose gold aesthetic
   - Silky fade-out transition once images & DOM finish
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF5F3;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s ease;
  pointer-events: all;
}

.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 253, 252, 0.95) 0%, rgba(245, 236, 232, 0.98) 100%);
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 380px;
  width: 90%;
}

/* Ring Orbit Logo */
.preloader-logo-ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.preloader-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(208, 154, 139, 0.45);
  animation: preloaderSpin 9s linear infinite;
}

.preloader-orbit-reverse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--gold-dark, #A36253);
  border-bottom-color: var(--theme-rose, #E0B6A8);
  animation: preloaderSpinReverse 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloaderSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.preloader-logo-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(58, 30, 25, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  border: 1.5px solid rgba(224, 182, 168, 0.6);
  animation: preloaderPulse 2.4s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.97); box-shadow: 0 4px 15px rgba(224, 182, 168, 0.25); }
  100% { transform: scale(1.03); box-shadow: 0 10px 30px rgba(163, 98, 83, 0.3); }
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.preloader-cake-svg {
  width: 38px;
  height: 38px;
  color: var(--gold-dark, #A36253);
}

/* Typography Group */
.preloader-text-group {
  margin-bottom: 1.5rem;
}

.preloader-brand-title {
  display: block;
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #221412;
  line-height: 1.2;
}

.preloader-brand-sub {
  display: block;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8B4B3D;
  margin-top: 0.25rem;
}

/* Progress Pulse Track */
.preloader-progress-track {
  width: 160px;
  height: 3px;
  background: rgba(224, 182, 168, 0.35);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  position: relative;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #E0B6A8 0%, #A36253 100%);
  border-radius: 9999px;
  transition: width 0.35s ease-out;
}

/* Indeterminate animation while waiting */
.preloader-progress-fill.indeterminate {
  width: 40% !important;
  animation: preloaderBarSlide 1.6s ease-in-out infinite;
}

@keyframes preloaderBarSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(180%); }
  100% { transform: translateX(350%); }
}

.preloader-status-text {
  font-size: 0.75rem;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-weight: 600;
  color: #8E7570;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

/* ==========================================================================
   SHOPPING CART SYSTEM STYLES
   ========================================================================== */
.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(163, 98, 83, 0.1);
  border: 1px solid rgba(163, 98, 83, 0.25);
  color: var(--gold-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nav-cart-btn:hover {
  background: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(163, 98, 83, 0.25);
}

.nav-cart-btn svg {
  width: 19px;
  height: 19px;
  transition: transform var(--transition-fast);
}

.nav-cart-btn:hover svg {
  transform: scale(1.08);
}

.nav-cart-badge,
.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #A36253;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  animation: cartBadgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartBadgePop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Floating Sticky Cart Button (Bottom Left) */
.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A36253 0%, #7A3F33 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(122, 63, 51, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 28px rgba(122, 63, 51, 0.45);
}

.floating-cart-btn svg {
  width: 24px;
  height: 24px;
}

/* Slide-in Cart Drawer */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 18, 16, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #FAF8F5;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(224, 182, 168, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}

.cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cart-drawer-close-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-drawer-close-btn:hover {
  background: rgba(163, 98, 83, 0.12);
  color: var(--gold-dark);
}

.cart-drawer-close-btn svg {
  width: 20px;
  height: 20px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  overscroll-behavior: contain;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 3rem 1.5rem;
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: #ffffff;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(224, 182, 168, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f2ed;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price-each {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.cart-item-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(224, 182, 168, 0.6);
  background: #FAF8F5;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-item-qty-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
}

.cart-item-qty-val {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  color: var(--text-primary);
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

.cart-item-subtotal {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: #c97d6d;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove-btn:hover {
  color: #a32211;
  background: rgba(200, 50, 30, 0.08);
}

.cart-item-remove-btn svg {
  width: 16px;
  height: 16px;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid rgba(224, 182, 168, 0.4);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart-summary-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-summary-total {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.btn-cart-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: #25D366 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.btn-cart-whatsapp:hover {
  background: #1EBE5D !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Toast Notification for Add to Cart */
.cart-toast {
  position: fixed;
  bottom: 88px;
  left: 24px;
  right: auto;
  z-index: 1050;
  background: #2E1B17;
  color: #FAF8F5;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(224, 182, 168, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
  animation: cartToastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cartToastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cart-toast-view-btn {
  background: #A36253;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .floating-cart-btn {
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 50px;
    height: 50px;
  }
  .cart-toast {
    bottom: 78px;
    left: 16px;
    right: auto;
    max-width: calc(100vw - 32px);
  }
}


