/* ==========================================================================
   Shuvu Skincare — Luxury Design System
   Palette: warm cream, deep sage, antique gold, ivory
   Typography: Playfair Display (display) + Inter (body)
   Loaded LAST — overrides existing template styles
   ========================================================================== */

:root {
  --lx-bg:        #FAF6F0;
  --lx-surface:   #FFFFFF;
  --lx-surface-2: #F4ECE0;
  --lx-fg:        #1A1814;
  --lx-fg-soft:   #3A352E;
  --lx-muted:     #6F6356;
  --lx-muted-2:   #9A8E7E;
  --lx-border:    #E8DECF;
  --lx-border-2:  #D9CCB6;

  --lx-sage:      #2F4A3F;
  --lx-sage-deep: #1F332B;
  --lx-sage-soft: #4D6B5C;

  --lx-gold:      #B89968;
  --lx-gold-deep: #97784E;
  --lx-gold-soft: #D8C29A;

  --lx-blush:     #F5E8D8;
  --lx-rose:      #C9A78A;

  --lx-radius-sm: 6px;
  --lx-radius:    14px;
  --lx-radius-lg: 22px;

  --lx-shadow-sm: 0 1px 2px rgba(31, 25, 17, 0.04), 0 1px 3px rgba(31, 25, 17, 0.06);
  --lx-shadow:    0 8px 24px -8px rgba(31, 25, 17, 0.10), 0 2px 6px rgba(31, 25, 17, 0.04);
  --lx-shadow-lg: 0 28px 60px -22px rgba(31, 25, 17, 0.22), 0 8px 18px -10px rgba(31, 25, 17, 0.10);

  --lx-ease:      cubic-bezier(.22, .61, .36, 1);
  --lx-fast:      180ms;
  --lx-mid:       260ms;
  --lx-slow:      420ms;

  --lx-font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --lx-font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base reset ---------- */
html { scroll-behavior: smooth; }

body,
body.goto-here {
  background: var(--lx-bg) !important;
  color: var(--lx-fg) !important;
  font-family: var(--lx-font-body) !important;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.005em;
}

h1, h2, h3, h4, h5, h6,
.heading-section h2,
.ftco-footer-widget h2,
.ftco-heading-2,
.text-deal h2,
.text-deal h2 a {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }

p { color: var(--lx-fg-soft); }

a { color: var(--lx-sage); transition: color var(--lx-fast) var(--lx-ease); }
a:hover, a:focus { color: var(--lx-gold-deep); text-decoration: none; }

::selection { background: var(--lx-gold-soft); color: var(--lx-fg); }

/* Page wrap */
.ftco-section { padding: 7rem 0; background: transparent; }
.ftco-no-pt { padding-top: 0 !important; }
.ftco-no-pb { padding-bottom: 0 !important; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--lx-sage-deep) !important;
  color: #EDE3D2 !important;
  border-bottom: 1px solid rgba(184,153,104, 0.18);
  padding: 10px 0 !important;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.top-bar .top-bar-text,
.top-bar a { color: #EDE3D2 !important; opacity: 0.9; }
.top-bar .top-bar-icon,
.top-bar [class^="icon-"],
.top-bar [class*=" icon-"] { color: var(--lx-gold-soft) !important; }

/* ---------- Navbar ---------- */
.ftco_navbar,
nav.ftco_navbar.ftco-navbar-light {
  background: rgba(250, 246, 240, 0.85) !important;
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--lx-border) !important;
  padding: 18px 0 !important;
  transition: background var(--lx-mid) var(--lx-ease), box-shadow var(--lx-mid) var(--lx-ease);
}

.ftco_navbar.scrolled,
.ftco_navbar.awake {
  background: rgba(255, 253, 248, 0.96) !important;
  box-shadow: 0 6px 24px -16px rgba(31,25,17,0.18) !important;
}

.ftco_navbar .navbar-brand,
.ftco_navbar .brand-text,
.ftco-navbar-light .navbar-brand,
.ftco-navbar-light .navbar-brand span {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-weight: 500 !important;
  font-size: 30px !important;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-right: 0 !important;
}
.ftco_navbar .navbar-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  margin-right: 32px !important;
  padding: 0 !important;
}
.ftco_navbar .navbar-brand::after {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lx-gold);
  flex: 0 0 5px;
  align-self: center;
}

