/* ==========================================================================
   DIVINE BABY SHOP — LUXURY THEME v3 (Royal Plum)
   Load LAST in layout.html head (after theme-colors + theme-fonts includes).
   Works with the two add-on snippets: lux-hero.html + lux-trust.html
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   !important on theme vars so Dukaan's injected theme-colors can never win.
   -------------------------------------------------------------------------- */
:root {
  --primary: #5e4b6e !important;
  --primary-rgb: 94, 75, 110 !important;
  --primary-black: #3a2f42 !important;

  --black-30: #5a4e66 !important;
  --black-50: #8b7a97 !important;
  --black-85: #e4dbec !important;
  --black-98: #f1eaf4 !important;
  --black-bg: #f1eaf4 !important;

  --secondary-red: #b0546f !important;
  --secondary-red-a10: rgba(176, 84, 111, 0.1) !important;
  --pink: #c77e96 !important;

  --border-radius-small: 10px !important;
  --border-radius-medium: 14px !important;
  --border-radius-large: 18px !important;
  --border-radius-modal: 22px !important;

  /* Dukaan injects: * { font-family: var(--font-family) !important }
     Redefining the variable makes the platform's own rule apply our font. */
  --font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif !important;

  --lux-bg: #fdfcfe;
  --lux-section: #f3eef7;
  --lux-lilac: #d9cce8;
  --lux-lilac-soft: #ece4f2;
  --lux-primary: #5e4b6e;
  --lux-primary-dark: #4a3a58;
  --lux-rose: #e3b7c4;
  --lux-rose-deep: #c77e96;
  --lux-rose-ink: #b25a7b;
  --lux-ink: #3a2f42;
  --lux-text: #55486a;
  --lux-muted: #8b7a97;
  --lux-serif: 'Cormorant Garamond', 'Georgia', serif;
  --lux-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body,
body * {
  font-family: var(--lux-sans);
}

body {
  background-color: var(--lux-bg);
  color: var(--lux-text);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--lux-lilac);
  color: var(--lux-ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lux-rose-deep);
  outline-offset: 2px;
}

.container {
  max-width: 1140px;
}

/* --------------------------------------------------------------------------
   3. ANNOUNCEMENT BAR
   (Enable it in Dukaan dashboard; suggested text:
   "Free Shipping Above ₹999   |   Trusted by Indian Mothers   |   100% Secure Payments")
   -------------------------------------------------------------------------- */
.header-top {
  background-color: var(--lux-section) !important;
  padding: 11px 0;
}

.header-top p {
  color: var(--lux-primary) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lux-announce-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.lux-announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lux-primary);
}

.lux-announce-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--lux-rose-deep);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.lux-announce-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--lux-lilac);
}

/* --------------------------------------------------------------------------
   3b. SHOP BY JOURNEY — custom category cards (lux-journey.html snippet)
   Hides the default template categories section.
   -------------------------------------------------------------------------- */
#top-categories-container {
  display: none !important;
}

.lux-journey {
  margin-top: 72px;
}

.lux-journey-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.lux-journey-card {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 18px;
  padding: 32px 18px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lux-journey-card:hover {
  transform: translateY(-4px);
  border-color: var(--lux-lilac);
  box-shadow: 0 14px 32px rgba(94, 75, 110, 0.12);
}

.lux-journey-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-journey-icon.is-rose { background-color: #f9e9ef; color: #c77e96; }
.lux-journey-icon.is-lilac { background-color: #efe9f6; color: #7c6baa; }
.lux-journey-icon.is-mint { background-color: #e9f2ec; color: #6b8f7a; }
.lux-journey-icon.is-peach { background-color: #fbefe6; color: #c98b62; }

.lux-journey-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-journey-card h3 {
  font-family: var(--lux-serif) !important;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--lux-ink);
  margin: 0 0 6px 0;
}

.lux-journey-card > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: #6e6180;
  margin: 0 0 16px 0;
}

.lux-journey-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--lux-rose-ink) !important;
}

.lux-journey-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.lux-journey-card:hover .lux-journey-link svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. HEADER — clean, airy, luxury spacing
   -------------------------------------------------------------------------- */
.header-section {
  background-color: rgba(253, 252, 254, 0.98);
}

.header-main {
  padding: 20px 0;
  box-shadow: none;
  border-bottom: 1px solid var(--lux-lilac-soft);
  margin-bottom: 0;
}

.header-inner .logo img {
  height: 50px;
  max-width: 185px;
}

.header-inner .logo p,
.menu-mobile-logo p {
  font-family: var(--lux-serif) !important;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lux-ink);
}

