/*
Theme Name:        Kainara
Theme URI:         https://kainara.in
Author:            Kainara Studio
Author URI:        https://kainara.in
Description:       Luxury handloom saree storefront theme for Kainara. Custom-built for WooCommerce with Georgia typography and rich Jaipur-maroon & gold design system.
Version:           2.5.8
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      8.0
License:           Proprietary
License URI:       https://kainara.in/terms
Text Domain:       kainara
*/

:root {
  --c-ink:          #100D0A;
  --c-ink-soft:     #2A221C;
  --c-muted:        #5E5248;
  --c-muted-light:  #8A7F76;
  --c-border:       #E2D9CE;
  --c-ivory:        #FFFFFF;
  --c-ivory-2:      #EDE7DD;
  --c-maroon:       #7D1035;
  --c-gold:         #B8892A;
  --c-white:        #FFFFFF;

  --font-bodoni:    Georgia, 'Bodoni Moda', Georgia, 'Bodoni Moda', serif;
  --font-cinzel:    Georgia, 'Bodoni Moda', serif;
  --font-dm-sans:   'DM Sans', -apple-system, system-ui, sans-serif;

  --nav-h:          68px;
  --ann-h:          36px;
  --container-max:  1380px;
  --container-pad:  16px;

  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-dm-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  width: 100%;
}

/* Headings typography: Georgia serif */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-bodoni) !important;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}

/* Global Container Layout — Strict 16px Left & Right Padding with 100% max bounds */
.container-kainara,
.kainara-container {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px !important;
  padding-right: 16px !important;
  width: 100%;
  box-sizing: border-box;
}

/* ════════════════════════════════════════════════════════════════
   UNIVERSAL 100% FIXED STICKY HEADER (DESKTOP & MOBILE)
   ════════════════════════════════════════════════════════════════ */
#header-sticky-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  background: #FFFFFF !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

/* Info Bar & Main Header flow naturally inside wrapper */
.ann-bar {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 30px !important;
  position: relative !important;
  z-index: 2 !important;
}

.site-header {
  position: relative !important;
  width: 100% !important;
  height: 68px !important;
  background: #FFFFFF !important;
  z-index: 1 !important;
}

.site-header--checkout {
  height: 64px !important;
}

#page {
  padding-top: 98px !important;
}

body.page-template-page-checkout #page,
body.woocommerce-checkout #page {
  padding-top: 64px !important;
}

body.admin-bar #header-sticky-wrapper {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar #header-sticky-wrapper {
    top: 46px !important;
  }
}