.ftco_navbar .nav-link,
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
  color: var(--lx-fg-soft) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  position: relative;
  background: transparent !important;
  transition: color var(--lx-fast) var(--lx-ease);
}
.ftco_navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 1px;
  background: var(--lx-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--lx-mid) var(--lx-ease);
}
.ftco_navbar .nav-link:hover,
.ftco_navbar .nav-item.active .nav-link,
.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover,
.ftco-navbar-light .navbar-nav > .nav-item.active > .nav-link {
  color: var(--lx-fg) !important;
  background: transparent !important;
}
.ftco_navbar .nav-link:hover::after,
.ftco_navbar .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.ftco_navbar .nav-cart .nav-link,
.ftco_navbar .cart-link,
.ftco_navbar li.nav-cart > a.cart-link.nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 14px !important;
  border: 1px solid var(--lx-border-2) !important;
  border-radius: 999px !important;
  background: #FFFFFF !important;
  color: var(--lx-fg) !important;
}
.ftco_navbar .nav-cart .nav-link::after { display: none !important; }
.ftco_navbar .nav-cart .nav-link:hover {
  border-color: var(--lx-gold) !important;
  background: var(--lx-blush) !important;
}
.cart-count, .cart-count-mobile {
  font-family: var(--lx-font-body);
  font-weight: 600 !important;
  font-size: 12px !important;
  color: var(--lx-sage) !important;
}
.cart-notification-badge {
  background: var(--lx-gold) !important;
  border: 2px solid var(--lx-bg) !important;
}

.navbar-toggler {
  border: 1px solid var(--lx-border-2) !important;
  border-radius: 999px !important;
  padding: 8px 14px !important;
  color: var(--lx-fg) !important;
}
.navbar-toggler .menu-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 6px;
  color: var(--lx-fg);
}
.cart-link-mobile {
  border: 1px solid var(--lx-border-2);
  border-radius: 999px;
  padding: 6px 12px !important;
  color: var(--lx-fg) !important;
}

/* ---------- Buttons ---------- */
.btn-custom,
.btn-primary,
a.btn-primary,
button.btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px !important;
  background: var(--lx-sage) !important;
  color: #FFFDF7 !important;
  font-family: var(--lx-font-body) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  border: 1px solid var(--lx-sage) !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  transition: background var(--lx-mid) var(--lx-ease),
              color var(--lx-mid) var(--lx-ease),
              transform var(--lx-mid) var(--lx-ease),
              box-shadow var(--lx-mid) var(--lx-ease);
  box-shadow: 0 6px 18px -10px rgba(47,74,63,0.5);
}
.btn-custom:hover,
.btn-custom:focus,
.btn-primary:hover {
  background: var(--lx-sage-deep) !important;
  color: var(--lx-gold-soft) !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -14px rgba(47,74,63,0.45);
}
.btn-custom::after {
  content: "→";
  font-family: var(--lx-font-body);
  font-size: 14px;
  letter-spacing: 0;
  transition: transform var(--lx-mid) var(--lx-ease);
}
.btn-custom:hover::after { transform: translateX(4px); }

.btn-outline,
a.btn-outline {
  background: transparent !important;
  color: var(--lx-fg) !important;
  border: 1px solid var(--lx-border-2) !important;
}
.btn-outline:hover {
  background: var(--lx-surface) !important;
  border-color: var(--lx-gold) !important;
  color: var(--lx-fg) !important;
}

/* ---------- Section heading ---------- */
.heading-section { color: var(--lx-fg); }
.heading-section .sub-heading,
.heading-section span.subheading,
.subheading {
  display: inline-block;
  font-family: var(--lx-font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lx-gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
}
.heading-section .sub-heading::before,
.heading-section span.subheading::before,
.subheading::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--lx-gold);
}
.heading-section h2,
.heading-section h2.mb-4 {
  font-size: clamp(2rem, 3.2vw, 2.6rem) !important;
  margin-bottom: 18px !important;
}
.heading-section p {
  color: var(--lx-muted) !important;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero,
#home-section.hero {
  position: relative;
  background:
    radial-gradient(circle at 18% 12%, rgba(184,153,104,0.07), transparent 60%),
    radial-gradient(circle at 88% 78%, rgba(47,74,63,0.06), transparent 55%),
    linear-gradient(180deg, #FCFAF5 0%, var(--lx-bg) 100%);
  padding-top: 0;
}

.home-slider,
.owl-carousel.home-slider {
  background: transparent !important;
  height: auto !important;
}

.home-slider .slider-item,
.owl-carousel.home-slider .slider-item {
  position: relative;
  min-height: 86vh;
  height: auto !important;
  padding: 0;
  display: flex;
  align-items: center;
  background: transparent !important;
  overflow: hidden;
}
.home-slider .slider-item .overlay {
  display: none !important;
}
.home-slider .slider-item .container-fluid {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 !important;
  min-height: 86vh;
}
.home-slider .slider-item .container-fluid > .row {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 86vh;
  align-items: center;
}

.home-slider .slider-item .row {
  flex-wrap: nowrap;
  gap: 0;
}

.home-slider .slider-item img.one-third,
.home-slider img.one-third,
.owl-carousel.home-slider .slider-item img.one-third {
  display: block;
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 86vh;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--lx-surface-2);
  z-index: 1;
  flex: none;
  filter: blur(1px);
  transform: scale(1.01);
}

