/* ==========================================================================
   Project Guidelines - Skin Care Storefront Stylesheet
   Designed under "دستور العمل" - 100% Local, Clean & Component-Based
   Aesthetic Reference: Wpbingo Aenyo Home 4 Skincare Portal
   ========================================================================== */

/* 1. Local Fonts Declaration */
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/tajawal/tajawal-v12-arabic_latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/tajawal/tajawal-v12-arabic_latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/inter/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/inter/inter-700.woff2') format('woff2');
}

/* 2. Theme & Bi-directional Token System (Aenyo Organic Palette) */
html[dir="ltr"] {
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  /* Luxury serif for headings */
}

html[dir="rtl"] {
  --font-primary: 'Tajawal', system-ui, -apple-system, sans-serif;
  --font-serif: 'Tajawal', system-ui, -apple-system, sans-serif;
  /* Respect guidelines */
}

:root[data-theme="light"] {
  /* Organic Beige & Creamy Canvas */
  --bg-app: #FAF8F5;
  --bg-surface: #ffffff;
  --bg-surface-glass: rgba(250, 248, 245, 0.8);
  --border-surface: rgba(0, 0, 0, 0.05);

  /* Text and Accents */
  --text-main: #222222;
  --text-muted: #6f7c70;
  --primary-color: #4A6B53;
  /* Sage Green */
  --primary-gradient: linear-gradient(135deg, #4A6B53, #6F8E78);
  --accent-color: #D4C5B9;
  /* Linen Beige Accent */

  /* Soft Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 107, 83, 0.03);
  --shadow-md: 0 8px 24px rgba(74, 107, 83, 0.06);
  --shadow-lg: 0 16px 40px rgba(74, 107, 83, 0.1);

  /* Functional Colors */
  --skeleton-bg: #EAE5DD;
  --skeleton-highlight: #FAF8F5;
  --badge-success-bg: rgba(74, 107, 83, 0.1);
  --badge-success-color: #4A6B53;
  --badge-warning-bg: rgba(212, 197, 185, 0.2);
  --badge-warning-color: #a0816b;

  /* Slider Background Elements */
  --slider-bg: linear-gradient(135deg, #FAF6F0 0%, #EFEBE4 100%);
  --slider-subtitle: #4A6B53;
}

:root[data-theme="dark"] {
  /* Sleek Obsidian Charcoal */
  --bg-app: #0C0F16;
  --bg-surface: #141923;
  --bg-surface-glass: rgba(12, 15, 22, 0.8);
  --border-surface: rgba(255, 255, 255, 0.06);

  /* Text and Accents */
  --text-main: #F7F5F2;
  --text-muted: #8e98a8;
  --primary-color: #8EA593;
  /* Muted Sage for Dark Mode */
  --primary-gradient: linear-gradient(135deg, #8EA593, #AAC4B0);
  --accent-color: #EADCD0;

  /* Dark Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);

  /* Functional Colors */
  --skeleton-bg: #1f2937;
  --skeleton-highlight: #374151;
  --badge-success-bg: rgba(142, 165, 147, 0.15);
  --badge-success-color: #8EA593;
  --badge-warning-bg: rgba(234, 220, 208, 0.15);
  --badge-warning-color: #eadcd0;

  /* Slider Background Elements */
  --slider-bg: linear-gradient(135deg, #0e121b 0%, #151b27 100%);
  --slider-subtitle: #8EA593;
}

/* 3. Base Styles */
html,
body {
  background-color: var(--bg-app);
}

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* Global Dark/Light Theme Utility Overrides */
.text-muted {
  color: var(--text-muted) !important;
}

.bg-surface {
  background-color: var(--bg-surface) !important;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sleek, Narrow Premium Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  /* Extremely narrow vertical scrollbar */
  height: 5px;
  /* Narrow horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;
  /* Invisible transparent track for premium floating aesthetic */
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  /* Premium Sage Green scrollbar thumb */
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-main);
  /* Dark active hover state */
}

/* Firefox Support */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

/* Text Gradients */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text Alignments logical property mappings */
.text-sm {
  font-size: 0.8rem;
}

.tracking-wide {
  letter-spacing: 0.15em;
}

/* ==========================================================================
   Professional Section Spacing — guaranteed gaps between sections
   Uses margin-top on each section for reliable cross-browser spacing.
   ========================================================================== */
main.main-body-layout .lookbook-section,
main.main-body-layout .reviews-section,
main.main-body-layout .newsletter-section {
  margin-top: 6rem !important;
}

main.main-body-layout .new-arrivals-section {
  margin-bottom: 6rem !important;
}

/* 4. Glassmorphism Scroll-Responsive Header */
.navbar-care {
  position: fixed;
  /* Set to fixed always to ensure smooth, non-snapping sticky scroll behavior */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 0.6rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Class applied on scroll */
.navbar-care.scrolled {
  background-color: var(--bg-surface) !important;
  /* Solid background — no blur to avoid GPU repaint on every scroll frame */
  border-bottom: 1px solid var(--border-surface);
  padding: 0.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* Brand Title Logo (Luxury Minimalist Shila style) */
.brand-title {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main) !important;
  font-size: 1.4rem;
  transition: all 0.3s;
}

.shila-brand {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  max-height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 20%;
  background-color: #ffffff;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.navbar-care.scrolled .brand-logo-img {
  height: 38px;
  max-height: 38px;
  width: 38px;
  padding: 3px;
}

.shila-logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(255, 46, 147, 0.25));
  animation: floatLogo 3s ease-in-out infinite;
}

.shila-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  font-size: 1.25rem !important;
  text-transform: uppercase !important;
  color: var(--text-main) !important;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) rotate(4deg);
  }
}

/* Navigation Link styling */
.navbar-care .nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main) !important;
  position: relative;
  padding: 0.5rem 0 !important;
  transition: opacity 0.3s ease;
}

.navbar-care .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-care .nav-link:hover::after,
.navbar-care .nav-link.active::after {
  width: 100%;
}

.navbar-care .nav-link:hover {
  opacity: 0.8;
}

.nav-chevron {
  font-size: 0.55rem;
  margin-inline-start: 3px;
  opacity: 0.6;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.navbar-nav .nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary-color);
}

/* Mobile Toggle Hamburger Reset (Clean, Borderless with organic micro-interaction) */
.mobile-menu-toggle {
  background: transparent !important;
  border: none !important;
  color: var(--text-main) !important;
  padding: 0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none !important;
  box-shadow: none !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  color: var(--primary-color) !important;
  background-color: var(--border-surface) !important;
  /* Elegant circular glow background on hover */
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* Generous, premium gap to ensure zero overlapping of badges or switcher text */
}

.header-action-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.2rem;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}

.header-action-btn:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* Premium Action Badges with Logical Positioning */
.badge-count {
  position: absolute;
  top: -6px;
  inset-inline-end: -8px;
  /* Places it on the right in LTR, and on the left in RTL! */
  width: 18px;
  height: 18px;
  color: #ffffff !important;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-surface) !important;
  /* Premium adaptive border outline */
  line-height: 1;
  z-index: 10;
  transform-origin: center;
}

/* Badge bump animation — triggered via JS class toggle */
@keyframes cartBadgeBump {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.55);
    box-shadow: 0 0 0 4px rgba(74, 107, 83, 0.25);
  }

  50% {
    transform: scale(0.9);
  }

  75% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.cart-badge-bump {
  animation: cartBadgeBump 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

/* Color definitions to match HTML classes */
.bg-accent {
  background-color: #D27E5F !important;
  /* Beautiful brand Terracotta Coral */
}

.bg-primary-sage {
  background-color: #4A6B53 !important;
  /* Elegant Sage Green */
}

html[data-theme="dark"] .bg-primary-sage {
  background-color: #8EA593 !important;
  /* Muted Sage for dark theme */
}



/* Theme Switcher and switcher toggles */
.btn-theme-toggle {
  background: transparent;
  border: 1px solid var(--border-surface);
  color: var(--text-main);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-theme-toggle:hover {
  background-color: var(--border-surface);
  transform: rotate(15deg);
}

/* Premium Pill Language Switcher */
.lang-switcher-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(74, 107, 83, 0.06);
  /* Soft Sage-tinted background */
  border-radius: 30px;
  padding: 3px;
  border: 1px solid rgba(74, 107, 83, 0.1);
  gap: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] .lang-switcher-pill {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.lang-btn-option {
  background: transparent;
  border: none;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.lang-btn-option:hover {
  color: var(--text-main);
}

.lang-btn-option.active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(74, 107, 83, 0.12);
}

html[data-theme="dark"] .lang-btn-option.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 5. Off-Canvas Sliding Drawers (Aenyo Style drawers) */

/* Backdrop overlay — simple dark tint, NO blur (blur kills GPU performance) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s linear;
}

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

/* General Drawer Shell — transform-only animation for 60fps */
.off-canvas-drawer {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 340px;
  max-width: 90vw;
  background-color: var(--bg-surface);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transition: transform 0.15s ease-out, visibility 0s linear 0.15s;
}

/* Directional translation configurations for LTR / RTL */

/* 1. Mobile Menu Drawer (Slides from Left in LTR, Right in RTL) */
html[dir="ltr"] .mobile-menu-drawer {
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
}

html[dir="rtl"] .mobile-menu-drawer {
  right: 0;
  transform: translateX(100%);
  will-change: transform;
}

.mobile-menu-drawer.open {
  transform: translateX(0) !important;
  visibility: visible !important;
  transition: transform 0.15s ease-out, visibility 0s linear 0s;
}

/* 2. Cart Drawer (Slides from Right in LTR, Left in RTL) */
html[dir="ltr"] .cart-drawer {
  right: 0;
  transform: translateX(100%);
  will-change: transform;
}

html[dir="rtl"] .cart-drawer {
  left: 0;
  transform: translateX(-100%);
  will-change: transform;
}

.cart-drawer.open {
  transform: translateX(0) !important;
  visibility: visible !important;
  transition: transform 0.15s ease-out, visibility 0s linear 0s;
}



/* Drawer Internal layout */
.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: var(--text-main);
}

.btn-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-drawer-close:hover {
  opacity: 0.6;
}

.drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 0;
}