.mobile-menu-btn {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   BUTTON DESIGN SYSTEM & MICROINTERACTIONS
   ════════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  background: var(--c-ink);
  color: #FFFFFF;
  font-family: var(--font-dm-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--c-maroon);
  border-color: var(--c-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(125, 16, 53, 0.30);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  background: #FFFFFF;
  color: #100D0A;
  font-family: var(--font-dm-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-primary:hover {
  background: var(--c-gold);
  color: #FFFFFF;
  border-color: var(--c-gold);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(184, 137, 42, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 30px;
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
  font-family: var(--font-dm-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover {
  background: var(--c-ink);
  color: #FFFFFF;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-dm-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.btn-ghost:hover {
  color: var(--c-maroon);
}

/* Editorial Dark Banner CTA (Dark Background) */
.btn-editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 32px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-dm-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-editorial-cta:hover {
  background: #FFFFFF;
  color: #100D0A;
  border-color: #FFFFFF;
}
.btn-editorial-cta .cta-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-editorial-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Editorial Light CTA (White Background — 1:1 Match with screenshot 1 & 3) */
.btn-editorial-cta-light {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  height: 48px !important;
  padding: 0 32px !important;
  background: #FFFFFF !important;
  color: #100D0A !important;
  border: 1px solid #100D0A !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}
.btn-editorial-cta-light:hover {
  background: #100D0A !important;
  color: #FFFFFF !important;
  border-color: #100D0A !important;
}
.btn-editorial-cta-light .cta-arrow {
  display: inline-block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-editorial-cta-light:hover .cta-arrow {
  transform: translateX(5px) !important;
}

/* Product Card Desktop Hover Interactions */
.product-card {
  position: relative;
  cursor: pointer;
}
.product-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover img {
  transform: scale(1.04);
}

/* Desktop Hover Quick View Action Button */
.product-card:hover .quick-view-btn {
  transform: translateY(0%) !important;
}
.quick-view-btn:hover {
  background: #100D0A !important;
  color: #FFFFFF !important;
}

/* Quick View Primary Add to Bag CTA Hover Microinteraction */
#qv-add-to-bag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 48px !important;
  background: #100D0A !important;
  color: #FFFFFF !important;
  border: 1px solid #100D0A !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
#qv-add-to-bag:hover {
  background: #100D0A !important;
  border-color: #B8892A !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(125, 16, 53, 0.30) !important;
}

/* Close Button Hover */
#quick-view-close:hover {
  background: #100D0A !important;
  color: #FFFFFF !important;
  border-color: #100D0A !important;
}

/* ════════════════════════════════════════════════════════════════
   SEARCH OVERLAY PANEL RESPONSIVE GRID & EVEN SPACING
   ════════════════════════════════════════════════════════════════ */
#search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 782px) {
  #search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  #search-modal-panel {
    max-height: 90vh !important;
  }
  #search-modal-panel .kainara-container {
    padding-top: 16px !important;
    padding-bottom: 28px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  #site-search-input {
    font-size: 15px !important;
  }
  .search-tag-pill {
    padding: 5px 10px !important;
    font-size: 10px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   SUBTLE & CREATIVE PRIMARY CTA (Solid Jaipur Maroon #7D1035 Fill on Hover)
   ════════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-hero-primary,
.btn-editorial-cta,
.btn-kai-primary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  height: 50px !important;
  padding: 0 36px !important;
  background: #FFFFFF !important;
  color: #100D0A !important;
  border: 1px solid #FFFFFF !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  text-decoration: none !important;
  overflow: visible !important;
  z-index: 1 !important;
  border-radius: 2px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-editorial-cta:hover,
.btn-kai-primary:hover {
  background: #7D1035 !important;
  color: #FFFFFF !important;
  border-color: #7D1035 !important;
  letter-spacing: 0.18em !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(125, 16, 53, 0.40) !important;
}

.btn-primary:hover::before,
.btn-hero-primary:hover::before,
.btn-editorial-cta:hover::before,
.btn-kai-primary:hover::before {
  transform: scaleX(1) !important;
}

.btn-primary span,
.btn-hero-primary span,
.btn-editorial-cta span {
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary:hover span:last-child,
.btn-hero-primary:hover span:last-child,
.btn-editorial-cta:hover span:last-child {
  transform: translateX(5px) !important;
}

/* ════════════════════════════════════════════════════════════════
   LUXURY SECONDARY CTA (Single Solid Jaipur Maroon #7D1035 + Soft Blur Shadow)
   ════════════════════════════════════════════════════════════════ */
.btn-editorial-cta-light,
.btn-secondary {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 48px !important;
  padding: 0 30px !important;
  background: transparent !important;
  color: #100D0A !important;
  border: 1px solid #100D0A !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 11.5px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  overflow: visible !important;
  text-decoration: none !important;
  z-index: 1 !important;
  transition: color 0.35s ease, border-color 0.35s ease, letter-spacing 0.35s ease, box-shadow 0.35s ease !important;
}

.btn-editorial-cta-light::before,
.btn-secondary::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #7D1035 !important; /* Solid Brand Jaipur Maroon */
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: -1 !important;
}

.btn-editorial-cta-light:hover,
.btn-secondary:hover {
  color: #FFFFFF !important;
  border-color: #7D1035 !important;
  letter-spacing: 0.20em !important;
  box-shadow: 0 8px 24px rgba(125, 16, 53, 0.30) !important; /* Soft Brand Maroon Blur Shadow */
}

.btn-editorial-cta-light:hover::before,
.btn-secondary:hover::before {
  transform: scaleX(1) !important;
}

.btn-secondary span,
.btn-editorial-cta-light span {
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-secondary:hover span:last-child,
.btn-editorial-cta-light:hover span:last-child {
  transform: translateX(5px) !important;
}

/* Dark Banner Variant Secondary CTA (Hero / Dark Section) */
.btn-secondary-banner,
.btn-secondary--light {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 50px !important;
  padding: 0 32px !important;
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  overflow: visible !important;
  text-decoration: none !important;
  z-index: 1 !important;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, letter-spacing 0.4s ease !important;
}

.btn-secondary-banner::before,
.btn-secondary--light::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #FFFFFF !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: -1 !important;
}

.btn-secondary-banner:hover,
.btn-secondary--light:hover {
  color: #100D0A !important;
  border-color: #FFFFFF !important;
  letter-spacing: 0.20em !important;
}

.btn-secondary-banner:hover::before,
.btn-secondary--light:hover::before {
  transform: scaleX(1) !important;
}

.btn-secondary-banner span,
.btn-secondary--light span {
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-secondary-banner:hover span:last-child,
.btn-secondary--light:hover span:last-child {
  transform: translateX(5px) !important;
}

/* ════════════════════════════════════════════════════════════════
   TERTIARY BUTTON (Brand Jaipur Maroon #7D1035 Underline)
   ════════════════════════════════════════════════════════════════ */
.btn-tertiary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #100D0A !important;
  text-decoration: none !important;
  position: relative !important;
  padding-bottom: 4px !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
  transition: color 0.3s ease !important;
}

.btn-tertiary::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1.5px !important;
  background: #100D0A !important; /* Brand Jaipur Maroon */
  transform: scaleX(0) !important;
  transform-origin: right !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-tertiary:hover {
  color: #7D1035 !important;
}

.btn-tertiary:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

.btn-tertiary span:last-child {
  display: inline-block !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-tertiary:hover span:last-child {
  transform: translateX(4px) !important;
}

/* Fabric Filter Tabs & Border Darkening Hover */
.fabric-tab {
  flex-shrink: 0 !important;
  padding: 0 18px !important;
  height: 34px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: 1px solid #E2D9CE !important;
  background: transparent !important;
  color: #5E5248 !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.fabric-tab:hover {
  border-color: #100D0A !important;
  color: #100D0A !important;
}
.fabric-tab.fabric-tab--active,
.fabric-tab--active {
  border-color: #100D0A !important;
  background: #100D0A !important;
  color: #FFFFFF !important;
}

/* Artisan Card Grayscale-to-Color Hover & Elevation Interaction */
.artisan-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.artisan-card-img {
  filter: grayscale(100%);
  transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
@media (hover: hover) {
  .artisan-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(26, 18, 8, 0.14) !important;
  }
  .artisan-card:hover .artisan-card-img {
    filter: grayscale(0%) !important;
    transform: scale(1.06) !important;
  }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE FIRST RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════ */

@media screen and (max-width: 782px) {
  .mobile-menu-btn { display: block !important; }
  .primary-navigation { display: none !important; }
  .show-mobile { display: block !important; }

  /* Hide Desktop Quick View Button on Mobile */
  .quick-view-btn {
    display: none !important;
  }

  /* Quick View Grid on Mobile */
  .quick-view-grid {
    grid-template-columns: 1fr !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
  .quick-view-left {
    min-height: 280px !important;
  }
  .quick-view-right {
    padding: 24px 20px !important;
  }

  /* Curated Sarees Product Carousel Track on Mobile */
  .product-carousel-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .mobile-product-carousel-card {
    flex: 0 0 72vw !important;
    max-width: 72vw !important;
    scroll-snap-align: start !important;
  }

  /* Editorial Banner: Image on top, text panel on bottom */
  .editorial-panel {
    grid-column: span 12 !important;
    order: 2 !important;
    padding: 40px 20px !important;
  }
  .editorial-image-wrap {
    grid-column: span 12 !important;
    order: 1 !important;
    min-height: 320px !important;
  }

  /* Process Section Layout */
  .process-flex-container {
    flex-direction: column !important;
    gap: 32px !important;
  }
  .process-left-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px !important;
  }
  .process-col-left {
    transform: none !important;
  }

  /* Edge-to-Edge Horizontal Swipe Track on Mobile */
  .mobile-swipe-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 12px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: calc(100% + 32px) !important;
  }
  .mobile-swipe-card {
    flex: 0 0 82vw !important;
    scroll-snap-align: start !important;
  }

  /* 4 USPs: 2x2 grid on mobile */
  .usp-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .usp-grid-4 > div {
    border-bottom: 1px solid #E2D9CE !important;
  }

  /* Mobile Footer */
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
}

@media screen and (min-width: 783px) {
  .product-carousel-track {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
}

/* Collection Filter Pill Buttons (Desktop) & Responsive Mobile Drawer */
.filter-pill-btn {
  height: 42px !important;
  padding: 0 16px !important;
  background: #FFFFFF;
  border: 1px solid #E2D9CE;
  color: #100D0A;
  font-family: var(--font-dm-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 2px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.filter-pill-btn:hover {
  border-color: #100D0A;
  background: #FFFFFF;
}

.filter-pill-btn.is-active,
button.filter-pill-btn.is-active {
  background: #100D0A !important;
  color: #FFFFFF !important;
  border-color: #100D0A !important;
}

.filter-pill-btn svg,
button.filter-pill-btn svg {
  width: 14px !important;
  height: 14px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.filter-pill-btn.is-active svg,
button.filter-pill-btn.is-active svg {
  transform: rotate(180deg) !important;
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* Responsive Mobile Slide-UP Filter Drawer & Global Overflow Control */
html, body, #page {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.filter-drawer-panel {
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  transform: translateX(100%);
}

/* Perfect Mobile 2-Column Product Grid — Fits 100% bounds without cut-off */
.product-card {
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#shop-products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
  width: 100%;
}

/* Single Column Grid View (Toggleable via JS) */
#shop-products-grid.grid-view-1col {
  grid-template-columns: 1fr !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#shop-products-grid.grid-view-1col .product-card-title {
  white-space: normal !important;
}

@media screen and (max-width: 782px) {
  .desktop-quick-filters, .desktop-only-count {
    display: none !important;
  }
  #shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  #shop-products-grid.grid-view-1col {
    grid-template-columns: 1fr !important;
  }
  .product-card-title {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }
  .filter-drawer-panel {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-width: 100% !important;
    height: 85vh !important;
    border-radius: 16px 16px 0 0 !important;
    transform: translateY(100%);
  }
}

/* ═══════════════════════════════════════════════════════════
   ULTRA-PREMIUM CONNECTED PROCESS TIMELINE
   Subtle gold horizontal connecting line on desktop.
   Card hover elevation + progress bar fill micro-animation.
   Clean luxury editorial typography.
   ═══════════════════════════════════════════════════════════ */

.process-timeline-wrapper {
  position: relative;
  width: 100%;
}

/* Subtle gold timeline connecting line running horizontally */
.process-timeline-line {
  position: absolute;
  top: 19px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #D6B462 15%, 
    #C69A39 50%, 
    #D6B462 85%, 
    transparent 100%
  );
  z-index: 1;
}

/* 4-column process grid */
.process-timeline-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card-premium {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Badge row sitting on top of the connection line */
.process-card__badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.process-card__badge-num {
  font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1A1208;
  background: #FFFFFF;
  border: 1.5px solid #C69A39;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(198,154,57,0.14);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card__badge-dot {
  display: none;
}

/* Card Body Box — Inset image padding & 12px rounded corners */
.process-card__box {
  background: #FFFFFF;
  border: 1px solid #EDE5D7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 18, 8, 0.04);
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 14px 0 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  position: relative;
}

@media (hover: hover) {
  .process-card-premium:hover .process-card__box {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(26, 18, 8, 0.09);
    border-color: #C69A39;
  }
  .process-card-premium:hover .process-card__badge-num {
    background: #7D1035;
    color: #FFFFFF;
    border-color: #7D1035;
    transform: scale(1.1);
  }
}

/* Image frame — inset with rounded corners */
.process-card__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDE5D7;
  border-radius: 8px;
}

.process-card__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .process-card-premium:hover .process-card__image-frame img {
    transform: scale(1.05);
  }
}

.process-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.12) 0%, transparent 60%);
}

/* Content block */
.process-card__content {
  padding: 18px 6px 20px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-card__sublabel {
  font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #B8892A;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.process-card__title {
  font-family: Georgia, 'Bodoni Moda', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1A1208;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.process-card__desc {
  font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
  font-size: 12.5px;
  color: #7A6752;
  line-height: 1.65;
  margin: 0 0 16px 0;
  flex: 1;
}

.process-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.process-card__pill {
  font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
  font-size: 9px;
  font-weight: 600;
  color: #5E5042;
  background: #F7F3EC;
  border: 1px solid #E6DEC9;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Subtle Progress Bar Accent at Bottom */
.process-card__progress-bar {
  height: 2px;
  width: 100%;
  background: #F0E8DA;
  overflow: hidden;
  margin-top: 14px;
}

.process-card__progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #C69A39, #7D1035);
  transition: width 0.4s ease;
}

/* Mobile Stepper Navigation Bar — Hidden on Desktop */
.process-mobile-stepper {
  display: none;
}

/* ─── MOBILE RESPONSIVENESS (Horizontal Swipe Track + Top Stepper Bar) ─── */
@media (max-width: 782px) {
  #kainara-artisans-section {
    padding: 56px 0 !important;
  }
  .artisans-header-wrap {
    padding: 0 !important;
    margin-bottom: 24px !important;
  }
  .artisans-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 12px !important;
    margin-left: 0 !important;
    margin-right: -16px !important;
    padding-left: 0 !important;
    padding-right: 16px !important;
    width: calc(100% + 16px) !important;
  }
  .artisans-grid::-webkit-scrollbar {
    display: none !important;
  }
  .artisan-card-premium {
    flex: 0 0 82vw !important;
    max-width: 320px !important;
    height: 460px !important;
    scroll-snap-align: start !important;
  }
  .festive-banner-img {
    object-position: 85% center !important;
  }
  .festive-banner-gradient {
    background: linear-gradient(to top, rgba(16,13,10,0.97) 0%, rgba(16,13,10,0.85) 35%, rgba(16,13,10,0.5) 60%, rgba(16,13,10,0.15) 85%, transparent 100%) !important;
  }
  .festive-banner-section {
    align-items: flex-end !important;
  }
  .festive-banner-section .kainara-container {
    padding: 24px 16px 48px !important;
  }
  @media (max-width: 640px) {
    div[style*="grid-template-columns:220px 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 6px !important;
    }
  }

  /* Footer Column Headings Sans-Serif Override */
  .footer-grid h4,
  .site-footer h4 {
    font-family: var(--font-dm-sans), 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: #FFFFFF !important;
    margin-bottom: 18px !important;
  }

  /* Universal SVG Chevron Icon Consistency (14px SVG) */
  .filter-pill-btn svg,
  .acc-icon svg,
  .btn-primary svg,
  .btn-hero-primary svg,
  .btn-outline svg,
  .btn-ghost svg,
  .btn-tertiary svg,
  .btn-secondary-banner svg,
  .cta-arrow svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.25s ease;
  }

  /* Filter Pill Active State & Chevron Upward Rotation */
  .filter-pill-btn.is-active {
    background: #100D0A !important;
    color: #FFFFFF !important;
    border-color: #100D0A !important;
  }

  .filter-pill-btn.is-active svg {
    transform: rotate(180deg) !important;
    color: #FFFFFF !important;
  }

  .acc-svg-init-open {
    transform: rotate(180deg) !important;
  }

  /* Responsive Footer Rules (1:1 with reference screenshot) */
  @media (max-width: 768px) {
    .site-branding {
      margin-left: 12px !important;
    }
    .footer-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 36px 20px !important;
    }
    .footer-newsletter-row > div {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 20px !important;
    }
    .footer-form-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      min-width: auto !important;
    }
    .footer-newsletter-form {
      flex-direction: column !important;
      width: 100% !important;
      gap: 10px !important;
    }
    .footer-newsletter-form input {
      border-right: 1px solid rgba(255,255,255,0.2) !important;
      height: 48px !important;
      box-sizing: border-box !important;
    }
    .footer-newsletter-form button {
      width: 100% !important;
      height: 48px !important;
      box-sizing: border-box !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
  }

  .process-timeline-line {
    display: none !important;
  }

  .process-mobile-stepper {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 28px auto;
    max-width: 280px;
    width: 100%;
  }

  .process-mobile-stepper__line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #E6DEC9;
    transform: translateY(-50%);
    z-index: 1;
  }

  .process-mobile-stepper__items {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .process-mobile-step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid #C69A39;
    color: #1A1208;
    font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 8px rgba(198,154,57,0.12);
  }

  .process-mobile-step.process-mobile-step--active {
    background: #7D1035;
    color: #FFFFFF;
    border-color: #7D1035;
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(125,16,53,0.3);
  }

  /* Hide individual card badge row on mobile since we have top stepper bar */
  .process-card__badge-row {
    display: none !important;
  }

  /* Horizontal swipe track on mobile */
  .process-timeline-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding: 0 20px 20px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
  }

  .process-timeline-grid::-webkit-scrollbar {
    display: none !important;
  }

  .process-card-premium {
    flex: 0 0 84vw !important;
    max-width: 320px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  .process-card__box {
    height: 100% !important;
  }
}



/* ════════════════════════════════════════════════════════════════
   LUXURY TRANSLUCENT GLASS BADGES & INTERACTIVE WISHLIST BUTTON
   ════════════════════════════════════════════════════════════════ */

/* Badges: Translucent navy glass pill badge matching original luxury design */
.product-card-badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  background: rgba(15, 23, 42, 0.20) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
  font-family: var(--font-dm-sans, 'DM Sans', sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}

/* Wishlist Button: Translucent navy glass circular button.
   Maintains the original glass background color without changing to solid colors. */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.20) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  outline: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease !important;
}