.home-slider .slider-item .row > img.one-third { flex: none; }

.home-slider .slider-item .one-forth,
.owl-carousel.home-slider .slider-item .one-forth,
.one-forth {
  position: relative !important;
  z-index: 3;
  margin-left: auto;
  margin-right: 6%;
  padding: 0 !important;
  height: auto !important;
  width: 100% !important;
  max-width: 520px;
}

.home-slider .slider-item .text,
.owl-carousel.home-slider .slider-item .text {
  position: relative !important;
  transform: none !important;
  max-width: 480px;
  padding: 36px 38px !important;
  background: rgba(252, 250, 245, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-radius: var(--lx-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(30, 30, 30, 0.12);
}
.home-slider .slider-item .text .subheading {
  display: inline-block;
  font-family: var(--lx-font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
  color: var(--lx-gold-deep) !important;
  font-weight: 600 !important;
  margin-bottom: 22px !important;
  background: transparent;
  padding: 0 0 0 32px;
  border: 0;
  position: relative;
}
.home-slider .slider-item .text .subheading::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--lx-gold);
}

.home-slider .slider-item h1,
.owl-carousel.home-slider .slider-item h1 {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-weight: 500 !important;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 22px !important;
  text-transform: none !important;
}
.home-slider .slider-item p {
  color: var(--lx-muted) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  margin-bottom: 32px !important;
  max-width: 480px;
}

/* hero accent ornament */
.home-slider .slider-item::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 64px;
  background: linear-gradient(180deg, transparent, var(--lx-gold) 40%, transparent);
  opacity: 0.6;
  transform: translateX(-50%);
}

/* ---------- Services strip (top) ---------- */
.ftco-services {
  background: var(--lx-surface);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-lg);
  margin: -56px auto 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--lx-shadow);
  overflow: hidden;
}
.ftco-services > [class*="col-"] + [class*="col-"] {
  border-left: 1px solid var(--lx-border);
}
.media.block-6.services {
  padding: 38px 24px !important;
  background: transparent;
  text-align: center;
}
.media.block-6.services .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--lx-blush);
  color: var(--lx-gold-deep);
  font-size: 26px;
  margin: 0 auto 18px;
  border: 1px solid var(--lx-gold-soft);
  transition: transform var(--lx-mid) var(--lx-ease), background var(--lx-mid) var(--lx-ease);
}
.media.block-6.services:hover .icon {
  transform: translateY(-2px);
  background: var(--lx-surface-2);
}
.media.block-6.services .heading {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-size: 1.15rem !important;
  margin-bottom: 8px !important;
  font-weight: 500 !important;
}
.media.block-6.services p {
  color: var(--lx-muted) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .ftco-services { margin-top: 24px; }
  .ftco-services > [class*="col-"] + [class*="col-"] {
    border-left: 0;
    border-top: 1px solid var(--lx-border);
  }
}