.menu-main {
  margin: 0 48px;
}

.menu-content a {
  color: #6e6180;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-right: 30px;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu-content a:hover,
.menu-main a:hover {
  color: var(--lux-ink);
  border-bottom-color: var(--lux-lilac);
}

.menu-content a.active {
  color: var(--lux-primary);
  font-weight: 500;
  border-bottom: 2px solid var(--lux-rose-deep);
}

.menu-cart-section {
  gap: 6px;
}

.menu-cart-section .nav-button,
.header-search .nav-button {
  color: var(--lux-ink);
  transition: color 0.3s ease, transform 0.3s ease;
}

.menu-cart-section .nav-button:hover {
  color: var(--lux-primary);
  transform: translateY(-1px);
}

.nav-menu .nav-button .bubble {
  background-color: var(--lux-rose-deep);
}

/* dropdown menus — readability fix: clear contrast at rest AND on hover */
.menu-drop-ul,
.menu-dropdown ul {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--lux-lilac-soft);
  box-shadow: 0 12px 32px rgba(58, 47, 66, 0.1);
  padding: 8px;
}

.menu-drop-ul li a,
.menu-dropdown ul li a {
  color: #55486a !important;
  border-radius: 8px;
  padding: 9px 14px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-drop-ul li a:hover,
.menu-dropdown ul li a:hover {
  background-color: var(--lux-section);
  color: var(--lux-primary) !important;
}

.menu-dropdown__button,
.menu-dropdown__button:before {
  background-color: #fdfcfe;
}

/* --------------------------------------------------------------------------
   5. CUSTOM HERO (lux-hero.html snippet) + hide default banner slider
   -------------------------------------------------------------------------- */
.home-banner {
  display: none !important;
}

.lux-hero {
  background-color: #fbf9fd;
  border-bottom: 1px solid var(--lux-lilac-soft);
}

.lux-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 420px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.lux-hero-text {
  flex: 1 1 46%;
}

.lux-hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-rose-deep);
  margin: 0 0 16px 0;
}

.lux-hero-title {
  font-family: var(--lux-serif) !important;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 500;
  color: var(--lux-ink);
  margin: 0 0 20px 0;
}

.lux-hero-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--lux-rose-deep);
}

.lux-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  color: #6e6180;
  max-width: 420px;
  margin: 0 0 32px 0;
}

.lux-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lux-btn-primary {
  background-color: var(--lux-primary);
  color: #fdfcfe !important;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.lux-btn-primary:hover {
  background-color: var(--lux-primary-dark);
  transform: translateY(-2px);
}

.lux-btn-outline {
  border: 1px solid var(--lux-primary);
  color: var(--lux-primary) !important;
  border-radius: 999px;
  padding: 13px 34px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.lux-btn-outline:hover {
  background-color: var(--lux-primary);
  color: #fdfcfe !important;
}

.lux-hero-media {
  flex: 1 1 54%;
  display: flex;
  justify-content: flex-end;
}

.lux-hero-media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 460px;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   6. SECTION HEADINGS
   -------------------------------------------------------------------------- */
.second-heading {
  font-family: var(--lux-serif) !important;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--lux-ink);
  text-align: center;
  margin: 0 0 44px 0;
}

.second-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: var(--lux-rose-deep);
  margin: 16px auto 0;
}

/* --------------------------------------------------------------------------
   7. TOP CATEGORIES — white cards with circular image, like reference
   -------------------------------------------------------------------------- */
.categories-section {
  margin-top: 72px;
}

.categories-box-main {
  justify-content: center;
  margin: -10px;
}