.wishlist-btn svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), fill 0.25s ease, stroke 0.25s ease;
  stroke: #FFFFFF;
  fill: transparent;
}

/* Interactive Hover State: Subtle, smooth micro-interaction WITHOUT harsh scale bursts */
@media (hover: hover) {
  .wishlist-btn:hover {
    background: rgba(15, 23, 42, 0.30) !important;
    transform: translateY(-1px) scale(1.03) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }
  .wishlist-btn:hover svg {
    transform: scale(1.03);
  }
}

.wishlist-btn:active {
  transform: translateY(0) scale(0.98) !important;
}

.wishlist-btn.wishlist-active svg {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* Active Filter Chips Bar */
.active-filter-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 12px !important;
  background: #FFFFFF !important;
  border: 1px solid #E2D9CE !important;
  border-radius: 20px !important;
  font-family: var(--font-dm-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #100D0A !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.active-filter-chip:hover {
  border-color: #7D1035 !important;
  color: #7D1035 !important;
  background: #FFFFFF !important;
}

@media screen and (min-width: 783px) {
  #grid-switcher-box {
    display: none !important;
  }
  .product-carousel-track {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    overflow: visible !important;
  }
  .mobile-product-carousel-card {
    flex: none !important;
    max-width: none !important;
    width: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   WHATSAPP FAB GREEN CONCENTRIC WAVE PULSE (1:1 REFERENCE MATCH)
   ════════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 50px !important;
  height: 50px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99997 !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, bottom 0.3s ease !important;
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55) !important;
}

body.single-product .whatsapp-fab,
.has-sticky-bar .whatsapp-fab {
  bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  #floating-discount-badge,
  .shimmer-fab-btn {
    bottom: 20px !important;
    left: 14px !important;
    height: 42px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }
  .whatsapp-fab {
    bottom: 20px !important;
    right: 14px !important;
    height: 42px !important;
    width: 42px !important;
  }
  /* Push clear of 72px mobile sticky bar */
  body.single-product #floating-discount-badge,
  body.single-product .shimmer-fab-btn,
  body.single-product .whatsapp-fab,
  .has-sticky-bar #floating-discount-badge,
  .has-sticky-bar .shimmer-fab-btn,
  .has-sticky-bar .whatsapp-fab {
    bottom: 92px !important;
  }

  /* Responsive Modal Card on Mobile */
  .exit-intent-card {
    max-width: 94vw !important;
    border-radius: 12px !important;
  }
  .exit-intent-grid {
    grid-template-columns: 1fr !important;
  }
  .exit-intent-left {
    min-height: 170px !important;
    max-height: 190px !important;
  }
  .exit-intent-right {
    padding: 24px 20px 24px 20px !important;
  }
  .exit-intent-right h2 {
    font-size: 19px !important;
    white-space: normal !important;
    margin-bottom: 14px !important;
  }
}