/* ---------- Skincare products section ---------- */
.skincare-section {
  background:
    linear-gradient(180deg, var(--lx-bg) 0%, #F6EFE3 100%);
}
.skincare-section .heading-section h2 { margin-bottom: 14px !important; }
.skincare-section .heading-section p { margin: 0 auto 8px; }

/* tabs override */
.skincare-section .product-tabs-wrapper {
  border-bottom: 1px solid var(--lx-border) !important;
  padding-bottom: 0 !important;
  margin-bottom: 48px !important;
}
.skincare-section .product-tab-list {
  margin: 0 auto !important;
  justify-content: center;
  gap: 8px;
}
.skincare-section .product-tab-link {
  font-family: var(--lx-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--lx-muted) !important;
  padding: 16px 28px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.skincare-section .product-tab-link:hover {
  background: transparent !important;
  color: var(--lx-fg) !important;
}
.skincare-section .product-tab-link.active,
.skincare-section .product-tab-link[aria-selected="true"] {
  color: var(--lx-fg) !important;
  border-bottom: 2px solid var(--lx-gold) !important;
  font-weight: 700 !important;
}
.skincare-section .product-tab-link.active::after,
.skincare-section .product-tab-link[aria-selected="true"]::after {
  display: none !important;
}

/* product cards (generic targeting) */
.product,
.skincare-section .product,
.menu-entry .product {
  background: var(--lx-surface) !important;
  border: 1px solid var(--lx-border) !important;
  border-radius: var(--lx-radius) !important;
  overflow: hidden;
  transition: transform var(--lx-mid) var(--lx-ease),
              box-shadow var(--lx-mid) var(--lx-ease),
              border-color var(--lx-mid) var(--lx-ease);
  box-shadow: var(--lx-shadow-sm);
}
.product:hover,
.skincare-section .product:hover {
  transform: translateY(-4px);
  box-shadow: var(--lx-shadow-lg);
  border-color: var(--lx-gold-soft) !important;
}
.product .img-prod,
.product .img,
.product a.img {
  display: block;
  height: 280px;
  background-color: var(--lx-surface-2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product .img img,
.product .img-prod img {
  transition: transform var(--lx-slow) var(--lx-ease);
}
.product:hover .img img,
.product:hover .img-prod img { transform: scale(1.04); }

.product .text,
.product .text-inner {
  padding: 22px 22px 24px !important;
  text-align: left;
}
.product .text h3,
.product h3 {
  font-family: var(--lx-font-display) !important;
  font-size: 1.05rem !important;
  margin-bottom: 8px !important;
  font-weight: 500 !important;
  color: var(--lx-fg) !important;
}
.product .text h3 a,
.product h3 a { color: var(--lx-fg) !important; }
.product .price,
.product .pricing {
  font-family: var(--lx-font-body) !important;
  color: var(--lx-fg) !important;
  font-size: 16px;
  font-weight: 600;
  margin-top: 6px;
}
.product .price-dc,
.product .price del {
  color: var(--lx-muted-2) !important;
  font-size: 13px;
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}
.product .price-sale {
  color: var(--lx-sage) !important;
  font-weight: 600;
}
.product .icon { color: var(--lx-gold); }

.product .meta-product,
.product .product-tag,
.product .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--lx-sage);
  color: #FFFDF7;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

/* ---------- Deal of the month ---------- */
.ftco-deal {
  background:
    linear-gradient(135deg, var(--lx-sage-deep) 0%, var(--lx-sage) 60%, #38554a 100%) !important;
  color: #F2EAD8 !important;
  position: relative;
  overflow: hidden;
}
.ftco-deal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,194,154,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(216,194,154,0.10), transparent 45%);
  pointer-events: none;
}
.ftco-deal .container { position: relative; z-index: 1; }

.ftco-deal img.main-product-img {
  border-radius: var(--lx-radius-lg) !important;
  box-shadow: var(--lx-shadow-lg);
  border: 1px solid rgba(216,194,154,0.28);
}

.ftco-deal .heading-section .sub-heading,
.ftco-deal .heading-section span.sub-heading {
  color: var(--lx-gold-soft) !important;
}
.ftco-deal .heading-section .sub-heading::before {
  background: var(--lx-gold-soft) !important;
}
.ftco-deal .heading-section h2,
.ftco-deal h2,
.ftco-deal .text-deal h2 a {
  color: #FBF1DC !important;
}

.ftco-deal #timer {
  gap: 12px;
  margin: 28px 0 !important;
}
.ftco-deal #timer .time {
  flex: 1;
  background: rgba(255,253,248,0.06);
  border: 1px solid rgba(216,194,154,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--lx-radius);
  padding: 18px 8px;
  text-align: center;
  font-family: var(--lx-font-display) !important;
  font-size: 28px !important;
  font-weight: 500;
  color: #FBF1DC;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ftco-deal #timer .time span {
  font-family: var(--lx-font-body) !important;
  font-size: 10px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lx-gold-soft) !important;
  font-weight: 600;
}

.ftco-deal .text-deal .price {
  margin: 18px 0 22px !important;
}
.ftco-deal .text-deal .price .price-dc {
  color: rgba(216,194,154,0.6) !important;
  text-decoration: line-through;
  font-size: 16px;
  margin-right: 12px;
  font-weight: 400;
}
.ftco-deal .text-deal .price .price-sale {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-gold-soft) !important;
  font-size: 30px !important;
  font-weight: 600 !important;
}
.ftco-deal .text-deal .product-desc,
.ftco-deal p {
  color: rgba(242,234,216,0.78) !important;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
}