/* Mobile menu list styling */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid var(--border-surface);
}

.mobile-menu-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.8rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a.active {
  background-color: var(--border-surface);
  color: var(--primary-color);
}

.arrow-direction {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

html[dir="ltr"] .arrow-direction {
  transform: rotate(180deg);
}

.drawer-footer-action {
  padding: 1.5rem 1.8rem;
  margin-top: auto;
}

.btn-login-reg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-surface);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-login-reg:hover {
  background-color: var(--border-surface);
}

/* Cart drawer styling */

/* ── Inner wrapper: fills the aside, flex-column so footer pins to bottom ── */
.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ── Empty state ── */
.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.cart-empty-text {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.btn-shop-all {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 1.5px solid var(--text-main);
  color: var(--text-main);
  background-color: transparent;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-shop-all:hover {
  background-color: var(--text-main);
  color: var(--bg-surface);
}

/* ── Scrollable items list — grows to fill available space ── */
.cart-items-list {
  flex: 1 1 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 1.25rem;
  /* Custom thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--border-surface) transparent;
}

.cart-items-list::-webkit-scrollbar {
  width: 4px;
}

.cart-items-list::-webkit-scrollbar-thumb {
  background-color: var(--border-surface);
  border-radius: 4px;
}

/* ── Single cart item row ── */
.cart-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-surface);
}

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-surface);
  flex-shrink: 0;
}

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-subtotal {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.1rem;
}

.cart-item-unit-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #e53935;
}

/* ── Sticky footer — never scrolls, always visible ── */
.cart-drawer-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border-surface);
  padding: 1rem 1.25rem 1.25rem;
  background-color: var(--bg-surface);
}

.cart-footer-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-surface);
}

.cart-footer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.total-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.total-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-footer-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.btn-checkout-lux {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background-color: #111;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s;
}

.btn-checkout-lux:hover {
  background-color: #333;
  color: #fff;
}


/* 6. Premium Organic Hero Fade-Carousel Slider */
.hero-slider-section {
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  /* Elegant offset to push content perfectly below the absolute transparent header */
  background: var(--slider-bg);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

/* Text Column styling and animations */
.hero-text-col {
  z-index: 5;
  padding-bottom: 2rem;
}

html[dir="rtl"] .hero-text-col {
  text-align: right;
}

html[dir="ltr"] .hero-text-col {
  text-align: left;
}

.slide-subtitle {
  display: inline-block;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--slider-subtitle);
}

.slide-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  margin-bottom: 1.5rem !important;
}

.slide-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.2rem !important;
}

/* Outlined slide CTA button */
.btn-slide-cta {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  background-color: transparent;
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.35s ease;
  border-radius: 4px;
}

.btn-slide-cta:hover {
  background-color: var(--text-main);
  color: var(--bg-surface);
  transform: translateY(-2px);
}

/* Slide Image styling */
.hero-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

/* Water Droplet Background pseudo-element sitting behind the floating product cutout */
.hero-img-col::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 55vh, 620px);
  /* Enlarged droplet size */
  height: clamp(340px, 55vh, 620px);
  /* Enlarged droplet size */
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  /* Liquid organic base shape */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 20px 50px rgba(74, 107, 83, 0.08),
    inset 0 25px 25px rgba(255, 255, 255, 0.7),
    /* top liquid reflection */
    inset 0 -25px 25px rgba(212, 197, 185, 0.2),
    /* bottom shadow */
    inset 0 0 50px rgba(255, 255, 255, 0.4);
  /* water sheen */
  animation: liquidMorph 10s ease-in-out infinite;
  z-index: 1;
  /* behind slide-image */
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Floating product image sitting on top, clipped into the morphing watery droplet shape in perfect sync with the background */
.slide-image {
  width: clamp(340px, 55vh, 620px);
  /* Enlarged product image size matching droplet */
  height: clamp(340px, 55vh, 620px);
  /* Enlarged product image size matching droplet */
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  /* Liquid organic shape for all slide images to completely hide square backgrounds */
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
  animation: floatImage 6s ease-in-out infinite, liquidMorph 10s ease-in-out infinite;
  /* Synced with background droplet morphing */
  mix-blend-mode: normal !important;
  /* Keep the beautiful render colors vibrant and sharp on all slides */
  transition: all 0.4s ease;
  z-index: 2;
  /* sits on top of droplet background */
  position: relative;
}

/* Dark theme overrides for product cutout rendering */
html[data-theme="dark"] .hero-img-col::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 25px 25px rgba(255, 255, 255, 0.15),
    inset 0 -25px 25px rgba(0, 0, 0, 0.3),
    inset 0 0 50px rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .slide-image {
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.08));
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes liquidMorph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Entry transitions for active slide contents */
.carousel-item .slide-subtitle,
.carousel-item .slide-title,
.carousel-item .slide-desc,
.carousel-item .btn-slide-cta,
.carousel-item .slide-image {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item .slide-image {
  transform: scale(0.9) translateY(0);
}

/* Water droplet smooth entry synchronization */
.carousel-item .hero-img-col::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item.active .hero-img-col::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.3s;
}

.carousel-item.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.carousel-item.active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.carousel-item.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.carousel-item.active .btn-slide-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.carousel-item.active .slide-image {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0.5s;
}

/* Custom Dots Pagination (Indicators) */
.carousel-indicators-custom {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 15;
  margin: 0;
  /* Reset Bootstrap margin */
}

.carousel-indicators.carousel-indicators-custom button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  border: none !important;
  background-color: var(--text-muted) !important;
  opacity: 0.4 !important;
  padding: 0 !important;
  cursor: pointer;
  transition: all 0.3s;
  text-indent: 0 !important;
  /* Reset Bootstrap text-indent */
}

.carousel-indicators.carousel-indicators-custom button.active {
  background-color: var(--primary-color) !important;
  opacity: 1 !important;
  transform: scale(1.3);
}

/* Custom Nav Arrows positioned center sides (Chevron style matching Aenyo) */
.carousel-control-prev-custom,
.carousel-control-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 60px;
  background: transparent;
  border: none;
  color: var(--text-main);
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
  opacity: 0.95;
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.25);
}

.arrow-icon {
  font-size: 2.2rem;
  font-weight: 100;
}

/* Floating Luxury Terracotta NEW Circle Badge */
.slide-badge-new {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: #D26E3B;
  /* Exact Terracotta matching screenshot */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 6;
  box-shadow: 0 10px 24px rgba(210, 110, 59, 0.25);
  animation: pulseBadge 3.5s ease-in-out infinite;
}

/* Bi-directional Badge Positions overlapping the product hand cutout */
html[dir="ltr"] .slide-badge-new {
  bottom: 20%;
  left: 8%;
}

html[dir="rtl"] .slide-badge-new {
  bottom: 20%;
  right: 8%;
}

@keyframes pulseBadge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* Arrow placements dynamic for RTL / LTR */
html[dir="ltr"] .carousel-control-prev-custom {
  left: 30px;
}

html[dir="ltr"] .carousel-control-next-custom {
  right: 30px;
}

html[dir="rtl"] .carousel-control-prev-custom {
  right: 30px;
}

html[dir="rtl"] .carousel-control-next-custom {
  left: 30px;
}

/* Flip the chevron arrows in RTL so they point the correct logical way! */
html[dir="rtl"] .carousel-control-prev-custom .arrow-icon,
html[dir="rtl"] .carousel-control-next-custom .arrow-icon {
  transform: rotate(180deg);
}


/* 7. Organic Category Grid */
.category-card-skin {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-surface);
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.category-card-skin:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.cat-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: all 0.3s;
}

.bg-sage-soft {
  background-color: rgba(74, 107, 83, 0.06);
}

.category-card-skin:hover .cat-icon-box {
  background-color: var(--primary-color);
  color: #fff;
}

.category-card-skin h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-main);
}

/* 8. Utility Helper Classes */
.text-sage {
  color: var(--primary-color) !important;
}

/* 9. Mobile Sticky Bottom Navigation Bar (Floating menu) */
.sticky-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--bg-surface);
  /* Solid bg — no blur on fixed bottom nav (GPU repaint on every scroll) */
  border-top: 1px solid var(--border-surface);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.sticky-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.25rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  background: transparent;
}

.sticky-nav-item i {
  font-size: 1.3rem;
}

.sticky-nav-item:hover,
.sticky-nav-item.active {
  opacity: 1;
  color: var(--primary-color);
}

.sticky-nav-item .badge-count {
  top: 0px;
  inset-inline-end: 22px;
}