/* ── GUARANTEED 100% REMOVAL OF OFFER POPUP & FAB ON CHECKOUT FLOW ── */
.page-template-page-checkout #floating-discount-badge,
.page-template-page-checkout #exit-intent-modal,
.page-template-page-cart #floating-discount-badge,
.page-template-page-cart #exit-intent-modal,
body[class*="cart"] #floating-discount-badge,
body[class*="cart"] #exit-intent-modal,
body.cart #floating-discount-badge,
body.cart #exit-intent-modal,
#page-cart #floating-discount-badge,
#page-cart #exit-intent-modal,
body[class*="checkout"] #floating-discount-badge,
body[class*="checkout"] #exit-intent-modal,
body.checkout #floating-discount-badge,
body.checkout #exit-intent-modal,
#page-checkout #floating-discount-badge,
#page-checkout #exit-intent-modal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


#fab-dismiss-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2px !important;
  opacity: 0.85 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

#fab-dismiss-btn:hover {
  background: transparent !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
}




/* ═══════════════════════════════════════════════════════════════════════════
   KAINARA MASTER DESIGN SYSTEM & UX ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. SIGNATURE PILL OUTLINE BADGES SITE-WIDE */
.section-kicker-pill {
  display: inline-block !important;
  padding: 4px 14px !important;
  border: 1px solid #EADECF !important;
  border-radius: 30px !important;
  background: #FFFFFF !important;
  color: #B8892A !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}


/* ── HANDS BEHIND THE CRAFT / ARTISAN SPOTLIGHT SECTION ── */
.pdp-artisan-editorial-section {
  background: #FFFFFF !important;
  padding: 42px 0 36px 0 !important;
  border-top: 1px solid #EDE5D7 !important;
}

.artisan-header-wrap {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 24px !important;
}

.artisan-main-heading {
  font-family: Georgia, 'Bodoni Moda', serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  color: #100D0A !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.15 !important;
}

.artisan-sub-heading {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: #6E6258 !important;
  margin: 0 !important;
}

.artisan-grid-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.artisan-img-box {
  position: relative !important;
  border-radius: 8px !important;
  overflow: visible !important;
  height: auto !important;
  gap: 16px !important;
  background: #100D0A !important;
}

.artisan-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.artisan-info-box {
  background: #FAF8F5 !important;
  border: 1px solid #EDE5D7 !important;
  border-radius: 8px !important;
  padding: 20px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: auto !important;
  gap: 16px !important;
  box-sizing: border-box !important;
}

.artisan-role-badge {
  display: inline-block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #B8892A !important;
  margin-bottom: 4px !important;
}

.artisan-name {
  font-family: Georgia, 'Bodoni Moda', serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #100D0A !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
}

.artisan-bio {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  color: #5E5248 !important;
  margin: 0 !important;
}

.artisan-highlight-box {
  background: #FFFFFF !important;
  border: 1px solid #EAE3D9 !important;
  border-left: 3px solid #B8892A !important;
  border-radius: 4px !important;
  padding: 20px 24px !important;
  margin: 14px 0 !important;
  padding: 20px 24px !important;
}

.artisan-highlight-box p {
  font-family: Georgia, Georgia, 'Bodoni Moda', serif !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0.015em !important;
  color: #1F1710 !important;
  line-height: 1.55 !important;
}

.artisan-metrics-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid #EDE5D7 !important;
  margin-top: auto !important;
}

.artisan-metric-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.artisan-metric-val {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #100D0A !important;
  line-height: 1.2 !important;
}

.artisan-metric-lbl {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #8A7F76 !important;
}

@media screen and (max-width: 991px) {
  .artisan-grid-wrap {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .artisan-img-box {
    height: 260px !important;
  }
  .artisan-info-box {
    height: auto !important;
    padding: 18px !important;
  }
  .artisan-main-heading {
    font-size: 24px !important;
  }
  .artisan-header-wrap {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
  }
}

/* 3. RESPONSIVE LUXURY PDP HERO GRID */
@media screen and (min-width: 992px) {
  .pdp-hero {
    display: grid !important;
    grid-template-columns: minmax(440px, 1fr) minmax(320px, 520px) !important;
    gap: 48px !important;
    align-items: start !important;
  }
  .pdp-gallery-container {
    position: relative !important;
    top: 0 !important;
    align-self: start !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .pdp-info {
    width: 100% !important;
  }
}

@media screen and (max-width: 991px) {
  .pdp-hero {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .pdp-gallery-container {
    position: relative !important;
    top: 0 !important;
    align-self: start !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .pdp-info {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 18px 80px 18px !important;
    box-sizing: border-box !important;
  }
  .pdp-atc-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* 5. ULTRA-SLOW GOLD BORDER SHIMMER & FAB BADGE */
@keyframes borderShimmerSlow {
  0% { background-position: 0% 0%, -300% 0%; }
  100% { background-position: 0% 0%, 300% 0%; }
}

@keyframes fabSubtleNudge {
  0%, 88%, 100% { transform: scale(1) rotate(0deg); }
  91% { transform: scale(1.02) rotate(-1deg); }
  94% { transform: scale(1.02) rotate(1deg); }
  97% { transform: scale(1.005) rotate(0deg); }
}

#floating-discount-badge,
.shimmer-fab-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  height: 44px !important;
  z-index: 9998 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  border-radius: 30px !important;
  padding: 0 18px !important;

  border: 1.8px solid transparent !important;
  background-image: 
    linear-gradient(#100D0A, #100D0A), 
    linear-gradient(110deg, #8A6D2B 0%, #D4AF37 25%, #FFF0C2 45%, #FFFFFF 50%, #FFF0C2 55%, #D4AF37 75%, #8A6D2B 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  background-size: 100% 100%, 350% 100% !important;
  animation: borderShimmerSlow 8.5s infinite linear, fabSubtleNudge 14s infinite ease-in-out !important;
  box-shadow: 0 8px 24px rgba(16, 13, 10, 0.22), 0 0 16px rgba(212, 175, 55, 0.45) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, bottom 0.3s ease !important;
  overflow: visible !important;
}

#floating-discount-badge .fab-shimmer-text {
  color: #FFFFFF !important;
  letter-spacing: 0.16em !important;
  position: relative !important;
  z-index: 2 !important;
}

#fab-dismiss-btn:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.15) !important;
  color: #FFFFFF !important;
}

/* 6. RESPONSIVE 5% OFF POPUP MODAL STYLING */
.exit-intent-card {
  position: relative !important;
  width: 780px !important;
  max-width: 92vw !important;
  background: #FFFFFF !important;
  border-radius: 8px !important;
  overflow: visible !important;
  box-shadow: 0 20px 60px rgba(16, 13, 10, 0.4) !important;
  z-index: 999999 !important;
}

.exit-intent-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
}

/* 7. FAB STICKY BAR UPWARD PUSH */
.whatsapp-fab {
  position: fixed !important;
  bottom: 22px !important;
  right: 24px !important;
  height: 44px !important;
  width: 44px !important;
  z-index: 9990 !important;
  transition: bottom 0.3s ease !important;
}



@media screen and (max-width: 768px) {
  #floating-discount-badge,
  .shimmer-fab-btn {
    bottom: 20px !important;
    left: 14px !important;
    height: 42px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }
  .whatsapp-fab {
    bottom: 20px !important;
    right: 14px !important;
    height: 42px !important;
    width: 42px !important;
  }
  body.single-product #floating-discount-badge,
  body.single-product .shimmer-fab-btn,
  body.single-product .whatsapp-fab,
  .has-sticky-bar #floating-discount-badge,
  .has-sticky-bar .shimmer-fab-btn,
  .has-sticky-bar .whatsapp-fab {
    bottom: 92px !important;
  }

  .exit-intent-card {
    max-width: 94vw !important;
    border-radius: 12px !important;
  }
  .exit-intent-grid {
    grid-template-columns: 1fr !important;
  }
  .exit-intent-left {
    min-height: 170px !important;
    max-height: 190px !important;
  }
  .exit-intent-right {
    padding: 24px 20px 24px 20px !important;
  }
  .exit-intent-right h2 {
    font-size: 19px !important;
    white-space: normal !important;
    margin-bottom: 14px !important;
  }
}

/* 8. GUARANTEED 100% REMOVAL OF OFFER POPUP & FAB ON CHECKOUT FLOW */
.page-template-page-checkout #floating-discount-badge,
.page-template-page-checkout #exit-intent-modal,
.page-template-page-cart #floating-discount-badge,
.page-template-page-cart #exit-intent-modal,
body[class*="cart"] #floating-discount-badge,
body[class*="cart"] #exit-intent-modal,
body.cart #floating-discount-badge,
body.cart #exit-intent-modal,
#page-cart #floating-discount-badge,
#page-cart #exit-intent-modal,
body[class*="checkout"] #floating-discount-badge,
body[class*="checkout"] #exit-intent-modal,
body.checkout #floating-discount-badge,
body.checkout #exit-intent-modal,
#page-checkout #floating-discount-badge,
#page-checkout #exit-intent-modal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.artisan-highlight-box {
  background: #FFFFFF !important;
  border: 1px solid #EAE3D9 !important;
  border-left: 3px solid #B8892A !important;
  border-radius: 4px !important;
  padding: 20px 24px !important;
  margin: 14px 0 !important;
  padding: 20px 24px !important;
}
.artisan-header-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #7D1035 !important;
  background: #FFFFFF !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  border: 1px solid #EADECF !important;
  box-shadow: 0 1px 4px rgba(16, 13, 10, 0.04) !important;
}

/* ── ULTRA-COMPACT MOBILE LAYOUT FOR HANDS BEHIND THE CRAFT SECTION (< 768px) ── */
@media screen and (max-width: 768px) {
  .pdp-artisan-editorial-section {
    padding: 24px 0 20px 0 !important;
  }
  
  .artisan-header-wrap {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }
  
  .artisan-main-heading {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }
  
  .artisan-sub-heading,
  .artisan-header-badge-col {
    display: none !important;
  }

  .artisan-grid-wrap {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .artisan-img-box {
    height: 190px !important;
    border-radius: 8px !important;
  }

  .artisan-img-badge {
    font-size: 9px !important;
    padding: 3px 8px !important;
    top: 10px !important;
    left: 10px !important;
  }

  .artisan-inset-portrait {
  display: none !important;
    width: 42px !important;
    height: 42px !important;
    bottom: 10px !important;
    right: 10px !important;
  }

  .artisan-info-box {
    height: auto !important;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    gap: 10px !important;
  }

  .artisan-role-badge {
    font-size: 9px !important;
    margin-bottom: 2px !important;
  }

  .artisan-name {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }

  .artisan-highlight-box {
    margin: 8px 0 0 0 !important;
    padding: 10px 12px !important;
  }

  .artisan-highlight-box p {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  .artisan-metrics-grid {
    padding-top: 10px !important;
    gap: 8px !important;
  }

  .artisan-metric-val {
    font-size: 12px !important;
  }

  .artisan-metric-lbl {
    font-size: 8.5px !important;
  }
}



/* ── DUAL FLOATING ACTION BUTTONS (ALWAYS VISIBLE & PERFECTLY POSITIONED) ── */
#floating-discount-badge,
.shimmer-fab-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  height: 44px !important;
  z-index: 99998 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  border-radius: 30px !important;
  padding: 0 14px 0 16px !important;
  border: 1.8px solid transparent !important;
  background-image: 
    linear-gradient(#100D0A, #100D0A), 
    linear-gradient(110deg, #8A6D2B 0%, #D4AF37 25%, #FFF0C2 45%, #FFFFFF 50%, #FFF0C2 55%, #D4AF37 75%, #8A6D2B 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  background-size: 100% 100%, 350% 100% !important;
  animation: borderShimmerSlow 8.5s infinite linear, fabSubtleNudge 14s infinite ease-in-out !important;
  box-shadow: 0 8px 24px rgba(16, 13, 10, 0.22), 0 0 16px rgba(212, 175, 55, 0.45) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, bottom 0.3s ease !important;
  overflow: visible !important;
}

#floating-discount-badge .fab-shimmer-text {
  color: #FFFFFF !important;
  letter-spacing: 0.16em !important;
  position: relative !important;
  z-index: 2 !important;
}

.whatsapp-fab {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 50px !important;
  height: 50px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99997 !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, bottom 0.3s ease !important;
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55) !important;
}

#fab-dismiss-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2px !important;
  opacity: 0.85 !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

#fab-dismiss-btn:hover {
  color: #FFFFFF !important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
}

.has-sticky-bar #floating-discount-badge,
.has-sticky-bar .whatsapp-fab {
  bottom: 84px !important;
}

/* ── ARTISAN HIGHLIGHT BOX STYLING ── */
.artisan-highlight-box {
  background: #FFFFFF !important;
  border: 1px solid #EAE3D9 !important;
  border-left: 3.5px solid #B8892A !important;
  border-radius: 6px !important;
  padding: 20px 24px !important;
  margin: 14px 0 !important;
}

.artisan-highlight-box p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #100D0A !important;
  line-height: 1.65 !important;
}