.ftco-deal .btn-custom {
  background: var(--lx-gold) !important;
  border-color: var(--lx-gold) !important;
  color: var(--lx-sage-deep) !important;
}
.ftco-deal .btn-custom:hover {
  background: var(--lx-gold-soft) !important;
  border-color: var(--lx-gold-soft) !important;
  color: var(--lx-sage-deep) !important;
}

.ftco-deal .thumb-deal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftco-deal .thumb-deal li.img {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(216,194,154,0.4);
  box-shadow: var(--lx-shadow);
}

/* ---------- Testimonials + side services ---------- */
.testimony-section {
  background: var(--lx-surface);
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
}

.services-flow {
  background: var(--lx-bg);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-lg);
  padding: 12px;
  display: grid;
  gap: 4px;
}
.services-flow .services-2 {
  background: var(--lx-surface);
  border: 1px solid transparent;
  border-radius: var(--lx-radius);
  padding: 22px !important;
  display: flex !important;
  align-items: center;
  gap: 18px;
  transition: border-color var(--lx-mid) var(--lx-ease), transform var(--lx-mid) var(--lx-ease);
}
.services-flow .services-2:hover {
  border-color: var(--lx-gold-soft);
  transform: translateY(-2px);
}
.services-flow .services-2 .icon {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lx-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--lx-gold-deep);
  border: 1px solid var(--lx-gold-soft);
}
.services-flow .services-2 .text h3 {
  font-family: var(--lx-font-display) !important;
  font-size: 1.05rem !important;
  margin-bottom: 4px !important;
  color: var(--lx-fg) !important;
  font-weight: 500;
}
.services-flow .services-2 .text p {
  color: var(--lx-muted) !important;
  font-size: 14px;
  margin: 0 !important;
  line-height: 1.55;
}

.carousel-testimony.owl-carousel { padding: 0; }
.testimony-wrap.no-image,
.testimony-wrap {
  background: var(--lx-bg);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-lg);
  padding: 38px 36px !important;
  position: relative;
  margin: 16px 6px;
  box-shadow: var(--lx-shadow-sm);
}
.testimony-wrap .quote-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--lx-sage);
  color: var(--lx-gold-soft);
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 18px;
}
.testimony-wrap .text p.line {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-size: 1.15rem !important;
  font-style: italic;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  margin-bottom: 22px !important;
}
.testimony-wrap .text .name {
  font-family: var(--lx-font-body) !important;
  color: var(--lx-fg) !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em;
}
.testimony-wrap .text .position {
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--lx-gold-deep) !important;
  font-weight: 600;
}

.owl-carousel .owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot span {
  background: var(--lx-border-2) !important;
  width: 8px !important;
  height: 8px !important;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--lx-gold) !important;
  transform: scale(1.3);
}

/* ---------- Footer ---------- */
.ftco-footer {
  background:
    linear-gradient(180deg, #14201B 0%, #0E1815 100%) !important;
  color: rgba(242,234,216,0.72) !important;
  padding: 80px 0 36px !important;
  border-top: 1px solid rgba(216,194,154,0.12);
}
.ftco-footer::before { display: none !important; }
.ftco-footer .ftco-footer-widget h2,
.ftco-footer .ftco-heading-2 {
  font-family: var(--lx-font-display) !important;
  color: #FBF1DC !important;
  font-size: 1.35rem !important;
  margin-bottom: 22px !important;
  font-weight: 500 !important;
}
.ftco-footer p,
.ftco-footer ul li,
.ftco-footer ul li a,
.ftco-footer .block-23 ul li,
.ftco-footer .block-23 ul li a {
  color: rgba(242,234,216,0.66) !important;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none !important;
}
.ftco-footer ul li a {
  transition: color var(--lx-fast) var(--lx-ease);
}
.ftco-footer ul li a:hover {
  color: var(--lx-gold-soft) !important;
}
.ftco-footer .ftco-footer-social li a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216,194,154,0.08);
  border: 1px solid rgba(216,194,154,0.22);
  color: var(--lx-gold-soft) !important;
  margin-right: 8px;
  transition: background var(--lx-mid) var(--lx-ease), transform var(--lx-mid) var(--lx-ease);
}
.ftco-footer .ftco-footer-social li a:hover {
  background: var(--lx-gold);
  color: var(--lx-sage-deep) !important;
  transform: translateY(-2px);
}
.ftco-footer .block-23 .icon {
  color: var(--lx-gold-soft) !important;
  margin-right: 8px;
}
.ftco-footer .row:last-child p {
  border-top: 1px solid rgba(216,194,154,0.12);
  padding-top: 28px;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,234,216,0.45) !important;
}
.ftco-footer .mouse-icon {
  border-color: rgba(216,194,154,0.28) !important;
}
.ftco-footer .mouse-wheel {
  background: var(--lx-gold-soft) !important;
}