.categories-box {
  flex: 0 0 226px;
  max-width: 226px;
  padding: 28px 20px 24px;
  margin: 10px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.categories-box:hover {
  transform: translateY(-4px);
  border-color: var(--lux-lilac);
  box-shadow: 0 14px 32px rgba(94, 75, 110, 0.12);
}

.categories-img {
  justify-content: center;
}

.categories-img img {
  flex: none;
  width: 112px;
  max-width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 4px solid var(--lux-section);
  background: #ffffff;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.categories-box:hover .categories-img img {
  transform: scale(1.05);
}

.categories-box-caption {
  background-color: transparent;
  justify-content: center;
  padding: 18px 0 0 0;
}

.categories-box-caption h3 {
  font-family: var(--lux-serif) !important;
  font-size: 20px;
  font-weight: 500;
  color: var(--lux-ink);
  margin: 0 8px 0 0;
}

.categories-box-caption svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.categories-box-caption svg path {
  fill: var(--lux-rose-deep);
}

.categories-box:hover .categories-box-caption svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. PRODUCT CARDS — white framed cards like reference
   -------------------------------------------------------------------------- */
.seller-section {
  margin-top: 80px;
}

.seller-inner:not(:first-child) {
  margin-top: 80px;
}

.seller-box-main {
  margin: -10px;
}

.seller-box {
  flex: 0 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
  margin: 10px;
  padding: 12px 12px 16px;
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seller-box:hover {
  transform: translateY(-4px);
  border-color: var(--lux-lilac);
  box-shadow: 0 16px 36px rgba(94, 75, 110, 0.12);
}

.seller-img {
  border: none;
  background: #faf8fb;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  height: auto !important;
}

.seller-img .splide,
.seller-img .splide__track,
.seller-img .splide__list,
.seller-img .splide__slide {
  height: 100% !important;
}

.seller-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  padding: 6px;
}

/* lavender wash to soften gray photo backgrounds */
.seller-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(217, 204, 232, 0.14);
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: inherit;
}

.seller-box-caption {
  background-color: transparent;
  padding: 14px 4px 0;
}