@media screen and (max-width: 768px) {
  #floating-discount-badge,
  .shimmer-fab-btn {
    bottom: 20px !important;
    left: 14px !important;
    height: 42px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }
  .whatsapp-fab {
    bottom: 20px !important;
    right: 14px !important;
    height: 42px !important;
    width: 42px !important;
  }
  .has-sticky-bar #floating-discount-badge,
  .has-sticky-bar .shimmer-fab-btn,
  .has-sticky-bar .whatsapp-fab {
    bottom: 92px !important;
  }
}


/* ── FULL BLEED EDGE-TO-EDGE PAGE & HERO CONTAINER (ZERO SIDE MARGINS) ── */
#page,
#content,
.site-content,
.hero-section {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* Top clearance for fixed sticky header (30px announcement + 68px header = 98px) */
#page {
  padding-top: 98px !important;
}

#content,
.site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.page-template-page-checkout #page,
body.woocommerce-checkout #page {
  padding-top: 64px !important;
}

body.single-product #page,
body.single #page {
  padding-top: 98px !important;
}

body.single-product.admin-bar #page,
body.single.admin-bar #page {
  padding-top: 130px !important;
}

body.single-product #content,
body.single-product .site-content,
body.single-product .pdp-wrap,
body.single-product .pdp-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.admin-bar #page {
  padding-top: 130px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar #page {
    padding-top: 144px !important;
  }
}


/* ── DESKTOP TALL HERO SECTION & PERFECT IMAGE POSITIONING ── */
.hero-section {
  min-height: clamp(750px, 88vh, 880px) !important;
}

.hero-parallax-img {
  object-position: center 25% !important;
  object-fit: cover !important;
}

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 540px !important;
  }
  .hero-parallax-img {
    object-position: center top !important;
  }
}






/* ── UNIFIED LUXURY CTA BUTTON TYPOGRAPHY (100% CONSISTENT) ── */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-secondary-banner,
.btn-secondary--light,
.btn-editorial-cta,
.btn-editorial-cta-light,
.btn-kai-primary,
.btn-kai-secondary,
.btn-outline,
.btn-tertiary {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}


/* ── ELEGANT EDITORIAL SERIF ITALIC QUOTE BOX (13.5px) ── */
.artisan-highlight-box p {
  font-family: Georgia, 'Bodoni Moda', Georgia, 'Bodoni Moda', serif !important;
  font-style: italic !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #100D0A !important;
  line-height: 1.6 !important;
}

@media screen and (max-width: 768px) {
  .artisan-highlight-box p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}


/* ── PDP GALLERY MAIN IMAGE PERFECT TOP ALIGNMENT (NO TOP CROPPING) ── */
.pdp-main-image,
.pdp-gallery-main img,
#pdp-main-img {
  object-position: center top !important;
  object-fit: cover !important;
}




/* ── EXACT 414 x 550 MOBILE PDP MEDIA IMAGE DIMENSIONS ── */
@media screen and (max-width: 768px) {
  .pdp-gallery-main,
  .pdp-main-image,
  #pdp-main-img {
    width: 100% !important;
    max-width: 414px !important;
    height: 550px !important;
    max-height: 550px !important;
    aspect-ratio: 414 / 550 !important;
    object-fit: cover !important;
    object-position: center top !important;
    margin: 0 auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FLOATING ACTION BUTTONS (SUBTLE ANIMATIONS & EXACT 12PX STICKY GAP)
   ═══════════════════════════════════════════════════════════════════════════ */

/* 1. Subtle WhatsApp Concentric Ripple Animation (Continuous, Soft) */
@keyframes waSubtleWave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 3px 14px rgba(0, 0, 0, 0.2);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 4px 16px rgba(0, 0, 0, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 3px 14px rgba(0, 0, 0, 0.2);
  }
}