/* ---------- Loader ---------- */
#ftco-loader.show {
  background: var(--lx-bg) !important;
}
#ftco-loader .path { stroke: var(--lx-gold) !important; }
#ftco-loader .path-bg { stroke: var(--lx-border) !important; }

/* ---------- Generic page hero (other pages) ---------- */
.hero-wrap.hero-bread {
  background-color: var(--lx-surface-2) !important;
  position: relative;
}
.hero-wrap.hero-bread::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,246,240,0.5), rgba(250,246,240,0.85));
}
.hero-wrap.hero-bread .slider-text { position: relative; z-index: 2; }
.hero-wrap.hero-bread .bread {
  font-family: var(--lx-font-display) !important;
  color: var(--lx-fg) !important;
  font-weight: 500 !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
}
.hero-wrap.hero-bread .breadcrumbs,
.hero-wrap.hero-bread .breadcrumbs span,
.hero-wrap.hero-bread .breadcrumbs span a {
  color: var(--lx-muted) !important;
  font-size: 12px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Forms ---------- */
.form-control,
input.form-control,
textarea.form-control,
select.form-control {
  background: var(--lx-surface) !important;
  border: 1px solid var(--lx-border) !important;
  border-radius: var(--lx-radius-sm) !important;
  height: 52px;
  padding: 0 18px !important;
  font-family: var(--lx-font-body) !important;
  font-size: 15px !important;
  color: var(--lx-fg) !important;
  transition: border-color var(--lx-fast) var(--lx-ease), box-shadow var(--lx-fast) var(--lx-ease);
}
textarea.form-control { height: auto; padding: 14px 18px !important; }
.form-control:focus {
  border-color: var(--lx-gold) !important;
  box-shadow: 0 0 0 4px rgba(184,153,104,0.15) !important;
  outline: none !important;
}
label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lx-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ---------- Tables / cart ---------- */
.cart-list .table thead th {
  background: var(--lx-surface-2) !important;
  border: 0 !important;
  color: var(--lx-fg) !important;
  font-family: var(--lx-font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700 !important;
  padding: 18px !important;
}
.cart-list .table td {
  border-color: var(--lx-border) !important;
  vertical-align: middle !important;
  background: var(--lx-surface) !important;
}

/* ---------- Misc utility overrides ---------- */
.bg-light, .bg-white { background: var(--lx-surface) !important; }
.text-primary { color: var(--lx-sage) !important; }
.shadow, .shadow-sm { box-shadow: var(--lx-shadow) !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   MOBILE — phone-first polish (most customers on phone)
   Breakpoints: 991 (tablet), 767 (small tablet), 575 (phone), 380 (tiny)
   ========================================================================= */

/* ---- Tablet & below (≤991px) ---- */
@media (max-width: 991px) {
  .ftco-section { padding: 4rem 0; }
  .home-slider .slider-item,
  .owl-carousel.home-slider .slider-item {
    min-height: 75vh;
    padding: 0;
  }
  .home-slider .slider-item .container-fluid,
  .home-slider .slider-item .container-fluid > .row {
    min-height: 75vh;
  }
  .home-slider .slider-item .row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0;
    text-align: left;
    padding: 0;
  }
  .home-slider .slider-item .one-forth,
  .home-slider .slider-item .row > .one-forth {
    margin: 0 auto;
    max-width: 460px;
    padding: 0 20px;
  }
  .home-slider .slider-item .text {
    margin: 0 auto;
    max-width: 100%;
    padding: 28px 24px !important;
  }
  .home-slider .slider-item img.one-third,
  .home-slider .slider-item .row > img.one-third {
    min-height: 75vh;
  }
  .home-slider .slider-item .text .subheading {
    padding-left: 0 !important;
  }
  .home-slider .slider-item .text .subheading::before { display: none; }
  .home-slider .slider-item p { margin-left: auto; margin-right: auto; }

  .ftco_navbar { padding: 10px 0 !important; }
  .ftco_navbar .navbar-brand { font-size: 22px !important; }
  .navbar-collapse {
    background: var(--lx-surface);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius);
    margin-top: 14px;
    padding: 8px;
  }
  .ftco_navbar .nav-link {
    padding: 14px 16px !important;
    font-size: 13px !important;
    border-bottom: 1px solid var(--lx-border) !important;
  }
  .ftco_navbar .navbar-nav > li:last-child .nav-link { border-bottom: 0 !important; }
  .ftco_navbar .nav-link::after { display: none !important; }
  .ftco_navbar .nav-cart .nav-link,
  .ftco_navbar .cart-link {
    border: 0 !important;
    background: transparent !important;
  }
  .ftco_navbar .nav-cart { display: none !important; } /* mobile cart already in header */

  /* Service strip: stack with full-width tiles, less tall */
  .ftco-services {
    margin: -36px 16px 0 !important;
    border-radius: var(--lx-radius);
  }
  .ftco-services > [class*="col-"] + [class*="col-"] {
    border-left: 0;
    border-top: 1px solid var(--lx-border);
  }
  .media.block-6.services { padding: 24px 18px !important; }
  .media.block-6.services .icon {
    width: 52px; height: 52px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  /* Side-by-side testimonials section: stack */
  .testimony-section .col-lg-5 + .col-lg-7 { margin-top: 36px; }
  .services-flow { padding: 8px; }
  .services-flow .services-2 { padding: 16px !important; gap: 14px; }
  .services-flow .services-2 .icon { flex: 0 0 48px; width: 48px; height: 48px; font-size: 22px; }

  /* Deal — image above text, smaller */
  .ftco-deal img.main-product-img { max-width: 84%; margin: 0 auto; display: block; }

  /* Footer: tighter */
  .ftco-footer { padding: 60px 0 28px !important; }
  .ftco-footer .ftco-footer-widget { margin-bottom: 28px !important; }
  .ftco-footer .ftco-footer-widget.ml-md-5 { margin-left: 0 !important; }
}

/* ---- Top-bar: condense on phone ---- */
@media (max-width: 767px) {
  .top-bar {
    padding: 8px 0 !important;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
  .top-bar .row { justify-content: center; }
  .top-bar .col-md-4 {
    text-align: center;
    justify-content: center;
    margin: 2px 0;
  }
  .top-bar-item { display: flex; justify-content: center; align-items: center; gap: 6px; }
  .top-bar .top-bar-item:not(.top-bar-delivery) { display: none !important; }
  .top-bar-delivery { width: 100%; }
}

/* ---- Phone (≤575px) ---- */
@media (max-width: 575px) {
  body { font-size: 15px; }
  .ftco-section { padding: 3rem 0; }
  .container { padding-left: 18px; padding-right: 18px; }

  /* Section heading on phone */
  .heading-section h2,
  .heading-section h2.mb-4 { font-size: 1.7rem !important; }
  .heading-section .sub-heading,
  .heading-section span.subheading,
  .subheading { font-size: 10px; letter-spacing: 0.26em; padding-left: 26px; }
  .heading-section p { font-size: 14px; padding: 0 4px; }

  /* Hero — keep readable, no overflow */
  .home-slider .slider-item,
  .owl-carousel.home-slider .slider-item { padding: 0; min-height: 70vh; }
  .home-slider .slider-item .container-fluid,
  .home-slider .slider-item .container-fluid > .row { min-height: 70vh; }
  .home-slider .slider-item h1 {
    font-size: clamp(1.5rem, 6.5vw, 1.9rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  .home-slider .slider-item p {
    font-size: 13px !important;
    margin-bottom: 18px !important;
    padding: 0;
  }
  .home-slider .slider-item img.one-third {
    min-height: 70vh;
    border-radius: 0;
  }
  .home-slider .slider-item .one-forth,
  .home-slider .slider-item .row > .one-forth {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 100%;
  }
  .home-slider .slider-item .text {
    padding: 22px 18px !important;
    text-align: center;
  }

  /* Buttons — full-width, ≥48px tap */
  .btn-custom,
  .btn-primary,
  a.btn-primary {
    width: 100%;
    max-width: 360px;
    height: 50px;
    padding: 0 22px !important;
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
  }
  .home-slider .slider-item .btn-custom { margin: 0 auto; }

  /* Navbar mobile controls — bigger tap targets */
  .navbar-toggler {
    padding: 10px 14px !important;
    min-height: 44px;
  }
  .cart-link-mobile {
    padding: 8px 12px !important;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
  }
  .cart-link-mobile .icon-shopping_cart { font-size: 18px; }
  .cart-count-mobile { font-size: 12px !important; }
  .ftco_navbar .navbar-brand { font-size: 20px !important; }

  /* Services strip — single column comfortable */
  .ftco-services { margin: 24px 14px 0 !important; }
  .media.block-6.services { padding: 20px 16px !important; }
  .media.block-6.services .heading { font-size: 1rem !important; }
  .media.block-6.services p { font-size: 13px; }

  /* Product tabs — fit two side-by-side cleanly */
  .skincare-section .product-tab-list { width: 100%; gap: 4px; }
  .skincare-section .product-tab-item { flex: 1; }
  .skincare-section .product-tab-link {
    padding: 14px 12px !important;
    width: 100%;
    text-align: center;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
  }

  /* Product cards on phone — keep compact */
  .product .img,
  .product .img-prod,
  .product a.img { height: 220px; }
  .product .text,
  .product .text-inner { padding: 16px 16px 18px !important; }
  .product .text h3,
  .product h3 { font-size: 1rem !important; }

  /* Deal — countdown becomes 2×2 grid */
  .ftco-deal { padding: 3.5rem 0 !important; }
  .ftco-deal .col-md-6.pl-md-5 { padding-left: 16px !important; padding-right: 16px !important; }
  .ftco-deal img.main-product-img { max-width: 100%; }
  .ftco-deal #timer {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    margin: 22px 0 !important;
  }
  .ftco-deal #timer .time {
    padding: 14px 6px;
    font-size: 22px !important;
    border-radius: var(--lx-radius-sm);
  }
  .ftco-deal #timer .time span { font-size: 9px !important; letter-spacing: 0.18em; }
  .ftco-deal .text-deal .price .price-sale { font-size: 24px !important; }
  .ftco-deal .text-deal .product-desc { font-size: 14px; }
  .ftco-deal .d-flex.align-items-center {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px;
  }
  .ftco-deal .thumb-deal { margin: 0 auto !important; justify-content: center; }
  .ftco-deal .thumb-deal li.img { width: 56px; height: 56px; }

  /* Testimonials */
  .testimony-section .col-lg-5 + .col-lg-7 { margin-top: 24px; }
  .testimony-wrap,
  .testimony-wrap.no-image { padding: 26px 22px !important; margin: 12px 4px; border-radius: var(--lx-radius); }
  .testimony-wrap .text p.line { font-size: 1.02rem !important; }

  /* Forms — touch-friendly */
  .form-control,
  input.form-control,
  textarea.form-control,
  select.form-control {
    height: 50px;
    font-size: 16px !important; /* prevent iOS auto-zoom */
  }
  textarea.form-control { min-height: 130px; }

  /* Footer */
  .ftco-footer { padding: 48px 0 22px !important; }
  .ftco-footer .ftco-footer-widget h2,
  .ftco-footer .ftco-heading-2 { font-size: 1.1rem !important; margin-bottom: 14px !important; }
  .ftco-footer p, .ftco-footer ul li, .ftco-footer ul li a { font-size: 13px !important; }
  .ftco-footer .ftco-footer-social li a { width: 38px; height: 38px; }
  .ftco-footer .row:last-child p { font-size: 11px !important; padding-top: 22px; margin-top: 28px; }
}

/* ---- Tiny phones (≤380px) ---- */
@media (max-width: 380px) {
  .home-slider .slider-item h1 { font-size: 1.55rem !important; }
  .ftco_navbar .navbar-brand { font-size: 19px !important; }
  .navbar-toggler .menu-text { display: none; } /* icon only on tiny */
  .ftco-services { margin: 20px 10px 0 !important; }
  .ftco-deal #timer .time { padding: 12px 4px; font-size: 20px !important; }
  .product .img,
  .product .img-prod,
  .product a.img { height: 200px; }
}

/* ---- Landscape phone — keep hero tight ---- */
@media (max-width: 900px) and (orientation: landscape) {
  .home-slider .slider-item,
  .owl-carousel.home-slider .slider-item { padding: 16px 0; min-height: 90vh; }
  .home-slider .slider-item img.one-third { max-width: 100%; min-height: 86vh; }
  .home-slider .slider-item .row { flex-direction: row !important; text-align: left; gap: 0; }
  .home-slider .slider-item .text { margin: 0; padding: 22px 24px !important; }
  .home-slider .slider-item .text .subheading { padding-left: 32px !important; }
  .home-slider .slider-item .text .subheading::before { display: block; }
}