/* Body margin adjustments for mobile sticky bar */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 74px;
    /* Ensure main body content doesn't get cut by bottom bar */
  }
}

/* 10. Toast System (Top Banner Toast - Ultra Premium Glassmorphism) */
.toast-container-care {
  position: fixed;
  top: 70px;
  /* Safely below the main navbar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  pointer-events: none;
}

.toast-care {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 50px !important;
  padding: 0.8rem 2.2rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.9rem !important;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: max-content !important;
  max-width: 100% !important;
  pointer-events: auto !important;
  transition: all 0.3s ease !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  color: var(--text-main) !important;
}

/* Dark mode compatibility */
html[data-theme="dark"] .toast-care {
  background: rgba(30, 41, 34, 0.85) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.toast-success-lux {
  border: 1px solid rgba(74, 107, 83, 0.25) !important;
  box-shadow: 0 10px 30px -5px rgba(74, 107, 83, 0.22), 0 4px 12px rgba(74, 107, 83, 0.06) !important;
}

.toast-error-lux {
  border: 1px solid rgba(210, 126, 95, 0.25) !important;
  box-shadow: 0 10px 30px -5px rgba(210, 126, 95, 0.22), 0 4px 12px rgba(210, 126, 95, 0.06) !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 11. Custom General Layout Helpers & Breakpoint Media Queries */

/* Slide content responsiveness */
@media (max-width: 991.98px) {
  .hero-slider-section {
    height: auto;
    min-height: 100vh;
    /* Luxury full viewport experience on mobile too! */
    padding-top: 120px;
    /* Increased padding to completely clear absolute header on mobile */
    padding-bottom: 90px !important;
    /* Elegant spacing to clear dots from CTA button */
  }

  .carousel-indicators-custom {
    bottom: 24px !important;
    /* Move indicators higher on small viewports to look neat and clean */
  }

  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item,
  .hero-slider-section .container,
  .hero-slider-section .carousel-item .row {
    height: auto !important;
  }

  .hero-slider-section .carousel-item .row {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-text-col {
    text-align: center !important;
    padding-top: 1rem;
    padding-bottom: 4rem !important;
    /* Pushes the CTA button up to create generous breathing space for the indicators dots */
  }

  .slide-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .slide-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    /* Beautifully responsive mobile sizing */
  }

  .hero-img-col {
    height: auto !important;
    min-height: clamp(260px, 45vh, 360px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding-top: 2rem !important;
    /* Spacious offset to separate the top image from the absolute navbar on mobile */
    padding-bottom: 1.5rem !important;
  }

  .hero-img-col::before {
    width: clamp(260px, 45vh, 360px);
    height: clamp(260px, 45vh, 360px);
  }

  .slide-image {
    width: clamp(260px, 45vh, 360px);
    height: clamp(260px, 45vh, 360px);
  }

  /* Slide images inherit morphing liquid droplet border-radius from desktop styling */
  .navbar-care {
    padding: 0.8rem 1rem;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar-care.scrolled {
    padding: 0.8rem 1rem;
    background-color: var(--bg-surface) !important;
    /* Solid premium white background when scrolling on mobile */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-surface);
    box-shadow: var(--shadow-sm);
  }

  .carousel-control-prev-custom,
  .carousel-control-next-custom {
    display: none;
    /* Hide side arrows on small screens */
  }
}

@media (max-width: 575.98px) {
  .slide-title {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 0.85rem;
  }

  .off-canvas-drawer {
    width: 290px;
  }
}

/* ==========================================================================
   12. New Arrivals (Aenyo Product Cards & Slider)
   ========================================================================== */
.new-arrivals-section {
  position: relative;
}

/* Premium smooth liquid slide transition for product slider items */
#newArrivalsCarousel .carousel-item {
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.product-card-care {
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.product-img-box {
  width: 100%;
  height: 320px;
  background-color: var(--slider-bg);
  /* Soft sand/cream color matching slider */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html[data-theme="dark"] .product-img-box {
  background: radial-gradient(circle at center, rgba(142, 165, 147, 0.2) 0%, rgba(30, 38, 54, 0.75) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .product-card-care:hover .product-img-box {
  border-color: rgba(142, 165, 147, 0.55) !important;
  box-shadow: none !important;
}

.product-img {
  max-height: 250px;
  max-width: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Make product background fully transparent */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px;
  /* Soften the corners of the images themselves */
}

html[data-theme="dark"] .product-img {
  mix-blend-mode: normal !important;
  /* Disable multiply blend mode in dark mode to prevent transparent dark bottles from becoming invisible */
}

/* Hover Zoom & Overlay triggers */
.product-card-care:hover .product-img {
  transform: scale(1.08);
}

.product-card-care:hover .product-img-box {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Hover Actions overlay */
.product-hover-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.product-card-care:hover .product-hover-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.action-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.action-circle-btn:hover {
  background-color: #D26E3B;
  /* Terracotta on hover */
  color: #ffffff;
  transform: translateY(-2px);
}

.product-info-box {
  padding: 12px 4px 4px 4px;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.product-card-care:hover .product-title {
  color: var(--primary-color);
}

.product-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D26E3B !important;
  /* Premium Terracotta color for pricing */
  margin-bottom: 0;
}

/* View All link text */
.view-all-link-care {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1.5px solid var(--text-main);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.view-all-link-care:hover {
  opacity: 0.7;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Side navigation arrows for products carousel floating on boundaries */
.carousel-control-prev-custom-prod,
.carousel-control-next-custom-prod {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-control-prev-custom-prod i,
.carousel-control-next-custom-prod i {
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-custom-prod:hover,
.carousel-control-next-custom-prod:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* Arrow placing logic */
html[dir="ltr"] .carousel-control-prev-custom-prod {
  left: -19px;
}

html[dir="ltr"] .carousel-control-next-custom-prod {
  right: -19px;
}

html[dir="rtl"] .carousel-control-prev-custom-prod {
  right: -19px;
}

html[dir="rtl"] .carousel-control-next-custom-prod {
  left: -19px;
}

/* Flip product chevrons logically in RTL */
html[dir="rtl"] .carousel-control-prev-custom-prod i,
html[dir="rtl"] .carousel-control-next-custom-prod i {
  transform: rotate(180deg);
}

/* Position and style product control arrows elegantly on tablet/mobile screens */
@media (max-width: 991.98px) {

  .carousel-control-prev-custom-prod,
  .carousel-control-next-custom-prod {
    top: 50% !important;
    /* Center vertically in the middle of the height */
    width: 34px !important;
    height: 34px !important;
    background-color: var(--bg-surface) !important;
    /* Elegant adaptive theme background */
    border: 1px solid var(--border-surface) !important;
    color: var(--text-main) !important;
    box-shadow: var(--shadow-sm) !important;
  }

  /* Safe inner boundaries positioning on mobile to prevent page breaking */
  html[dir="ltr"] .carousel-control-prev-custom-prod {
    left: 10px !important;
  }

  html[dir="ltr"] .carousel-control-next-custom-prod {
    right: 10px !important;
  }

  html[dir="rtl"] .carousel-control-prev-custom-prod {
    right: 10px !important;
  }

  html[dir="rtl"] .carousel-control-next-custom-prod {
    left: 10px !important;
  }
}

/* 13. Mobile Optimized Touch-Friendly Carousel Slider */
@media (max-width: 767.98px) {

  /* Mobile Breakpoint: Show exactly ONE product per view using native horizontal scroll-snap */
  #newArrivalsCarousel .carousel-item.active .row,
  #newArrivalsCarousel .carousel-item .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding-bottom: 0.8rem;
  }

  #newArrivalsCarousel .carousel-item .row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for a pristine minimalist luxury look */
  }

  #newArrivalsCarousel .col-6 {
    flex: 0 0 100% !important;
    /* Force exactly ONE product card per view */
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    padding: 0 15px !important;
  }

  .product-img-box {
    height: 290px !important;
    /* Beautiful focused view on small screens */
  }

  .product-img {
    max-height: 230px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* Tablet Breakpoint: Show exactly TWO products per view using horizontal scroll-snap */
  #newArrivalsCarousel .carousel-item.active .row,
  #newArrivalsCarousel .carousel-item .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding-bottom: 0.8rem;
  }

  #newArrivalsCarousel .carousel-item .row::-webkit-scrollbar {
    display: none;
  }

  #newArrivalsCarousel .col-6 {
    flex: 0 0 50% !important;
    /* Show exactly TWO products per view */
    max-width: 50% !important;
    width: 50% !important;
    scroll-snap-align: start !important;
    padding: 0 15px !important;
  }

  .product-img-box {
    height: 250px !important;
  }

  .product-img {
    max-height: 190px !important;
  }
}

/* ==========================================================================
   13. Back to Top Button Component
   ========================================================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5440 100%);
  color: #ffffff;
  border: none;
  border-radius: 50% 50% 50% 0%;
  /* Creates a gorgeous water droplet drop shape! */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  /* Since the drop shape needs rotation to point up (-135deg), we combine translate & rotate */
  transform: rotate(-135deg) translateY(0) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(74, 107, 83, 0.25);
}

/* Icon inside needs inverse rotation to point straight up instead of rotating with parent */
.back-to-top-btn i {
  font-size: 1.2rem;
  display: inline-block;
  transform: rotate(135deg);
  /* Cancels out parent -135deg rotation perfectly! */
  transition: transform 0.3s ease;
}

/* Positioning rules */
html[dir="ltr"] .back-to-top-btn {
  right: 24px;
}

html[dir="rtl"] .back-to-top-btn {
  left: 24px;
}

/* Visible state */
.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(-135deg) scale(1);
  animation: dewdropPulse 4s ease-in-out infinite;
}

/* Hover state: Liquid highlight & arrow glide up */
.back-to-top-btn:hover {
  background: linear-gradient(135deg, #D27E5F 0%, #A25A3D 100%);
  /* Warm peach/terracotta on hover to celebrate interaction! */
  box-shadow: 0 10px 30px rgba(210, 126, 95, 0.4);
  transform: rotate(-135deg) scale(1.08);
}

.back-to-top-btn:hover i {
  animation: arrowGlide 0.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

/* Dark Mode Overrides for premium neon-organic glow */
html[data-theme="dark"] .back-to-top-btn {
  background: linear-gradient(135deg, #8EA593 0%, #2f4033 100%) !important;
  box-shadow: 0 8px 25px rgba(142, 165, 147, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .back-to-top-btn:hover {
  background: linear-gradient(135deg, #EADCD0 0%, #BBAFA5 100%) !important;
  /* Beautiful glowing gold-sand hover in dark mode! */
  box-shadow: 0 10px 30px rgba(234, 220, 208, 0.25) !important;
  color: #141923 !important;
}

/* Droplet Pulsing Animation */
@keyframes dewdropPulse {

  0%,
  100% {
    border-radius: 50% 50% 50% 0%;
  }

  50% {
    border-radius: 52% 48% 52% 0% / 48% 52% 48% 0%;
    /* Subtle organic water droplet morphing sways */
  }
}

/* Arrow Gliding Upwards Loop */
@keyframes arrowGlide {
  0% {
    transform: rotate(135deg) translateY(0);
    opacity: 1;
  }

  45% {
    transform: rotate(135deg) translateY(-8px);
    opacity: 0;
  }

  50% {
    transform: rotate(135deg) translateY(8px);
    opacity: 0;
  }

  100% {
    transform: rotate(135deg) translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   13b. Premium Skincare Chatbot Widget (Shila AI Assistant)
   ========================================================================== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

html[dir="ltr"] .chatbot-widget {
  left: 24px;
  align-items: flex-start;
}

html[dir="rtl"] .chatbot-widget {
  right: 24px;
  align-items: flex-end;
}

/* Chat Trigger Bubble Button */
.chatbot-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5440 100%);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(74, 107, 83, 0.35);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.chatbot-trigger::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.4;
  animation: ripplePulse 2s infinite ease-in-out;
  pointer-events: none;
}

.chatbot-trigger:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(74, 107, 83, 0.45);
  background: linear-gradient(135deg, #D27E5F 0%, #A25A3D 100%);
}

.chatbot-trigger i {
  transition: transform 0.3s ease;
}

.chatbot-widget.active .chatbot-trigger {
  transform: rotate(90deg) scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Chat Window Panel */
.chat-window {
  position: absolute;
  bottom: 0;
  width: 360px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(74, 107, 83, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="ltr"] .chat-window {
  left: 0;
  transform-origin: bottom left;
}

html[dir="rtl"] .chat-window {
  right: 0;
  transform-origin: bottom right;
}

.chatbot-widget.active .chat-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Chat Header Area */
.chat-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5440 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #2ec4b6;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: statusPulse 1.8s infinite ease-in-out;
}

.chat-header-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.chat-bot-status {
  font-size: 0.7rem;
  opacity: 0.85;
  display: block;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.chat-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

/* Chat Messages Container */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: rgba(250, 248, 245, 0.8);
  /* Luxurious cream background tint */
}

/* Scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background-color: rgba(74, 107, 83, 0.25);
  border-radius: 10px;
}

/* Chat Message Bubbles */
.chat-message {
  display: flex;
  max-width: 82%;
  animation: bubbleSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
}

.message-bubble {
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.chat-message.bot .message-bubble {
  background-color: #ffffff;
  color: var(--text-main);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(74, 107, 83, 0.08);
}

.chat-message.user .message-bubble {
  background-color: var(--primary-color);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

html[dir="rtl"] .chat-message.bot .message-bubble {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}

html[dir="rtl"] .chat-message.user .message-bubble {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 4px;
}

/* Quick Replies Options */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  align-self: flex-start;
}

.quick-reply-btn {
  background-color: #ffffff;
  border: 1px solid rgba(74, 107, 83, 0.2);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.quick-reply-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 107, 83, 0.15);
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(74, 107, 83, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Chat Footer Input Area */
.chat-input-area {
  padding: 12px 16px;
  background-color: #ffffff;
  border-top: 1px solid rgba(74, 107, 83, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input-area input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.82rem;
  color: var(--text-main);
  background-color: transparent;
  padding: 8px 4px;
}

.chat-input-area input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.chat-send-btn {
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-send-btn:hover {
  color: #D27E5F;
  transform: scale(1.1);
}

html[dir="rtl"] .chat-send-btn i {
  transform: scaleX(-1);
  /* Flips arrow in RTL properly */
}

/* Dark Mode Overrides */
html[data-theme="dark"] .chat-window {
  background-color: rgba(20, 25, 35, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .chat-messages {
  background-color: rgba(14, 18, 26, 0.9);
}

html[data-theme="dark"] .chat-messages::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
}

html[data-theme="dark"] .chat-message.bot .message-bubble {
  background-color: #1a2230;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .quick-reply-btn {
  background-color: #1a2230;
  border-color: rgba(255, 255, 255, 0.15);
  color: #8EA593;
}

html[data-theme="dark"] .quick-reply-btn:hover {
  background-color: #8EA593;
  color: #141923;
  border-color: #8EA593;
}

html[data-theme="dark"] .chat-input-area {
  background-color: #1a2230;
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .chat-input-area input {
  color: #ffffff;
}

html[data-theme="dark"] .chat-send-btn {
  color: #8EA593;
}

html[data-theme="dark"] .chat-send-btn:hover {
  color: #ffffff;
}

/* Keyframes Animations */
@keyframes ripplePulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes bubbleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 32px);
    height: 420px;
  }
}

/* ==========================================================================
   Interactive Skincare Lookbook & Hotspots Styles
   ========================================================================== */

.lookbook-section {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.lookbook-row {
  min-height: 350px;
  /* Super slim, elegant landscape height matching reference */
}

/* Left Content Column */
.lookbook-content-col {
  background: linear-gradient(135deg, #FAF7F2 0%, #EFE9DF 100%);
  padding: 2.2rem;
  /* Super compact padding */
  transition: background 0.4s;
}

html[data-theme="dark"] .lookbook-content-col {
  background: linear-gradient(135deg, #121620 0%, #1A2130 100%);
}

.lookbook-inner-content {
  max-width: 420px;
}

.lookbook-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

.lookbook-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  /* Extremely elegant, compact title to prevent multi-line overflow in Arabic */
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.lookbook-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Premium Lookbook CTA Button */
.btn-lookbook-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #ffffff !important;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(74, 107, 83, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lookbook-cta:hover {
  background-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Right Image Column */
.lookbook-img-col {
  min-height: 350px;
  /* Perfectly matching the 350px compact desktop height */
  background-color: #FAF8F5;
}

.lookbook-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hotspots Architecture */
.hotspot-item {
  position: absolute;
  z-index: 10;
}

/* Interactive Glowing Pulse Dot */
.hotspot-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Inner pink/terracotta glowing core */
.hotspot-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f35c7e;
  /* Glowing pink core exactly matching image */
  display: block;
}

.hotspot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulseGlow 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(243, 92, 126, 0.7);
  }

  70% {
    transform: scale(1.6);
    box-shadow: 0 0 0 12px rgba(243, 92, 126, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(243, 92, 126, 0);
  }
}

/* Zoom effect on hover */
.hotspot-item:hover .hotspot-dot {
  transform: scale(1.2);
}

/* Glassmorphic Product Tooltip Card */
.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.92);
  width: 250px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(74, 107, 83, 0.08);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: bottom center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

html[data-theme="dark"] .hotspot-tooltip {
  background: rgba(20, 25, 35, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Pointy triangle tooltip arrow */
.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.88) transparent transparent transparent;
}

html[data-theme="dark"] .hotspot-tooltip::after {
  border-color: rgba(20, 25, 35, 0.88) transparent transparent transparent;
}

/* Show Tooltip on Hover */
.hotspot-item:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Tooltip Layout */
.hotspot-tooltip-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* RTL Layout Flip */
html[dir="rtl"] .hotspot-tooltip-card {
  flex-direction: row-reverse;
  text-align: right;
}

.hotspot-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #FAF8F5;
  border: 1px solid var(--border-surface);
}

html[data-theme="dark"] .hotspot-thumb {
  background-color: #1f2937;
}

.hotspot-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotspot-prod-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 3px 0;
  color: var(--text-main);
  line-height: 1.3;
}

.hotspot-price {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.hotspot-shop-btn {
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.hotspot-shop-btn:hover {
  color: var(--primary-color);
}

/* Mobile Responsiveness for Lookbook */
@media (max-width: 991.98px) {
  .lookbook-row {
    flex-direction: column;
    /* Stacks image on top, text on bottom */
  }

  .lookbook-img-col {
    min-height: 350px;
    /* Slimmer mobile image block */
  }

  .lookbook-content-col {
    padding: 2rem 1.5rem;
    /* Slimmer mobile text padding */
    text-align: center;
  }

  .lookbook-inner-content {}
}

/* ==========================================================================
   Premium Luxury Customer Reviews Section
   ========================================================================== */

/* Spacious and symmetrical section spacing (80px - for an ultra-premium luxury feel) */
.new-arrivals-section,
.lookbook-section,
.reviews-section {
  margin-bottom: 80px !important;
}

.reviews-section {
  padding: 1rem 0;
}

/* Control Buttons in top right */
.reviews-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-surface);
  background-color: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-control-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff !important;
  transform: scale(1.05);
}

html[data-theme="dark"] .reviews-control-btn {
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Flip chevron directions in RTL to keep them visually correct */
html[dir="rtl"] .reviews-control-btn i {
  display: inline-block;
  transform: rotate(180deg);
}

html[data-theme="dark"] .reviews-control-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Review Card Wrapper & Card */
.review-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.review-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  transition: all 0.3s ease;
  flex-grow: 1;
}

/* Elegant speech bubble triangle arrow */
.review-card::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

html[dir="rtl"] .review-card::after {
  left: auto;
  right: 30px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(74, 107, 83, 0.08);
}

html[data-theme="dark"] .review-card {
  background-color: rgba(20, 25, 35, 0.88);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .review-card::after {
  border-color: rgba(20, 25, 35, 0.88) transparent transparent transparent;
}

html[data-theme="dark"] .review-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Review Card Title & Text */
.review-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.review-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Beautiful Star Rating */
.review-stars {
  display: flex;
  gap: 4px;
}

html[dir="rtl"] .review-stars {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.review-stars i {
  color: #D27E5F;
  /* Gorgeous coral/terracotta stars matching our brand theme! */
  font-size: 0.85rem;
}

/* Review Author Info */
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .review-avatar {
  border-color: rgba(255, 255, 255, 0.1);
}

.review-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 2px 0;
}

.review-badge {
  font-size: 0.72rem;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

html[dir="rtl"] .review-badge {
  flex-direction: row-reverse;
}

.review-badge i {
  font-size: 0.75rem;
}

/* Mobile responsive carousel single review display */
@media (max-width: 767.98px) {
  .carousel-item .row>div:not(:first-child) {
    display: none;
    /* Hide 2nd and 3rd card on mobile to keep heights super neat! */
  }
}

/* ==========================================================================
   Premium Luxury Interactive Newsletter Section (Aesthetic Masterpiece)
   ========================================================================== */

.newsletter-section {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  z-index: 2;
}

/* Glowing Floating Background Blobs — reduced blur for performance */
.newsletter-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  /* Static — no infinite transform animation */
}

.newsletter-blob.blob-1 {
  width: 280px;
  height: 280px;
  background-color: var(--primary-color);
  top: -80px;
  left: -80px;
}

.newsletter-blob.blob-2 {
  width: 280px;
  height: 280px;
  background-color: #D27E5F;
  bottom: -80px;
  right: -80px;
}

@keyframes floatBlob1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -30px) scale(1.15);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatBlob2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, 30px) scale(1.15);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Organic Floating Leaf Particles (Multi-dimensional Parallax) */
.newsletter-leaf {
  position: absolute;
  border-radius: 0 75% 0 75%;
  /* Beautiful organic curved petal shape */
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.newsletter-leaf.leaf-1 {
  width: 90px;
  height: 60px;
  background: rgba(74, 107, 83, 0.08);
  border: 1px solid rgba(74, 107, 83, 0.15);
  top: 15%;
  left: 20%;
  transform: rotate(25deg);
  animation: swayLeaf1 8s ease-in-out infinite;
}

.newsletter-leaf.leaf-2 {
  width: 75px;
  height: 50px;
  background: rgba(210, 126, 95, 0.08);
  border: 1px solid rgba(210, 126, 95, 0.15);
  bottom: 20%;
  right: 15%;
  transform: rotate(-15deg);
  animation: swayLeaf2 10s ease-in-out infinite;
}

.newsletter-leaf.leaf-3 {
  width: 55px;
  height: 38px;
  background: rgba(239, 233, 223, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  top: 55%;
  left: 45%;
  transform: rotate(45deg);
  animation: swayLeaf3 12s ease-in-out infinite;
}

@keyframes swayLeaf1 {
  0% {
    transform: translateY(0) rotate(25deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(35deg) scale(1.08);
  }

  100% {
    transform: translateY(0) rotate(25deg) scale(1);
  }
}

@keyframes swayLeaf2 {
  0% {
    transform: translateY(0) rotate(-15deg) scale(1);
  }

  50% {
    transform: translateY(20px) rotate(-5deg) scale(1.1);
  }

  100% {
    transform: translateY(0) rotate(-15deg) scale(1);
  }
}

@keyframes swayLeaf3 {
  0% {
    transform: translateY(0) rotate(45deg) scale(1);
  }

  50% {
    transform: translateY(-12px) rotate(55deg) scale(0.92);
  }

  100% {
    transform: translateY(0) rotate(45deg) scale(1);
  }
}

/* Shifting Liquid Silk Background & Glassmorphic Container */
.newsletter-container-glass {
  background: linear-gradient(-45deg,
      rgba(74, 107, 83, 0.12) 0%,
      rgba(210, 126, 95, 0.09) 33%,
      rgba(239, 233, 223, 0.55) 66%,
      rgba(74, 107, 83, 0.08) 100%);
  background-size: 300% 300%;
  animation: fluidSilk 12s ease-in-out infinite;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 4rem 3.5rem;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(74, 107, 83, 0.12);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

html[data-theme="dark"] .newsletter-container-glass {
  background: linear-gradient(-45deg,
      rgba(20, 25, 35, 0.5) 0%,
      rgba(74, 107, 83, 0.15) 50%,
      rgba(20, 25, 35, 0.6) 100%);
  background-size: 300% 300%;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

@keyframes fluidSilk {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Typography */
.newsletter-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .newsletter-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

html[data-theme="dark"] .newsletter-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Form Styles */
.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  position: relative;
  width: 100%;
  max-width: 500px;
}

html[dir="ltr"] .newsletter-input-group {
  margin-left: auto;
}

html[dir="rtl"] .newsletter-input-group {
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .newsletter-input-group {
    margin: 0 auto !important;
  }
}

/* Frosted Glass Pill Input Field */
.newsletter-input {
  height: 60px;
  border-radius: 50px;
  border: 1px solid rgba(74, 107, 83, 0.16);
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="ltr"] .newsletter-input {
  padding-left: 28px;
  padding-right: 75px;
}

html[dir="rtl"] .newsletter-input {
  padding-right: 28px;
  padding-left: 75px;
}

/* Placeholder styling for high-contrast accessibility */
.newsletter-input::placeholder {
  color: #6f7c70;
  /* Beautiful soft sage color for placeholder in light mode */
  opacity: 0.7;
}

html[data-theme="dark"] .newsletter-input {
  background-color: rgba(20, 25, 35, 0.35);
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
  opacity: 1 !important;
}

.newsletter-input:focus {
  border-color: var(--primary-color) !important;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(74, 107, 83, 0.08) !important;
  outline: none;
}

html[data-theme="dark"] .newsletter-input:focus {
  background-color: rgba(20, 25, 35, 0.85);
  border-color: #ffffff !important;
  box-shadow: none !important;
}

/* Submit Arrow Button (Glowing Terracotta Coral) */
.newsletter-submit-btn {
  position: absolute;
  top: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #D27E5F;
  /* Gorgeous Terracotta brand color */
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(210, 126, 95, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="ltr"] .newsletter-submit-btn {
  right: 6px;
}

html[dir="rtl"] .newsletter-submit-btn {
  left: 6px;
}

.newsletter-submit-btn:hover {
  background-color: #b65e3f;
  /* Darker terracotta warm hover */
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(210, 126, 95, 0.5);
}

.newsletter-submit-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Bounce arrow animation on hover */
.newsletter-submit-btn:hover i {
  transform: translateX(4px);
}

html[dir="rtl"] .newsletter-submit-btn i {
  transform: scaleX(-1);
  /* Flip the arrow direction in RTL mode! */
}

html[dir="rtl"] .newsletter-submit-btn:hover i {
  transform: scaleX(-1) translateX(4px);
  /* Correctly slides left in RTL mode! */
}

/* Premium Inline Morphing Success State Styles */
.newsletter-inline-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 100%;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

html[data-theme="dark"] .newsletter-inline-success {
  color: #a3b899;
}

.newsletter-inline-success .success-icon {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-inline-end: 2px;
}

html[data-theme="dark"] .newsletter-inline-success .success-icon {
  color: #a3b899;
}

/* Active Morphing State: Input fades its input text and submit button shrinks, success springs up inside the same pill! */
.newsletter-input-group.success-active .newsletter-input {
  background-color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(74, 107, 83, 0.25) !important;
  color: transparent !important;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(74, 107, 83, 0.05) !important;
}

html[data-theme="dark"] .newsletter-input-group.success-active .newsletter-input {
  background-color: rgba(20, 25, 35, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.newsletter-input-group.success-active .newsletter-submit-btn {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.newsletter-input-group.success-active .newsletter-inline-success {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Dynamic Confetti/Glitter Explosion Particles */
.newsletter-glitter-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 10;
  animation: explodeGlitter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes explodeGlitter {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(270deg) scale(0);
    opacity: 0;
  }
}

/* Sizing Adjustments for mobile viewports */
@media (max-width: 767.98px) {
  .newsletter-container-glass {
    padding: 3rem 1.8rem;
    text-align: center;
  }

  .newsletter-title {
    font-size: 1.8rem;
  }

  .newsletter-desc {
    font-size: 0.92rem;
  }

  .newsletter-submit-btn {
    width: 44px;
    height: 44px;
    top: 8px;
  }

  html[dir="ltr"] .newsletter-submit-btn {
    right: 8px;
  }

  html[dir="rtl"] .newsletter-submit-btn {
    left: 8px;
  }

  .newsletter-inline-success {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

/* ==========================================================================
   14. Dedicated Premium Contact Page Styles
   ========================================================================== */
.contact-page-wrapper {
  padding-top: 20px;
  padding-bottom: 60px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.contact-breadcrumb {
  margin-bottom: 2.5rem;
}

.breadcrumb-item-care {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb-item-care.active {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.contact-sidebar-lux {
  background: linear-gradient(135deg, rgba(143, 156, 137, 0.08) 0%, rgba(228, 222, 210, 0.08) 100%);
  padding: 3rem;
  height: 100%;
  border-left: 1px solid var(--border-surface);
}

html[dir="ltr"] .contact-sidebar-lux {
  border-left: none;
  border-right: 1px solid var(--border-surface);
}

.contact-form-side {
  padding: 3rem;
}

.contact-title-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.contact-subtitle-main {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Luxury Input Forms styling */
.form-group-lux {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-control-lux {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border-surface);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control-lux:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(143, 156, 137, 0.15);
}

.form-group-lux.has-error .form-control-lux {
  border-color: #d27e5f !important;
  box-shadow: 0 0 0 4px rgba(210, 126, 95, 0.15) !important;
}

.form-group-lux label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--bg-surface);
  padding: 0 5px;
}

html[dir="rtl"] .form-group-lux label {
  right: 1.2rem;
}

html[dir="ltr"] .form-group-lux label {
  left: 1.2rem;
}

.form-control-lux:focus~label,
.form-control-lux:not(:placeholder-shown)~label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary-color);
}

html[dir="rtl"] .form-control-lux:focus~label,
html[dir="rtl"] .form-control-lux:not(:placeholder-shown)~label {
  transform: translateY(-50%) translateX(-0.3rem);
}

html[dir="ltr"] .form-control-lux:focus~label,
html[dir="ltr"] .form-control-lux:not(:placeholder-shown)~label {
  transform: translateY(-50%) translateX(0.3rem);
}

/* Custom Textarea adjustment */
.form-group-lux textarea.form-control-lux {
  height: 120px;
  resize: none;
}

.form-group-lux textarea.form-control-lux~label {
  top: 1.5rem;
  transform: none;
}

.form-group-lux textarea.form-control-lux:focus~label,
.form-group-lux textarea.form-control-lux:not(:placeholder-shown)~label {
  top: 0;
  transform: translateY(-50%) translateX(0.3rem);
}

html[dir="rtl"] .form-group-lux textarea.form-control-lux:focus~label,
html[dir="rtl"] .form-group-lux textarea.form-control-lux:not(:placeholder-shown)~label {
  transform: translateY(-50%) translateX(-0.3rem);
}

.btn-submit-lux {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(143, 156, 137, 0.3);
  transition: all 0.3s ease;
}

.btn-submit-lux:hover {
  background-color: #7b8a75;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 156, 137, 0.4);
}

.btn-submit-lux:active {
  transform: translateY(0);
}

.send-icon-lux {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-submit-lux:hover .send-icon-lux {
  transform: translate(3px, -3px);
}

html[dir="rtl"] .send-icon-lux {
  transform: scaleX(-1);
}

html[dir="rtl"] .btn-submit-lux:hover .send-icon-lux {
  transform: scaleX(-1) translate(3px, -3px);
}

/* Success Overlay */
.contact-success-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  border-radius: 24px;
}

.contact-success-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.success-badge-lux {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(143, 156, 137, 0.15);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(143, 156, 137, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(143, 156, 137, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(143, 156, 137, 0);
  }
}

.success-content-lux h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.success-content-lux p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-success-close-lux {
  background-color: transparent;
  border: 1px solid var(--border-surface);
  color: var(--text-main);
  padding: 0.6rem 1.8rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-success-close-lux:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Info Sidebar elements */
.sidebar-title-lux {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.sidebar-desc-lux {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.info-item-lux {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-icon-lux {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-surface);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.info-details-lux h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.info-details-lux p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.social-title-lux {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-icons-lux {
  display: flex;
  gap: 1rem;
}

.social-link-lux {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-surface);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.social-link-lux:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Minimal Mockup Map */
.map-mockup-container {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-surface);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  background: radial-gradient(circle at center, rgba(143, 156, 137, 0.08) 0%, rgba(228, 222, 210, 0.05) 100%);
}

.map-mockup-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(143, 156, 137, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 156, 137, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.pin-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  animation: bounce-pin 2s infinite;
}

@keyframes bounce-pin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pin-shadow {
  width: 12px;
  height: 4px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin-top: -4px;
}

.map-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .contact-sidebar-lux {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border-surface);
    padding: 2.5rem 1.8rem;
  }

  .contact-form-side {
    padding: 2.5rem 1.8rem;
  }
}

/* ==========================================================================
   Premium About Us Page Custom Styles (Aesthetic Luxury Design)
   ========================================================================== */

.about-page-wrapper {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-breadcrumb {
  margin-bottom: 2.5rem;
}

/* 1. Immersive Story Hero Section */
.about-hero-card {
  background: var(--bg-surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-surface);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.about-hero-card:hover {
  box-shadow: var(--shadow-lg);
}

.about-story-text {
  padding: 1.5rem 2rem;
}

/* LTR / RTL specific adjustments */
html[dir="rtl"] .about-story-text {
  text-align: right;
}

html[dir="ltr"] .about-story-text {
  text-align: left;
}

.about-story-sub {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.6rem;
}

.about-story-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.about-story-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-story-img-box {
  position: relative;
  height: 250px;
  min-height: auto;
  overflow: hidden;
}

.about-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-card:hover .about-story-img {
  transform: scale(1.04);
}

.about-img-glass-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .about-img-glass-label {
  background: rgba(20, 25, 35, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

/* 2. Interactive Core Values Section */
.about-value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.about-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(74, 107, 83, 0.06);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
  background: var(--primary-color);
  color: #ffffff !important;
  transform: scale(1.08);
}

.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.about-value-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 3. Clean Science & Botanical Laboratories */
.about-science-block {
  background: var(--bg-surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-surface);
  box-shadow: var(--shadow-md);
}

.about-science-img-box {
  position: relative;
  height: 250px;
  min-height: auto;
}

.about-science-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-science-text {
  padding: 1.5rem 2rem;
}

html[dir="rtl"] .about-science-text {
  text-align: right;
}

html[dir="ltr"] .about-science-text {
  text-align: left;
}

.about-science-sub {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: #D27E5F;
  /* Coral accent */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.6rem;
}

.about-science-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.about-science-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Statistics Counters Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-stat-number.text-sage {
  color: var(--primary-color);
}

.about-stat-number.text-accent {
  color: #D27E5F;
}

.about-stat-label {
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 600;
}

/* 4. Meet the Experts / Team Section */
.about-team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-team-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  background-color: var(--bg-app);
}

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

.about-team-card:hover .about-team-img {
  transform: scale(1.05);
}

.about-team-social {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  display: flex;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

html[data-theme="dark"] .about-team-social {
  background: rgba(20, 25, 35, 0.85);
}

.about-team-card:hover .about-team-social {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.about-team-social a {
  color: var(--text-main);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.about-team-social a:hover {
  color: var(--primary-color) !important;
}

.about-team-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.about-team-role {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Symmetrical team section title spacing */
.about-team-main-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.about-team-main-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsiveness Adaptations */
@media (max-width: 991.98px) {

  .about-story-text,
  .about-science-text {
    padding: 2.5rem 2rem;
    text-align: center !important;
  }

  .about-story-img-box,
  .about-science-img-box {
    height: 250px !important;
    min-height: auto !important;
  }

  .about-stats-grid {
    gap: 1rem;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

/* Strict Symmetrical Height Limit on Desktop Layouts */
@media (min-width: 992px) {

  .about-hero-card,
  .about-science-block {
    height: 350px !important;
  }

  .about-hero-card>.row,
  .about-science-block>.row {
    height: 100% !important;
  }

  .about-hero-card>.row>div,
  .about-science-block>.row>div {
    height: 100% !important;
  }

  .about-story-img-box,
  .about-science-img-box {
    height: 100% !important;
    min-height: auto !important;
  }

  .about-story-text,
  .about-science-text {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 2rem 3rem !important;
  }
}

/* ==========================================================================
   14. Dynamic Skincare Product Details Component CSS (Aenyo Premium Style)
   ========================================================================== */
.product-page-wrapper {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-breadcrumb {
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-surface);
}

.product-breadcrumb .breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.product-breadcrumb .breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.product-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color);
}

.product-breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
}

.product-showcase-container {
  background: var(--bg-surface);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--border-surface);
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  transition: background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.product-gallery-side {
  padding-inline-end: 2rem;
}

.product-info-side {
  padding-inline-start: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(74, 107, 83, 0.02);
  border: 1px solid var(--border-surface);
  margin-bottom: 1.5rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s, border-color 0.4s;
}

.main-showcase-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-img-box:hover .main-showcase-img {
  transform: scale(1.05);
}

.gallery-thumbs-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumb-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border-surface);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background-color: rgba(74, 107, 83, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumb-gallery-item img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.3s;
}

.thumb-gallery-item:hover img {
  transform: scale(1.08);
}

.thumb-gallery-item.active {
  border-color: var(--primary-color);
  background-color: rgba(74, 107, 83, 0.05);
  box-shadow: 0 4px 12px rgba(74, 107, 83, 0.1);
}

.product-badge-overlay {
  position: absolute;
  top: 15px;
  inset-inline-start: 15px;
  z-index: 10;
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.product-title-detail {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.product-ratings-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ratings-stars-care {
  color: #e0a96d;
  font-size: 0.9rem;
}

.reviews-link-care {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.reviews-link-care:hover {
  color: var(--primary-color);
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.product-price-detail {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.product-price-original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
  opacity: 0.5;
}

.product-short-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.product-option-section {
  border-top: 1px solid var(--border-surface);
  padding: 1.5rem 0;
}

.option-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sizes-container {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.size-pill {
  border: 1.5px solid var(--border-surface);
  background-color: transparent;
  color: var(--text-main);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.size-pill:hover {
  border-color: var(--text-main);
}

.size-pill.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(74, 107, 83, 0.15);
}

.qty-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.qty-selector-widget {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-surface);
  border-radius: 30px;
  padding: 4px;
  background-color: rgba(74, 107, 83, 0.02);
  transition: border-color 0.4s;
}

.qty-btn-adjust {
  background: transparent;
  border: none;
  color: var(--text-main);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.qty-btn-adjust:hover {
  background-color: var(--border-surface);
  color: var(--primary-color);
}

.qty-input-field {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  outline: none;
}

.btn-add-cart-lux {
  flex-grow: 1;
  min-width: 180px;
  background: var(--primary-gradient);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(74, 107, 83, 0.15);
}

.btn-add-cart-lux:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74, 107, 83, 0.25);
  opacity: 0.95;
}

.btn-add-cart-lux:active {
  transform: translateY(0);
}

.btn-add-cart-lux:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.btn-wishlist-lux {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-surface);
  background: transparent;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-wishlist-lux:hover {
  border-color: #D27E5F;
  color: #D27E5F;
  transform: scale(1.06);
}

.btn-wishlist-lux.active {
  background-color: rgba(210, 126, 95, 0.1);
  border-color: #D27E5F;
  color: #D27E5F;
}

.product-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-surface);
  padding: 1.5rem 0;
  margin-top: 1.5rem;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(74, 107, 83, 0.01);
  border: 1px solid var(--border-surface);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s;
}

.trust-badge-item:hover {
  transform: translateY(-2px);
  background-color: rgba(74, 107, 83, 0.03);
}

.trust-badge-icon {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.trust-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-main);
}

.product-info-tabs {
  margin-top: 3rem;
  border: 1px solid var(--border-surface);
  border-radius: 16px;
  background-color: var(--bg-surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.4s, border-color 0.4s;
}

.tabs-nav-bar {
  display: flex;
  background-color: rgba(74, 107, 83, 0.02);
  border-bottom: 1px solid var(--border-surface);
  flex-wrap: wrap;
  transition: background-color 0.4s, border-color 0.4s;
}

.product-tab-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 1.2rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-grow: 1;
  text-align: center;
}

.product-tab-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tab-link:hover {
  color: var(--text-main);
}

.product-tab-link.active {
  color: var(--primary-color);
  background-color: var(--bg-surface);
}

.product-tab-link.active::after {
  width: 100%;
}

.tabs-content-body {
  padding: 2.5rem;
}

.product-tab-pane {
  display: none;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.product-tab-pane.active {
  display: block;
  animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.warnings-list-care,
.bullets-list-care {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warnings-list-care li,
.bullets-list-care li {
  position: relative;
  padding-inline-start: 1.8rem;
  margin-bottom: 0.8rem;
}

.warnings-list-care li::before {
  content: '⚠️';
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  font-size: 0.8rem;
}

.bullets-list-care li::before {
  content: '✦';
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  color: var(--primary-color);
  font-size: 0.8rem;
}

@media (max-width: 991.98px) {
  .product-showcase-container {
    padding: 2rem 1.5rem;
  }

  .product-gallery-side {
    padding-inline-end: 0;
    margin-bottom: 2.5rem;
  }

  .product-info-side {
    padding-inline-start: 0;
  }

  .product-title-detail {
    font-size: 1.8rem;
  }

  .tabs-content-body {
    padding: 1.5rem;
  }

  .product-tab-link {
    padding: 1rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Premium Customer Login & Registration Page Styles
   ========================================================================== */
.auth-page-wrapper {
  min-height: 100vh;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--slider-bg);
  transition: background 0.4s;
}

.auth-card-glass {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-surface);
  border-radius: 24px;
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 5;
}

.auth-card-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.auth-logo-symbol {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  animation: floatLogo 3s ease-in-out infinite;
}

.auth-card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.auth-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-nav-pills {
  display: flex;
  background-color: rgba(74, 107, 83, 0.05);
  border: 1px solid var(--border-surface);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 2rem;
}

html[data-theme="dark"] .auth-nav-pills {
  background-color: rgba(255, 255, 255, 0.03);
}

.auth-pill-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-pill-btn.active {
  background-color: var(--primary-color);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.auth-form-container {
  display: none;
}

.auth-form-container.active {
  display: block;
  animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group-premium {
  position: relative;
  margin-bottom: 1.4rem;
}

.form-control-premium {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-surface);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.88rem;
  font-family: var(--font-primary);
  color: var(--text-main);
  width: 100%;
  outline: none;
  text-align: start;
  transition: all 0.3s ease;
}

/* Explicit browser override for placeholder alignment in RTL/LTR */
html[dir="rtl"] .form-control-premium {
  text-align: right !important;
}

html[dir="rtl"] .form-control-premium::placeholder {
  text-align: right !important;
  direction: rtl !important;
}

html[dir="ltr"] .form-control-premium {
  text-align: left !important;
}

html[dir="ltr"] .form-control-premium::placeholder {
  text-align: left !important;
  direction: ltr !important;
}

.form-control-premium:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(74, 107, 83, 0.08);
}

html[data-theme="dark"] .form-control-premium:focus {
  box-shadow: 0 0 0 4px rgba(142, 165, 147, 0.15);
}

.btn-auth-submit {
  background: var(--primary-gradient);
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.95;
}

.btn-auth-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.auth-switch-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

.auth-switch-link {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.auth-switch-link:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Premium Customer Profile Dashboard Page Styles
   ========================================================================== */
.profile-page-wrapper {
  min-height: 100vh;
  padding: 130px 0 80px 0;
  background: var(--bg-app);
  transition: background-color 0.4s;
}

.profile-card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sidebar Styling */
.profile-sidebar {
  background-color: rgba(74, 107, 83, 0.015);
  border-inline-end: 1px solid var(--border-surface);
  padding: 2.2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-column: column;
  transition: background-color 0.4s, border-color 0.4s;
}

html[data-theme="dark"] .profile-sidebar {
  background-color: rgba(255, 255, 255, 0.005);
}

.profile-user-summary {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-surface);
  margin-bottom: 2rem;
}

.profile-avatar-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.2rem auto;
  border: 3px solid var(--primary-color);
  padding: 4px;
  background-color: var(--bg-surface);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.4s;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-user-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.profile-user-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.profile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-menu-item-btn {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: start;
}

.profile-menu-item-btn i {
  font-size: 1.15rem;
}

.profile-menu-item-btn:hover {
  color: var(--text-main);
  background-color: var(--border-surface);
}

.profile-menu-item-btn.active {
  background-color: var(--primary-color);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

/* Profile Content Section */
.profile-content-area {
  padding: 2.8rem;
}

.profile-tab-pane {
  display: none;
}

.profile-tab-pane.active {
  display: block;
  animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-pane-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* Dashboard Tab Specifics */
.profile-welcome-banner {
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 2.2rem;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.welcome-banner-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.welcome-banner-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
  line-height: 1.6;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-widget-card {
  background-color: var(--bg-app);
  border: 1px solid var(--border-surface);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-widget-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.stat-widget-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.stat-widget-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.stat-widget-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Orders Dashboard List */
.order-card-premium {
  background-color: var(--bg-app);
  border: 1px solid var(--border-surface);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.order-card-premium:hover {
  border-color: var(--primary-color);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--border-surface);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.order-id-badge {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}

.order-meta-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 15px;
}

.order-status-badge {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-badge-pending {
  background-color: rgba(212, 197, 185, 0.15);
  color: #a0816b;
}

.status-badge-processing {
  background-color: rgba(74, 107, 83, 0.08);
  color: var(--primary-color);
}

.status-badge-shipped {
  background-color: rgba(0, 123, 255, 0.08);
  color: #007bff;
}

.status-badge-delivered {
  background-color: rgba(40, 167, 69, 0.08);
  color: #28a745;
}

.order-card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.order-items-summary {
  font-size: 0.88rem;
  color: var(--text-main);
}

.order-total-amount {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.btn-track-order {
  background: transparent;
  border: 1.5px solid var(--text-main);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-track-order:hover {
  background-color: var(--text-main);
  color: var(--bg-surface);
}

/* Interactive Order Tracking Steps Container */
.order-tracking-timeline {
  margin-top: 1.8rem;
  padding: 1.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 12px;
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.order-tracking-timeline.active {
  display: block;
}

.tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1.5rem;
  padding: 0 10px;
}

.tracking-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 3px;
  background-color: var(--border-surface);
  z-index: 1;
}

.tracking-step-item {
  position: relative;
  z-index: 5;
  text-align: center;
  flex: 1;
}

.step-bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-app);
  border: 3px solid var(--border-surface);
  margin: 0 auto 0.6rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

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

/* Active and Complete statuses for Steps */
.tracking-step-item.complete .step-bullet-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff !important;
}

.tracking-step-item.complete .step-label {
  color: var(--text-main);
}

.tracking-step-item.active .step-bullet-icon {
  background-color: var(--bg-surface);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 0 6px rgba(74, 107, 83, 0.1);
}

.tracking-step-item.active .step-label {
  color: var(--primary-color);
}

/* Dynamic Line color based on step completion state (using a JS helper to style active sub-lines, or simple sequential states) */

/* Profile Cart and Wishlist Tab Styling */
.profile-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-surface);
  padding: 1.2rem 0;
  gap: 15px;
}

.profile-product-item:last-child {
  border-bottom: none;
}

.profile-prod-thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background-color: var(--bg-app);
  border: 1px solid var(--border-surface);
}

.profile-prod-info {
  flex-grow: 1;
}

.profile-prod-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.profile-prod-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.profile-prod-title a:hover {
  color: var(--primary-color);
}

.profile-prod-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

.profile-prod-actions {
  display: flex;
  gap: 8px;
}

.btn-profile-action {
  background-color: var(--bg-app);
  border: 1px solid var(--border-surface);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-profile-action:hover {
  background-color: var(--border-surface);
  color: var(--primary-color);
}

.btn-profile-action-danger:hover {
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
}

/* Empty states */
.empty-state-card {
  text-align: center;
  padding: 3rem 1.5rem;
  background-color: rgba(74, 107, 83, 0.01);
  border: 1px dashed var(--border-surface);
  border-radius: 16px;
}

.empty-state-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.empty-state-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.empty-state-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 991.98px) {
  .profile-sidebar {
    border-inline-end: none;
    border-bottom: 1px solid var(--border-surface);
    padding: 2rem 1.5rem;
  }

  .profile-content-area {
    padding: 2rem 1.5rem;
  }

  .profile-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-widget-card {
    padding: 1.2rem 0.5rem;
  }

  .stat-widget-num {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .profile-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .auth-card-glass {
    padding: 2rem 1.5rem;
  }

  .tracking-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-inline-start: 15px;
  }

  .tracking-steps::before {
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
  }

  html[dir="rtl"] .tracking-steps::before {
    right: 25px;
    left: auto;
  }

  .tracking-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: start;
    width: 100%;
  }

  .step-bullet-icon {
    margin: 0;
  }
}

/* Dynamic Options Grid layout for Product Details Variants */
.product-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

.variant-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.variant-option-group .option-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.variant-option-group .option-values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-option-group .size-pill {
  padding: 6px 14px;
  font-size: 0.75rem;
}

@media (max-width: 576px) {
  .product-options-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Breadcrumb Banner Wrapper (Full Width) */
.breadcrumb-banner-wrapper {
  margin-top: 70px;
  /* Offsets the fixed header navbar */
  background-color: #FAF8F5;
  /* Matches the beige/cream storefront aesthetic */
  border-bottom: 1px solid var(--border-surface);
}

@media (max-width: 991.98px) {
  .breadcrumb-banner-wrapper {
    margin-top: 60px;
    /* Mobile header offset */
  }
}

.breadcrumb-banner-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-banner-wrapper .breadcrumb-item-care a {
  transition: color 0.3s ease;
}

.breadcrumb-banner-wrapper .breadcrumb-item-care a:hover {
  color: var(--primary-color) !important;
}

.breadcrumb-banner-wrapper .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: var(--text-muted);
  opacity: 0.5;
  padding: 0 0.75rem;
}

/* Scroll Reveal Animations (Clean, premium, and performant) */
[data-reveal] {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-reveal="fade-up"] {
  transform: translateY(30px);
  /* Subtle shift for high elegance */
}

[data-reveal="fade-down"] {
  transform: translateY(-30px);
}

[data-reveal="fade-left"] {
  transform: translateX(30px);
}

[data-reveal="fade-right"] {
  transform: translateX(-30px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Fallback for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Checkout Page & Order Success Premium Styling */
.checkout-card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.checkout-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-surface);
  padding-bottom: 0.75rem;
}

.form-select-lux {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238f9c89' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px 10px;
  background-position: right 1.2rem center;
  padding-right: 2.5rem !important;
}

html[dir="rtl"] .form-select-lux {
  background-position: left 1.2rem center;
  padding-right: 1.2rem !important;
  padding-left: 2.5rem !important;
}

.form-group-lux .select-label-lux {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary-color);
}

html[dir="rtl"] .form-group-lux .select-label-lux {
  transform: translateY(-50%) translateX(-0.3rem);
}

html[dir="ltr"] .form-group-lux .select-label-lux {
  transform: translateY(-50%) translateX(0.3rem);
}

.btn-checkout-submit-lux {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(143, 156, 137, 0.2);
}

.btn-checkout-submit-lux:hover {
  background-color: var(--primary-color-hover, #7a8874);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(143, 156, 137, 0.3);
}

.btn-checkout-submit-lux:disabled {
  background-color: #c5ccbf;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-summary-card {
  background-color: #FAF8F5;
  border: 1px solid var(--border-surface);
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.checkout-items-list {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 5px;
}

html[dir="rtl"] .checkout-items-list {
  padding-right: 0;
  padding-left: 5px;
}

.checkout-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.checkout-item-price {
  font-size: 0.95rem;
}

/* Success Card */
.checkout-success-card-glass {
  background: var(--bg-surface);
  border: 1px solid var(--border-surface);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

.success-badge-lux-success {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(143, 156, 137, 0.3);
  animation: successBadgePulse 2s infinite ease-in-out;
}

@keyframes successBadgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(143, 156, 137, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(143, 156, 137, 0.5);
  }
}

.checkout-success-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.btn-success-home-lux {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(143, 156, 137, 0.2);
}

.btn-success-home-lux:hover {
  background-color: var(--primary-color-hover, #7a8874);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(143, 156, 137, 0.3);
}

/* Custom Select2 Skincare Theme Override (lux) */
.select2-container--lux {
  width: 100% !important;
}

.select2-container--lux .select2-selection--single {
  height: 50px !important;
  background-color: transparent !important;
  border: 1px solid var(--border-surface) !important;
  border-radius: 12px !important;
  padding: 0.9rem 1.2rem !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}

.select2-container--lux.select2-container--focus .select2-selection--single,
.select2-container--lux.select2-container--open .select2-selection--single {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(143, 156, 137, 0.15) !important;
}

.select2-container--lux .select2-selection__rendered {
  color: var(--text-main) !important;
  font-size: 0.95rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  line-height: 1.2 !important;
  width: 100% !important;
  text-align: start !important;
}

.select2-container--lux .select2-selection__placeholder {
  color: var(--text-muted) !important;
}

.select2-container--lux .select2-selection__arrow {
  height: 48px !important;
  position: absolute !important;
  top: 1px !important;
  width: 30px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html[dir="rtl"] .select2-container--lux .select2-selection__arrow {
  left: 1.2rem !important;
  right: auto !important;
}

html[dir="ltr"] .select2-container--lux .select2-selection__arrow {
  right: 1.2rem !important;
  left: auto !important;
}

.select2-container--lux .select2-selection__arrow b {
  border-color: var(--primary-color) transparent transparent transparent !important;
  border-style: solid !important;
  border-width: 5px 4px 0 4px !important;
  height: 0 !important;
  left: 50% !important;
  margin-left: -4px !important;
  margin-top: -2px !important;
  position: absolute !important;
  top: 50% !important;
  width: 0 !important;
}

.select2-container--lux.select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent var(--primary-color) transparent !important;
  border-width: 0 4px 5px 4px !important;
}

/* Dropdown Container */
.select2-container--lux .select2-dropdown {
  background-color: var(--bg-surface) !important;
  border: 1px solid var(--border-surface) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  z-index: 1050 !important;
  overflow: hidden !important;
  margin-top: 4px !important;
}

.select2-container--lux .select2-results__options {
  max-height: 240px !important;
  overflow-y: auto !important;
}

.select2-container--lux .select2-results__option {
  padding: 0.75rem 1.2rem !important;
  font-size: 0.95rem !important;
  color: var(--text-main) !important;
  text-align: start !important;
}

.select2-container--lux .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.select2-container--lux .select2-results__option[aria-selected=true] {
  background-color: #f1f3f0 !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Error state integration */
.form-group-lux.has-error .select2-container--lux .select2-selection--single {
  border-color: #d27e5f !important;
  box-shadow: 0 0 0 4px rgba(210, 126, 95, 0.15) !important;
}

/* Fixed positioning for Select2 label */
.form-group-lux .select-label-lux {
  z-index: 5 !important;
}