/* 2. Luxury Subtle Shimmer & Gold Glow Animation for Discount FAB */
@keyframes discountBorderShimmer {
  0% {
    border-color: rgba(184, 137, 42, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 4px rgba(184, 137, 42, 0.15), inset 0 0 6px rgba(184, 137, 42, 0.05);
  }
  30% {
    border-color: rgba(235, 198, 92, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 10px 1px rgba(212, 175, 55, 0.45), inset 0 0 8px rgba(212, 175, 55, 0.15);
  }
  60% {
    border-color: rgba(255, 230, 160, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32), 0 0 14px 2px rgba(255, 215, 0, 0.35), inset 0 0 10px rgba(255, 215, 0, 0.12);
  }
  100% {
    border-color: rgba(184, 137, 42, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 4px rgba(184, 137, 42, 0.15), inset 0 0 6px rgba(184, 137, 42, 0.05);
  }
}

@keyframes fabGlintSweep {
  0% {
    left: -120%;
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  42% {
    left: 200%;
    opacity: 0.75;
  }
  43%, 100% {
    left: 200%;
    opacity: 0;
  }
}

/* Base Styles & Default Positions (Regular Pages & Top of PDP) */
.whatsapp-fab {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 50px !important;
  height: 50px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99997 !important;
  cursor: pointer !important;
  animation: waSubtleWave 2.4s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55) !important;
}

.whatsapp-fab:active {
  transform: scale(0.95) !important;
}

#floating-discount-badge,
.shimmer-fab-btn {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  height: 42px !important;
  background: #100D0A !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(184, 137, 42, 0.5) !important;
  border-radius: 24px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  z-index: 99998 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  animation: discountBorderShimmer 3s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease, bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

#floating-discount-badge::after,
.shimmer-fab-btn::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -120% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 175, 0.15), rgba(255, 255, 255, 0.4), rgba(255, 235, 175, 0.15), transparent) !important;
  transform: skewX(-22deg) !important;
  animation: fabGlintSweep 4.2s infinite ease-in-out !important;
  pointer-events: none !important;
}

#floating-discount-badge:hover,
.shimmer-fab-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 8px 22px rgba(184, 137, 42, 0.4) !important;
}

#floating-discount-badge:active,
.shimmer-fab-btn:active {
  transform: scale(0.97) !important;
}

/* ── EXACT 12PX MARGIN ABOVE STICKY ADD TO BAG BAR (64px bar + 12px gap = 76px) ── */
body.single-product .whatsapp-fab,
body.single-product #floating-discount-badge,
body.single-product .shimmer-fab-btn,
body.has-sticky-bar .whatsapp-fab,
body.has-sticky-bar #floating-discount-badge,
body.has-sticky-bar .shimmer-fab-btn,
.has-sticky-bar .whatsapp-fab,
.has-sticky-bar #floating-discount-badge,
.has-sticky-bar .shimmer-fab-btn {
  bottom: 90px !important;
}

@media screen and (max-width: 768px) {
  .whatsapp-fab {
    bottom: 20px !important;
    right: 14px !important;
    width: 46px !important;
    height: 46px !important;
    bottom: 18px !important;
    transition: bottom 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }
  #floating-discount-badge,
  .shimmer-fab-btn {
    bottom: 18px !important;
    left: 14px !important;
    height: 40px !important;
    transition: bottom 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }
  body.has-sticky-bar .whatsapp-fab,
  body.has-sticky-bar #kainara-global-wa-fab,
  body.has-sticky-bar #floating-discount-badge,
  body.has-sticky-bar .shimmer-fab-btn,
  .has-sticky-bar .whatsapp-fab,
  .has-sticky-bar #floating-discount-badge {
    bottom: 84px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LUXURY SLIDING CART DRAWER (Opens from Right on Desktop & Mobile)
   ═══════════════════════════════════════════════════════════════════════════ */
#cart-drawer-overlay,
#cart-drawer-overlay.cart-drawer-overlay,
.cart-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

#cart-drawer-overlay.is-open,
#cart-drawer-overlay.cart-drawer-overlay.is-open,
.cart-drawer-overlay.is-open {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.cart-drawer-panel-box {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 440px !important;
  max-width: 90vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  background: #FFFFFF !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: -8px 0 36px rgba(16, 13, 10, 0.22) !important;
  z-index: 100001 !important;
  transform: translateX(100%) !important;
  -webkit-transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#cart-drawer-overlay.is-open .cart-drawer-panel-box,
.cart-drawer-overlay.is-open .cart-drawer-panel-box {
  transform: translateX(0%) !important;
  -webkit-transform: translateX(0%) !important;
}

@media (max-width: 768px) {
  .cart-drawer-panel-box {
    width: 380px !important;
    max-width: 92vw !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM LUXURY CHECKOUT SYSTEM (GOKWIK 2-COLUMN LUXURY EXPERIENCE)
   ═══════════════════════════════════════════════════════════════════════════ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .chk-desk-help-only {
    display: none !important;
  }
}

@media (min-width: 861px) {
  .chk-mobile-summary-bar {
    display: none !important;
  }
  .chk-mobile-help-only {
    display: none !important;
  }
}

.gokwik-checkout-card {
  background: #FFFFFF;
  border: 1px solid #E2D9CE;
  border-radius: 6px;
  padding: 28px 26px;
  box-sizing: border-box;
}

.gokwik-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
}

.gokwik-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

@media (max-width: 580px) {
  .gokwik-2col {
    grid-template-columns: 1fr;
  }
}

.gokwik-label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #4A423A !important;
  letter-spacing: 0.02em !important;
}

.gokwik-input {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 44px !important;
  padding: 0 14px !important;
  background: #FAF8F5 !important;
  border: 1px solid #E2D9CE !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13.5px !important;
  color: #100D0A !important;
  outline: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.gokwik-input:focus {
  border-color: #7D1035 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3px rgba(125, 16, 53, 0.08) !important;
}

.gokwik-primary-btn {
  width: 100% !important;
  height: 50px !important;
  background: #100D0A !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(16, 13, 10, 0.15) !important;
}

.gokwik-primary-btn:hover {
  background: #7D1035 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(125, 16, 53, 0.25) !important;
}

.chk-help-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   THE KAINARA JOURNAL & EDITORIAL MAGAZINE SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
.journal-category-slider-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 8px;
}
.journal-category-slider-wrap::-webkit-scrollbar {
  display: none;
}
.journal-category-pills {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .journal-category-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 4px;
  }
}
.journal-tab-btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid #E2D9CE;
  color: #5E5248;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.journal-tab-btn:hover {
  border-color: #7D1035;
  color: #7D1035;
}
.journal-tab-btn--active {
  background: #7D1035 !important;
  color: #FFFFFF !important;
  border-color: #7D1035 !important;
  font-weight: 700 !important;
}

.journal-featured-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  background: #FAF8F5;
  border: 1px solid #EAE3D9;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
}
@media (max-width: 860px) {
  .journal-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.journal-featured-img-frame {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) {
  .journal-featured-img-frame {
    min-height: 260px;
    height: 260px;
  }
}
.journal-featured-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journal-featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(16, 13, 10, 0.85);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.journal-featured-content {
  padding: 36px 36px 36px 0;
}
@media (max-width: 860px) {
  .journal-featured-content {
    padding: 24px 20px;
  }
}

.journal-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .journal-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.journal-article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #D2C4B4 !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT PERFECTION (MOBILE REVIEWS, ABOUT & JOURNAL)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Mobile PDP Reviews Layout (< 768px) */
@media (max-width: 768px) {
  .pdp-reviews-summary {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 20px !important;
  }
  .pdp-reviews-summary > div:first-child {
    border-right: none !important;
    border-bottom: 1px solid #E2D9CE !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
  }
  .pdp-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .pdp-review-card {
    padding: 20px 16px !important;
  }
}

/* Mobile Our Story Page (< 768px) */
@media (max-width: 768px) {
  .about-responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .artisans-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .artisan-card-premium {
    height: 440px !important;
  }
}

/* Clean Home Hero Top Clearance */
body.home #page,
body.front-page #page {
  padding-top: 0 !important;
}