.seller-box-caption h3 {
  color: var(--lux-ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.seller-box-caption h4 {
  color: var(--lux-primary);
  font-size: 17px;
  font-weight: 500;
}

.price-line {
  color: #a99bb5;
  font-weight: 400;
}

.price-off {
  display: inline-block;
  background-color: #f8ebf1;
  color: var(--lux-rose-ink) !important;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 999px;
  vertical-align: middle;
}

.out-of-stock-label,
.dkn-sold-out-label.out-of-stock-label {
  color: #b0546f !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wishlist-svg-wrapper {
  border-radius: 50%;
  transition: transform 0.3s ease;
}

wishlist-button-load-point button:hover .wishlist-svg-wrapper {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   9. BUTTONS
   -------------------------------------------------------------------------- */
.without-cart-add-to-bag-button,
.seller-box .without-cart-add-to-bag-button {
  background-color: #fdf8fa;
  border: 1px solid var(--lux-rose);
  color: var(--lux-rose-ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, transform 0.3s ease;
}

.without-cart-add-to-bag-button:hover {
  background-color: var(--lux-rose-ink);
  border-color: var(--lux-rose-ink);
  color: #fdf8fa;
}

.without-cart-add-to-bag-button:active {
  transform: scale(0.98);
}

.seller-box .add-to-bag-button-wrapper {
  margin-top: 14px;
}

.btn-view-all {
  background-color: var(--lux-primary) !important;
  color: #fdfcfe !important;
  border-radius: 999px;
  padding: 13px 48px;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--lux-primary-dark) !important;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   10. TRUST STRIP (lux-trust.html snippet)
   -------------------------------------------------------------------------- */
.lux-trust {
  margin-top: 48px;
}

.seller-section.bestseller-section,
.bestseller-section {
  padding-bottom: 0 !important;
}

.lux-trust-inner {
  display: flex;
  flex-wrap: wrap;
  background-color: #f9f1f4;
  border-radius: 22px;
  padding: 38px 24px;
}

.lux-trust-item {
  flex: 1 1 0;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0 26px;
  border-right: 1px solid rgba(94, 75, 110, 0.1);
}

.lux-trust-item:last-child {
  border-right: none;
}

.lux-trust-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-trust-icon.is-lilac { background-color: #efe9f6; color: #7c6baa; }
.lux-trust-icon.is-rose { background-color: #f9e4ec; color: #d16a86; }
.lux-trust-icon.is-peach { background-color: #fdeee5; color: #e08a5e; }
.lux-trust-icon.is-mint { background-color: #e7f1ec; color: #6b9c82; }

.lux-trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-trust-item h4 {
  font-family: var(--lux-serif) !important;
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--lux-ink);
  margin: 3px 0 6px 0;
}

.lux-trust-item p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: #7a6d88;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonial-section {
  background-color: var(--lux-section);
  padding: 80px 0;
  margin-top: 96px;
}

.testimonials-list {
  gap: 24px;
  margin: 0;
}

.testimonial-box {
  background-color: #fdfcfe;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(94, 75, 110, 0.07);
  padding: 36px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(94, 75, 110, 0.12);
}

.testimonial-box p {
  font-family: var(--lux-sans) !important;
  font-style: normal;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #4e4260;
}

.testimonial-box h4 {
  color: var(--lux-rose-deep);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   12. FOOTER — light lavender, like reference (fixes dark-on-dark readability)
   -------------------------------------------------------------------------- */
.footer-section {
  background-color: var(--lux-section);
  border-top: none;
  padding: 64px 0 48px 0;
  margin-top: 0;
}

/* brand line across the top of the footer, divider beneath */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 64px;
}

.footer-inner::before {
  content: 'Divine Baby Shop';
  flex: 1 1 100%;
  text-align: center;
  font-family: var(--lux-serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--lux-ink);
  padding-bottom: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(94, 75, 110, 0.12);
}

.footer-inner::after {
  content: '\00A9  2026 Divine Baby Shop  \2022  Thoughtfully Crafted for Every Pregnancy Journey.';
  flex: 1 1 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #36005d;
  border-top: 1px solid rgba(94, 75, 110, 0.12);
  padding-top: 24px;
  margin-top: 20px;
}

/* categories list page (/categories) + breadcrumbs */
.breadcrumb-section {
  padding-top: 18px;
}

.breadcrumb-inner li,
.breadcrumb-item,
.breadcrumb-item a {
  color: var(--lux-muted);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.breadcrumb-item a:hover {
  color: var(--lux-primary);
}

.breadcrumb-item.active {
  color: var(--lux-primary);
}

.all-categories {
  margin-bottom: 88px;
}

.all-categories .categories-box {
  flex: 0 0 250px;
  max-width: 260px;
  padding: 32px 22px 28px;
}

.all-categories .categories-img img {
  width: 128px;
  max-width: 128px;
  height: 128px;
}

.footer-section .third-heading,
.footer-section .text-c-black-12 {
  font-family: var(--lux-serif) !important;
  font-size: 21px;
  font-weight: 500;
  color: var(--lux-ink) !important;
  margin-bottom: 18px;
}

.footer-links {
  columns: 2;
  column-gap: 56px;
}

.footer-links li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.footer-links li a {
  color: #6e6180;
  font-size: 14.5px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links li a:hover {
  color: var(--lux-primary);
  padding-left: 4px;
}

.footer-address-section {
  max-width: 320px;
  line-height: 1.75;
}

.footer-address-section,
.footer-updates h5 {
  color: var(--lux-muted);
  font-weight: 300;
}

#newsletter-status {
  color: var(--lux-primary);
}

.footer-email-section input {
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac);
  color: var(--lux-ink);
  border-radius: 999px;
  padding: 12px 20px;
  transition: border-color 0.3s ease;
}

.footer-email-section input::placeholder {
  color: var(--lux-muted);
}

.footer-email-section input:focus {
  border-color: var(--lux-primary);
  outline: none;
}

.footer-email-section button {
  background-color: var(--lux-primary);
  border: none;
  border-radius: 999px;
  transition: background-color 0.3s ease;
}

.footer-email-section button:hover {
  background-color: var(--lux-primary-dark);
}

.footer-email-section .icon,
.footer-email-section .icon path {
  fill: #fdfcfe;
}

.footer-social-main {
  margin-top: 20px;
  gap: 10px;
}

.footer-social-main a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-main a:hover {
  transform: translateY(-2px);
  border-color: var(--lux-lilac);
  box-shadow: 0 6px 16px rgba(94, 75, 110, 0.12);
}

/* --------------------------------------------------------------------------
   13. MOBILE NAV + MODALS
   -------------------------------------------------------------------------- */
.menu-sticky-bottom {
  background-color: #fdfcfe;
  border-top: 1px solid var(--lux-lilac-soft);
  box-shadow: 0 -4px 16px rgba(58, 47, 66, 0.05);
}

.modal-content {
  border-radius: 20px;
}

.divider {
  background-color: var(--lux-lilac-soft);
}

/* --------------------------------------------------------------------------
   13b. CATEGORY PAGE (advance filter layout)
   -------------------------------------------------------------------------- */
img.category-page-banner {
  border-radius: 18px;
}

.advance-filter__filter-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 18px;
  overflow: hidden;
}

.advance-filter__block:not(:last-of-type) {
  border-bottom: 1px solid var(--lux-lilac-soft);
}

.advance-filter__title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--lux-primary);
}

.advance-filter__clear-button {
  color: var(--lux-rose-ink);
  font-weight: 400;
}

.advance-filter__filter-title {
  color: var(--lux-ink);
  font-weight: 500;
}

.advance-filter__tag {
  border: 1px solid var(--lux-lilac);
  border-radius: 999px;
  padding: 4px 12px;
  background-color: #ffffff;
  color: var(--lux-primary);
}

/* product cards on category page — match homepage cards */
.advance-filter__product-card {
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 18px;
  padding: 12px 12px 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advance-filter__product-card:hover {
  transform: translateY(-4px);
  border-color: var(--lux-lilac);
  box-shadow: 0 16px 36px rgba(94, 75, 110, 0.12);
}

.advance-filter__card-img {
  border: none;
  background-color: #faf8fb;
  border-radius: 12px;
  overflow: hidden;
}

.advance-filter__card-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 6px;
}

.advance-filter__card-title {
  color: var(--lux-ink);
  font-size: 15px;
  padding: 14px 4px 4px;
}

.advance-filter__card-selling-price {
  color: var(--lux-primary);
  font-weight: 500;
  font-size: 17px;
}

.advance-filter__card-original-price {
  color: #a99bb5;
  font-weight: 400;
}

.advance-filter__card-discount-badge {
  display: inline-block;
  background-color: #f8ebf1;
  color: var(--lux-rose-ink) !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.advance-filter__product-card .add-to-bag-button-wrapper {
  margin-top: 12px;
}

/* pagination */
.advance-filter__page-no-item.active {
  background-color: var(--lux-primary);
  color: #fdfcfe;
}

.advance-filter__page-no-item:not(.active) {
  border: 1px solid var(--lux-lilac);
  color: var(--lux-muted);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.advance-filter__page-no-item:not(.active):hover {
  border-color: var(--lux-primary);
  color: var(--lux-primary);
}

/* sort control */
.sort-lable {
  color: var(--lux-muted);
}

.sort-btn-toggle {
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--lux-ink);
  transition: border-color 0.3s ease;
}

.sort-btn-toggle:hover {
  border-color: var(--lux-primary);
}

.sort-price-dropdown {
  background-color: #ffffff;
  border: 1px solid var(--lux-lilac-soft);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(58, 47, 66, 0.1);
  overflow: hidden;
}

.sort-price-dropdown button {
  color: #55486a;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sort-price-dropdown button:hover {
  background-color: var(--lux-section);
  color: var(--lux-primary);
}

.back-arrow {
  color: var(--lux-ink);
}

/* --------------------------------------------------------------------------
   13c. PRODUCT PAGE (PDP)
   -------------------------------------------------------------------------- */
.detail-heading-rating h1 {
  font-family: var(--lux-serif) !important;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--lux-ink);
}

.product-unit {
  color: var(--lux-muted);
}

.detail-price .product-selling-price {
  font-size: 28px;
  font-weight: 500;
  color: var(--lux-primary);
}

.detail-price .product-original-price {
  color: #a99bb5;
  font-weight: 400;
}

.detail-price .product-discount-badge,
.product-discount-badge {
  display: inline-block;
  background-color: #f8ebf1;
  color: var(--lux-rose-ink) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 999px;
}

.bxgy-badge-booster-pdp {
  display: inline-block;
  background-color: #f8ebf1;
  color: var(--lux-rose-ink);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* gallery */
.detail-image-slider .splide__slide img,
.dkn-main-product-image {
  border-radius: 16px;
  background-color: #faf8fb;
}

.thumbnails .thumbnail-image {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}

.thumbnails .splide__slide.is-active,
.thumbnails .thumbnail-image.is-active {
  border-color: var(--lux-primary);
}

/* variants */
.dkn-variant-section-size-list .size-label,
.dkn-variant-section-size-list label {
  border-radius: 12px;
}

/* buttons: Add to Bag = outline plum, Buy Now = filled plum */
.pdp-button-wrapper .without-cart-add-to-bag-button,
.detail-add-btn {
  background-color: transparent;
  border: 1.5px solid var(--lux-primary);
  color: var(--lux-primary);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pdp-button-wrapper .without-cart-add-to-bag-button:hover,
.detail-add-btn:hover {
  background-color: var(--lux-primary);
  color: #fdfcfe;
}

.detail-buy-btn {
  background-color: var(--lux-primary) !important;
  color: #fdfcfe !important;
  border: 1.5px solid var(--lux-primary) !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.detail-buy-btn:hover {
  background-color: var(--lux-primary-dark) !important;
  border-color: var(--lux-primary-dark) !important;
}

.detail-counter {
  border: 1.5px solid var(--lux-primary);
  border-radius: 999px;
  color: var(--lux-primary);
  overflow: hidden;
}

/* description */
.detail-description h4 {
  font-family: var(--lux-serif) !important;
  font-size: 21px;
  font-weight: 500;
  color: var(--lux-ink);
  margin-bottom: 10px;
}

.detail-description p {
  color: #55486a;
  font-weight: 300;
  line-height: 1.75;
}

.trusted-badges-wrapper {
  margin-top: 24px;
}

/* mobile PDP: back bar + sticky action bar */
.detail-top-back {
  background-color: #fdfcfe;
  border-bottom: 1px solid var(--lux-lilac-soft);
}

@media screen and (max-width: 767px) {
  .pdp-button-wrapper {
    background: #fdfcfe !important;
    border-top: 1px solid var(--lux-lilac-soft) !important;
  }

  .detail-heading-rating h1 {
    font-size: 24px;
  }

  .detail-price .product-selling-price {
    font-size: 22px;
  }
}

/* --------------------------------------------------------------------------
   13d. CATEGORIES LIST PAGE — larger cards, full-visible square images
   -------------------------------------------------------------------------- */
.all-categories .categories-box {
  flex: 0 0 300px;
  max-width: 320px;
  padding: 14px 14px 20px;
}

.all-categories .categories-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: none;
  background-color: #faf8fb;
  object-fit: cover;
}

.all-categories .categories-box-caption {
  padding-top: 16px;
}

.all-categories .categories-box-caption h3 {
  font-size: 21px;
}

/* --------------------------------------------------------------------------
   13e. PDP SALES POLISH — variant pills, sticky buy column, trust row
   -------------------------------------------------------------------------- */
/* variant chips: pill shape, plum selected state (kills the black active) */
.variant-selection .size-label,
.dkn-variant-section-size-list label,
.variant-selection .size-value {
  border-radius: 999px !important;
}

.size-info label,
.variant-selection .size-value {
  border: 1.5px solid var(--lux-lilac);
  color: #55486a;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
}

.size-info input:checked + label,
.size-label.active,
.size-label.selected,
.variant-selection label.active,
.variant-selection label.selected {
  background-color: var(--lux-primary) !important;
  border-color: var(--lux-primary) !important;
  color: #fdfcfe !important;
}

.variant-type-header,
.variant-type-label {
  color: var(--lux-ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* gallery frame */
.detail-image-slider .productLayout .splide {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lux-lilac-soft);
  background-color: #faf8fb;
}

/* buy column: sticky on desktop so CTAs stay visible while reading */
@media only screen and (min-width: 1025px) {
  .detail-inner {
    align-items: flex-start;
  }

  .detail-image-describe {
    position: sticky;
    top: 96px;
  }
}

/* taller, confident CTAs */
.pdp-button-wrapper .without-cart-add-to-bag-button,
.pdp-button-wrapper .detail-add-btn,
.pdp-button-wrapper .detail-buy-btn {
  min-height: 50px;
  font-size: 15px;
}

/* wishlist link */
.dkn-pdp-wishlist-button-wrapper a,
.dkn-pdp-wishlist-button-wrapper button {
  color: var(--lux-rose-ink);
  font-weight: 500;
}

/* trust badges row under buttons — spread across the full details width.
   The PDP injects its own inline style (flex-start), hence the !important. */
.trusted-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between !important;
  align-items: center;
  gap: 12px 16px;
  border-top: none;
  margin-top: 12px !important;
  padding-top: 0;
}

.trusted-badges-wrapper,
.trusted-badges-wrapper * {
  color: #6e6180;
}

/* full-width relocated description (B) */
.lux-pdp-description {
  max-width: 100%;
  margin-top: 8px;
  padding: 36px 0 8px;
  border-top: 1px solid var(--lux-lilac-soft);
}

.lux-pdp-description p {
  max-width: 860px;
}

/* description niceties */
.detail-description p strong,
.detail-description p b {
  color: var(--lux-ink);
  font-weight: 500;
}

.detail-description li::marker {
  color: var(--lux-rose-deep);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .seller-box {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}

@media only screen and (max-width: 767px) {
  .lux-announce-inner {
    gap: 0;
  }

  .lux-announce-item:not(:first-child),
  .lux-announce-sep {
    display: none;
  }

  .lux-announce-item {
    font-size: 11px;
  }

  .lux-journey {
    margin-top: 52px;
  }

  .lux-journey-grid {
    gap: 12px;
  }

  .lux-journey-card {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    padding: 24px 14px 20px;
  }

  .lux-journey-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }

  .lux-journey-icon svg {
    width: 28px;
    height: 28px;
  }

  .lux-journey-card h3 {
    font-size: 17px;
  }

  .lux-journey-card > p {
    font-size: 12.5px;
  }

  .lux-hero-inner {
    flex-direction: column-reverse;
    gap: 12px;
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 36px;
    text-align: center;
  }

  .lux-hero-title {
    font-size: 32px;
  }

  .lux-hero-sub {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .lux-hero-actions {
    justify-content: center;
  }

  .lux-hero-media img {
    max-height: 300px;
  }

  .second-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .second-heading::after {
    margin-top: 12px;
  }

  .categories-box {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    margin: 8px;
    padding: 20px 12px 18px;
  }

  .categories-img img {
    width: 88px;
    max-width: 88px;
    height: 88px;
  }

  .categories-box-caption h3 {
    font-size: 16px;
  }

  .categories-section,
  .seller-section,
  .lux-trust {
    margin-top: 56px;
  }

  .seller-inner:not(:first-child) {
    margin-top: 56px;
  }

  .seller-box-main,
  .bestseller-section .seller-box-main {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    margin: -6px !important;
  }

  .seller-box-main .seller-box,
  .bestseller-section .seller-box {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 6px !important;
    padding: 8px 8px 12px;
  }

  .seller-box-caption h3 {
    font-size: 13px;
  }

  .seller-box-caption h4 {
    font-size: 15px;
  }

  .price-off {
    font-size: 11px;
    padding: 1px 8px;
  }

  .without-cart-add-to-bag-button {
    font-size: 12px;
    padding: 8px;
  }

  .lux-trust-inner {
    padding: 26px 14px;
    row-gap: 26px;
  }

  .lux-trust-item {
    flex: 1 1 calc(50% - 1px);
    min-width: calc(50% - 1px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 12px;
    border-right: none;
  }

  .lux-trust-item:nth-child(odd) {
    border-right: 1px solid rgba(94, 75, 110, 0.1);
  }

  .lux-trust-icon {
    width: 46px;
    height: 46px;
  }

  .lux-trust-item h4 {
    font-size: 15.5px;
    margin: 0 0 4px 0;
  }

  .lux-trust-item h4 br {
    display: none;
  }

  .lux-trust-item p {
    font-size: 12.5px;
  }

  .testimonial-section {
    padding: 56px 0;
    margin-top: 64px;
  }

  .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 28px 24px;
  }

  .footer-section {
    padding: 44px 0 96px 0;
    margin-top: 0;
  }

  .footer-inner::before {
    font-size: 23px;
    padding-bottom: 24px;
  }

  .footer-inner::after {
    font-size: 11.5px;
    line-height: 1.6;
  }

  .footer-links {
    columns: 2;
    column-gap: 32px;
  }

  .header-inner .logo p,
  .menu-mobile-logo p {
    font-size: 20px;
  }
}

/* --------------------------------------------------------------------------
   15. ACCESSIBILITY
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