.hero-section {
  padding-top: 96px !important;
  box-sizing: border-box !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ULTRA-LUXURY JOURNAL SYSTEM (SEO & UX PERFECTION)
   ═══════════════════════════════════════════════════════════════════════════ */
.journal-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .journal-articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.journal-article-item {
  background: #FFFFFF;
  border: 1px solid #E2D9CE;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.journal-article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09) !important;
  border-color: #B8892A !important;
}

.journal-card-media {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #100D0A;
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.journal-article-item:hover .journal-card-media img {
  transform: scale(1.04);
}

.journal-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16, 13, 10, 0.85);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

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

.journal-card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  color: #7A6752;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.journal-card-title {
  font-family: Georgia, 'Bodoni Moda', serif;
  font-size: 20px;
  color: #100D0A;
  margin: 0 0 10px;
  line-height: 1.35;
  font-weight: 400;
}

.journal-card-title a {
  color: #100D0A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.journal-article-item:hover .journal-card-title a {
  color: #7D1035;
}

.journal-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #5E5248;
  margin: 0 0 20px;
  flex: 1;
  font-weight: 300;
}

.journal-card-footer {
  padding-top: 14px;
  border-top: 1px solid #F0EBE2;
}

.journal-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7D1035;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.journal-article-item:hover .journal-card-link {
  gap: 9px;
}

@media (max-width: 640px) {
  .journal-inline-img-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM EDITORIAL HERO SECTION (DESKTOP & MOBILE RESPONSIVE)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 13, 10, 0.85) 0%, rgba(16, 13, 10, 0.45) 50%, rgba(16, 13, 10, 0.05) 100%), linear-gradient(to top, rgba(16, 13, 10, 0.92) 0%, rgba(16, 13, 10, 0.3) 35%, transparent 60%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: 86vh !important;
    display: flex !important;
    align-items: flex-end !important;
    padding-top: 96px !important;
    padding-bottom: 24px !important;
    box-sizing: border-box !important;
  }
  
  .hero-parallax-img {
    object-position: center 15% !important;
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero-overlay-gradient {
    background: linear-gradient(to top, rgba(16, 13, 10, 0.94) 0%, rgba(16, 13, 10, 0.65) 45%, rgba(16, 13, 10, 0.12) 75%, rgba(16, 13, 10, 0.3) 100%) !important;
  }

  .hero-content-box {
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .hero-eyebrow-wrap p {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .hero-subtitle {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .btn-hero-primary {
    flex: 1.15 !important;
    height: 46px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .btn-secondary-banner {
    flex: 1 !important;
    height: 46px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LUXURY COLLECTION GRID SWITCHER (WHITE BACKGROUND & MOBILE-ONLY DISPLAY)
   ═══════════════════════════════════════════════════════════════════════════ */
#grid-switcher-box,
.grid-switcher-box {
  display: none !important; /* Hidden on Desktop */
  align-items: center !important;
  background: #FFFFFF !important; /* Pure White Background */
  border: 1px solid #E6DEC9 !important;
  border-radius: 4px !important;
  padding: 3px !important;
  gap: 3px !important;
  height: 38px !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
  #grid-switcher-box,
  .grid-switcher-box {
    display: inline-flex !important; /* Visible on Mobile Only */
  }
}

.grid-view-btn,
#grid-view-1col,
#grid-view-multi {
  width: 36px !important;
  height: 30px !important;
  border: none !important;
  background: transparent !important;
  color: #8A7E72 !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
}

.grid-view-btn svg,
#grid-view-1col svg,
#grid-view-multi svg {
  stroke: currentColor !important;
  transition: stroke 0.2s ease !important;
}

.grid-view-btn:hover:not(.grid-btn--active),
#grid-view-1col:hover:not(.grid-btn--active),
#grid-view-multi:hover:not(.grid-btn--active) {
  color: #100D0A !important;
  background: #F8F5F0 !important;
}

.grid-view-btn.grid-btn--active,
#grid-view-1col.grid-btn--active,
#grid-view-multi.grid-btn--active {
  background: #100D0A !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 6px rgba(16, 13, 10, 0.25) !important;
}

.grid-view-btn.grid-btn--active svg,
#grid-view-1col.grid-btn--active svg,
#grid-view-multi.grid-btn--active svg {
  stroke: #FFFFFF !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CART MOBILE STICKY PROCEED TO CHECKOUT BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.cart-mobile-sticky-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .cart-mobile-sticky-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99990 !important;
    background: #FFFFFF !important;
    border-top: 1px solid #EDE5D7 !important;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px)) 18px !important;
    box-shadow: 0 -6px 24px rgba(16, 13, 10, 0.12) !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    box-sizing: border-box !important;
  }

  .cart-sticky-checkout-btn {
    flex: 1 !important;
    height: 48px !important;
    background: #100D0A !important;
    color: #FFFFFF !important;
    border-radius: 2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(16, 13, 10, 0.25) !important;
  }

  body.page-template-page-cart main,
  body[class*="cart"] main {
    padding-bottom: 130px !important;
  }

  body.page-template-page-cart .whatsapp-fab,
  body[class*="cart"] .whatsapp-fab {
    bottom: 85px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CART & CHECKOUT FAB CLEANUP & WHATSAPP POSITIONING
   ═══════════════════════════════════════════════════════════════════════════ */
.page-template-page-cart #floating-discount-badge,
.page-template-page-cart #exit-intent-modal,
.page-template-page-checkout #floating-discount-badge,
.page-template-page-checkout #exit-intent-modal,
body[class*="cart"] #floating-discount-badge,
body[class*="cart"] #exit-intent-modal,
body[class*="checkout"] #floating-discount-badge,
body[class*="checkout"] #exit-intent-modal,
body.cart #floating-discount-badge,
body.cart #exit-intent-modal,
body.checkout #floating-discount-badge,
body.checkout #exit-intent-modal,
#page-cart #floating-discount-badge,
#page-cart #exit-intent-modal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .page-template-page-cart .whatsapp-fab,
  body[class*="cart"] .whatsapp-fab,
  body.cart .whatsapp-fab,
  #page-cart .whatsapp-fab {
    bottom: 88px !important;
    right: 18px !important;
    z-index: 99995 !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PDP MEDIA GALLERY ZERO-SHIFT LOCK (STABLE STICKY COLUMN)
   ═══════════════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 769px) {
  .pdp-hero {
    display: grid !important;
    grid-template-columns: minmax(480px, 1fr) minmax(320px, 540px) !important;
    gap: 48px !important;
    align-items: start !important;
  }
  .pdp-gallery-container {
    position: relative !important;
    top: 0 !important;
    align-self: start !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .pdp-gallery-main {
    align-self: start !important;
    height: fit-content !important;
  }
  .pdp-info {
    align-self: start !important;
    height: auto !important;
    width: 100% !important;
  }
}


/* ── PDP TRUST GRID (EXACT SCREENSHOT MATCH: TRANSPARENT & PROPORTIONAL) ── */
.pdp-trust-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px 28px !important;
  margin-bottom: 28px !important;
  padding: 24px 0 20px 0 !important;
  border-top: 1px solid #EDE5D7 !important;
  border-bottom: none !important;
  background: transparent !important;
}

.pdp-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: #3E3E3E !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.pdp-trust-icon {
  width: 40px !important;
  height: 36px !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #100D0A !important;
  flex-shrink: 0 !important;
}


/* ── PDP TRUST GRID (EXACT HOMEPAGE SYNC) ── */
.pdp-trust-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px 20px !important;
  margin-bottom: 24px !important;
  padding: 20px 0 !important;
  border-top: 1px solid #E2D9CE !important;
  border-bottom: none !important;
  background: transparent !important;
}

.pdp-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: #3E3E3E !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.pdp-trust-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #FAF8F5 !important;
  border: 1px solid #EFEAE1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #100D0A !important;
  flex-shrink: 0 !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   GUARANTEED NON-OVERLAPPING FABs & PDP STICKY BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.pdp-sticky-bar {
  z-index: 99980 !important;
}

body.single-product #floating-discount-badge,
body.has-sticky-bar #floating-discount-badge,
.has-sticky-bar #floating-discount-badge {
  bottom: 96px !important;
  left: 24px !important;
  z-index: 99995 !important;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.single-product .whatsapp-fab,
body.has-sticky-bar .whatsapp-fab,
.has-sticky-bar .whatsapp-fab {
  bottom: 96px !important;
  right: 24px !important;
  z-index: 99995 !important;
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media screen and (max-width: 768px) {
  body.single-product #floating-discount-badge,
  body.has-sticky-bar #floating-discount-badge {
    bottom: 96px !important;
    left: 16px !important;
  }
  body.single-product .whatsapp-fab,
  body.has-sticky-bar .whatsapp-fab {
    bottom: 96px !important;
    right: 16px !important;
  }
}

/* MOBILE PDP OVERFLOW AND STACKING FIX */

@media screen and (max-width: 768px) {
  .pdp-hero {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  .pdp-gallery-container {
    position: relative !important;
    top: 0 !important;
    align-self: start !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .pdp-info {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 18px 40px 18px !important;
    box-sizing: border-box !important;
  }
  .pdp-blouse-trigger {
    display: flex !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .pdp-atc-btn {
    display: flex !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CLEAN & RESPONSIVE ARTISAN EDITORIAL SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.artisan-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.artisan-img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 400px;
  width: 100%;
  background: #100D0A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.artisan-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16,13,10,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

.artisan-info-box {
  background: #FAF8F5;
  border: 1px solid #EDE5D7;
  border-radius: 8px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  gap: 16px;
}

.artisan-mobile-avatar {
  display: none;
}

@media screen and (max-width: 768px) {
  .pdp-artisan-editorial-section {
    padding: 28px 0 24px 0 !important;
  }
  
  .artisan-section-header {
    margin: 0 auto 16px auto !important;
  }

  .artisan-grid-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .artisan-img-box {
    display: none !important;
  }

  .artisan-info-box {
    padding: 18px 16px !important;
    gap: 14px !important;
    border-radius: 6px !important;
  }

  .artisan-mobile-avatar {
    display: block !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid #B8892A !important;
    flex-shrink: 0 !important;
  }

  .artisan-bio-text {
    display: none !important;
  }
}

/* PDP RELATED PRODUCTS HORIZONTAL SLIDER ON MOBILE */

@media screen and (max-width: 768px) {
  .pdp-related-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    padding: 6px 16px 20px 16px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    scrollbar-width: none !important;
  }
  .pdp-related-grid::-webkit-scrollbar {
    display: none !important;
  }
  .pdp-related-grid .product-card,
  .pdp-related-grid .pdp-related-card {
    flex: 0 0 68% !important;
    max-width: 260px !important;
    min-width: 220px !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PREVENT MOBILE / IOS AUTO-ZOOM ON FORM INPUT FOCUS (16px STANDARD)
   ═══════════════════════════════════════════════════════════════════════════ */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  select,
  textarea,
  .woocommerce-input-wrapper input,
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row select,
  .woocommerce-checkout input,
  .woocommerce-checkout select,
  .woocommerce-checkout textarea,
  #exit-intent-phone,
  .pdp-custom-input,
  .kainara-input {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100% !important;
  }
}


/* Keep Pincode+City and State+Email side-by-side on mobile screens */
.gokwik-2col--always {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
}

@media (max-width: 480px) {
  .gokwik-2col--always {
    gap: 8px !important;
  }
  .gokwik-label {
    font-size: 11px !important;
  }
  .gokwik-input {
    height: 42px !important;
    padding: 0 10px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SUBTLE & ELEGANT LUXURY SHIMMER MICRO-INTERACTION (SOFT SILK SHEEN)
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes luxuryAtcShimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  25%, 100% { transform: translateX(250%) skewX(-20deg); }
}

.pdp-atc-btn,
.pdp-sticky-atc,
.btn-quickview-atc {
  position: relative !important;
  overflow: hidden !important;
}

.pdp-atc-btn::after,
.pdp-sticky-atc::after,
.btn-quickview-atc::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 45% !important;
  height: 100% !important;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 80%
  ) !important;
  animation: luxuryAtcShimmer 4.8s infinite cubic-bezier(0.25, 1, 0.5, 1) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.pdp-atc-btn:hover::after,
.pdp-sticky-atc:hover::after,
.btn-quickview-atc:hover::after {
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 80%
  ) !important;
  animation: luxuryAtcShimmer 2.6s infinite cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hide 1/5 counter badge on desktop */
.pdp-gallery-counter-pill { display: none !important; }
@media (max-width: 768px) { .pdp-gallery-counter-pill { display: inline-flex !important; } }

/* 16px Form Inputs to Prevent iOS Auto-Zoom Without Disabling User Zoom */
@media screen and (max-width: 768px) {
  input, select, textarea, .woocommerce-input-wrapper input {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100% !important;
  }
}


/* Desktop PDP Spacing (Refined Luxury Proportions) */
@media (min-width: 769px) {
  .pdp-hero {
    padding: 14px 16px 48px 16px !important;
  }
  .pdp-breadcrumb {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
  .pdp-breadcrumb {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

/* ── ULTRA-CRISP HIGH-RESOLUTION IMAGE RENDERING ── */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.product-card img,
.pdp-main-image,
.pdp-thumb img,
.pdp-zoom-active-img,
.qv-main-image,
.mobile-product-carousel-card img {
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: auto !important;
  -webkit-font-smoothing: antialiased;
}


/* ── ULTRA-CRISP RETINA MEDIA OPTIMIZATION ── */
img,
.hero-parallax-img,
.pdp-main-image,
.pdp-slide img,
.product-card img,
.artisan-card-img,
.cart-item-card img,
.cart-item-card-row img,
#chk-desk-img,
#chk-mob-img,
#qv-main-img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CARD TITLE TRUNCATION (Clean 2-Line Ellipsis across Home & Catalog)
   ═══════════════════════════════════════════════════════════════════════════ */
.product-card-title,
.product-card h3,
.product-card-info h3,
.kainara-product-card-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  line-height: 1.35 !important;
  max-height: 2.7em !important;
  word-break: break-word !important;
  margin: 4px 0 6px 0 !important;
}

@media (max-width: 768px) {
  .product-card-title,
  .product-card h3,
  .product-card-info h3,
  .kainara-product-card-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    max-height: 2.6em !important;
    font-size: 12.5px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM SHEET DRAWERS (Cart, Navigation Menu, Blouse)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #mobile-menu-panel {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 85vh !important;
    border-radius: 18px 18px 0 0 !important;
    box-shadow: 0 -8px 36px rgba(16, 13, 10, 0.25) !important;
    transform: translateY(100%) !important;
    -webkit-transform: translateY(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  #mobile-menu-drawer.is-open #mobile-menu-panel {
    transform: translateY(0%) !important;
    -webkit-transform: translateY(0%) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PDP MEDIA GALLERY & THUMBNAILS (CONDITIONAL CHEVRONS ON OVERFLOW)
   ═══════════════════════════════════════════════════════════════════════════ */
@media screen and (min-width: 769px) {
  .pdp-gallery-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    width: 100% !important;
    align-items: flex-start !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .pdp-thumbs-wrapper {
    width: 82px !important;
    flex: 0 0 82px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    position: relative !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden !important;
  }

  .pdp-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    padding: 2px 0 6px 0 !important;
    margin: 0 !important;
    flex: 1 1 auto !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-behavior: smooth !important;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 36px), transparent 100%) !important;
    mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 36px), transparent 100%) !important;
    transition: -webkit-mask-image 0.25s ease, mask-image 0.25s ease !important;
  }

  .pdp-thumbs.is-scrolled-down {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 24px, black calc(100% - 36px), transparent 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 24px, black calc(100% - 36px), transparent 100%) !important;
  }

  .pdp-thumbs.is-at-bottom {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 24px, black 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 24px, black 100%) !important;
  }

  .pdp-thumbs::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .pdp-thumbs-nav {
    display: none;
    gap: 4px !important;
    width: 82px !important;
    margin-top: 6px !important;
    flex-shrink: 0 !important;
    height: 30px !important;
    box-sizing: border-box !important;
    background: #FAF8F5 !important;
    border: 1px solid #E2D9CE !important;
    border-radius: 16px !important;
    padding: 2px !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 1px 3px rgba(16, 13, 10, 0.04) !important;
  }

  .pdp-thumbs-btn {
    flex: 1 1 0 !important;
    height: 24px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #100D0A !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
  }

  .pdp-thumbs-btn:hover {
    background: #100D0A !important;
    color: #FFFFFF !important;
  }

  .pdp-thumbs-btn:disabled,
  .pdp-thumbs-btn.is-disabled {
    opacity: 0.22 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    color: #A09589 !important;
  }

  .pdp-gallery-main {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 2px !important;
    cursor: zoom-in !important;
    aspect-ratio: 3/4 !important;
    align-self: flex-start !important;
  }

  .pdp-slides-track,
  .pdp-slide {
    width: 100% !important;
    height: 100% !important;
  }

  .pdp-main-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
}
