/* =========================================================
   PREMIUM BEAUTY WEBSITE THEME
   Skin | Body | Hair | Baby Care
   ========================================================= */

:root {
  /* ---------- FONTS ---------- */
  --default-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --nav-font: "Poppins", sans-serif;

  /* ---------- BRAND COLORS ---------- */
  --primary-color: #66745A;
  --primary-dark: #4F5D45;
  --primary-light: #A8B09A;
  --primary-soft: #E8ECE3;

  /* ---------- PREMIUM ACCENT ---------- */
  --accent-color: #C6A76A;
  --accent-dark: #A88950;
  --accent-light: #E3D2A9;
  --accent-soft: #F4EDDF;

  /* ---------- BACKGROUND COLORS ---------- */
  --background-color: #F8F5EF;
  --surface-color: #FFFFFF;
  --surface-alt: #EAE3D7;
  --cream-color: #F3EEE5;
  --light-color: #FBFAF7;

  /* ---------- TEXT COLORS ---------- */
  --default-color: #292A27;
  --heading-color: #30352D;
  --text-secondary: #62665D;
  --muted-color: #8B8F85;
  --light-text: #A5A89F;
  --contrast-color: #FFFFFF;

  /* ---------- BORDER COLORS ---------- */
  --border-color: #DED9CE;
  --border-light: #EAE6DD;
  --border-dark: #C9C3B7;

  /* ---------- PRODUCT COLORS ---------- */
  --sale-color: #B96B5A;
  --success-color: #718866;
  --warning-color: #C6A76A;
  --danger-color: #B85C5C;

  /* ---------- BUTTON COLORS ---------- */
  --button-primary: #66745A;
  --button-primary-hover: #4F5D45;
  --button-secondary: #C6A76A;
  --button-secondary-hover: #A88950;
  --button-light: #F3EEE5;
  --button-dark: #30352D;

  /* ---------- CARD COLORS ---------- */
  --card-background: #FFFFFF;
  --card-hover-background: #F8F5EF;
  --card-border: #E5E0D6;

  /* ---------- HEADER ---------- */
  --header-background: #F8F5EF;
  --header-text: #30352D;
  --header-hover: #66745A;
  --header-border: #E5E0D6;

  /* ---------- FOOTER ---------- */
  --footer-background: #30352D;
  --footer-surface: #394137;
  --footer-heading: #F8F5EF;
  --footer-text: #C9CEC5;
  --footer-hover: #C6A76A;

  /* ---------- BADGES ---------- */
  --badge-new: #66745A;
  --badge-sale: #B96B5A;
  --badge-trending: #C6A76A;
  --badge-best: #7C846F;

  /* ---------- SHADOWS ---------- */
  --shadow-sm: 0 2px 10px rgba(48, 53, 45, 0.06);
  --shadow-md: 0 8px 25px rgba(48, 53, 45, 0.09);
  --shadow-lg: 0 15px 45px rgba(48, 53, 45, 0.12);
  --shadow-hover: 0 18px 40px rgba(48, 53, 45, 0.14);

  /* ---------- BORDER RADIUS ---------- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  /* ---------- SPACING ---------- */
  --section-padding: 90px;
  --section-padding-mobile: 55px;
  --container-width: 1320px;

  /* ---------- TRANSITIONS ---------- */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* ---------- GRADIENTS ---------- */
  --gradient-primary: linear-gradient(135deg, #66745A 0%, #7E8A70 100%);
  --gradient-gold: linear-gradient(135deg, #C6A76A 0%, #E3D2A9 100%);
  --gradient-soft: linear-gradient(135deg, #F8F5EF 0%, #EAE3D7 100%);
  --gradient-sage: linear-gradient(135deg, #E8ECE3 0%, #F8F5EF 100%);

  /* ---------- OVERLAY ---------- */
  --overlay-dark: rgba(41, 42, 39, 0.45);
  --overlay-light: rgba(248, 245, 239, 0.75);

  /* ---------- Z-INDEX ---------- */
  --z-header: 1000;
  --z-dropdown: 1100;
  --z-modal: 2000;
  --z-toast: 3000;
}

/* GLOBAL SETUP */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--default-font);
  background-color: var(--background-color);
  color: var(--default-color);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= TOPBAR ================= */
.topbar {
  background-color: var(--primary-dark);
  padding: 9px 0;
  font-size: 13px;
  color: var(--contrast-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-info a {
  color: var(--primary-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.topbar-info a:hover {
  color: var(--accent-light);
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.3);
}

.topbar-tagline {
  color: var(--accent-light);
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-color);
  color: var(--heading-color);
  transform: translateY(-2px);
}

/* ================= HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}


.logo-img {
  height: 80px;
  /* Apne layout ke hisab se height set karein */
  width: auto;
  /* Aspect ratio maintain rakhne ke liye */
  display: block;
}

.logo:hover img {
  transform: scale(1.04);
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--heading-color);
  line-height: 1.15;
  font-weight: 600;
}

.logo-text em {
  font-style: italic;
  color: var(--primary-color);
}

.logo-text small {
  display: block;
  font-family: var(--default-font);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 500;
}

/* NAV MENU */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 6px;
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.nav-link {
  text-decoration: none;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  display: block;
}

.nav-link:hover {
  color: var(--primary-color);
  background: var(--primary-soft);
}

.nav-link.active {
  background: var(--primary-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(102, 116, 90, 0.3);
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-gold);
  color: var(--heading-color);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(198, 167, 106, 0.3);
}

.btn-cta i {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 167, 106, 0.45);
}

.btn-cta:hover i {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--contrast-color);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--primary-dark);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-cta {
    display: none;
  }

  .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 12px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--cream-color);
    display: flex;
    justify-content: space-between;
  }

  .nav-link::after {
    content: "›";
    font-size: 18px;
    color: var(--primary-color);
  }

  .nav-link.active {
    background: var(--primary-color);
    color: var(--contrast-color);
  }

  .nav-link.active::after {
    color: var(--contrast-color);
  }
}


/* MODERN HERO SECTION */
/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;

  /* IMPORTANT FIX */
  height: auto;
  /* fixed height hata diya */
  max-height: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* SLIDE */
.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE FULL SHOW (NO CUT) */
.carousel-slide img {
  width: 100%;
  height: 600px;
  /* IMPORTANT */
  object-fit: cover;
  /* full image visible */
  display: block;
}

/* ===== ARROWS ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* ===== DOTS ===== */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ===== MOBILE FIX ===== */
@media(max-width: 768px) {

  .carousel-container {
    height: auto;
    /* IMPORTANT */
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* NO CUT mobile */
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .carousel-dots {
    bottom: 10px;
  }
}

/* Section */
/* ================= CATEGORIES ================= */
/* =========================================================
   ULTRA-LUXURY CATEGORY SECTION (COMPLETE CSS)
   ========================================================= */

.luxury-category-section {
  padding: 50px 0;
  background-color: var(--background-color);
  position: relative;
}

/* SECTION HEADING */
.category-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.category-heading .small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.category-heading h2 {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--heading-color);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
}

.category-heading h2 span {
  color: var(--primary-color);
  font-style: italic;
}

.category-heading p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.heading-line {
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  margin: 0 auto;
}

/* EDITORIAL ASYMMETRIC GRID LAYOUT */
.luxury-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.secondary-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD BASE STYLING */
.luxury-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background-color: #0d100c;
  /* Dark fallback container background */
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 45px rgba(198, 167, 106, 0.28);
}

/* IMAGE WRAPPERS */
.hero-card .card-image-wrapper {
  height: 380px;
}

.sub-card .card-image-wrapper {
  height: 420px;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

/* HIGH-CONTRAST DARK GRADIENT OVERLAY (FOR PERFECT TEXT READABILITY) */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(12, 16, 10, 0.96) 0%,
      rgba(12, 16, 10, 0.75) 45%,
      rgba(12, 16, 10, 0.25) 100%) !important;
  z-index: 1;
  transition: background 0.4s ease;
}

.luxury-card:hover .card-overlay {
  background: linear-gradient(to top,
      rgba(8, 12, 6, 0.98) 0%,
      rgba(8, 12, 6, 0.85) 55%,
      rgba(8, 12, 6, 0.35) 100%) !important;
}



/* GLASSMORPHIC BADGE */
.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(18, 24, 15, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF !important;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
  z-index: 3 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* FLOATING CARD CONTENT WITH HIGH READABILITY TYPOGRAPHY */
.card-content-floating {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 3 !important;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.card-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 700 !important;
  letter-spacing: 2px;
  color: #E2C78A !important;
  /* Premium Gold Contrast */
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.card-text h3 {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #FFFFFF !important;
  margin-bottom: 8px;
  font-weight: 600 !important;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.card-text h3 span {
  color: #F3E8CE !important;
  font-style: italic;
}

.card-text p {
  font-size: 14px;
  color: #F1F5F9 !important;
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

/* BUTTONS */
.shop-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--accent-color);
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-card:hover .shop-pill-btn {
  background: #FFFFFF;
  transform: translateX(4px);
}

.shop-circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.luxury-card:hover .shop-circle-btn {
  background: var(--accent-color) !important;
  color: var(--heading-color) !important;
  border-color: var(--accent-color) !important;
  transform: rotate(45deg);
}

/* =========================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE SWIPEABLE CARDS)
   ========================================================= */

@media (max-width: 992px) {
  .secondary-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-card .card-image-wrapper,
  .sub-card .card-image-wrapper {
    height: 380px;
  }

  .card-content-floating {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .shop-pill-btn {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .luxury-category-section {
    padding: 50px 0;
  }

  .category-heading h2 {
    font-size: 30px;
  }

  /* Horizontal Scroll Swipe Layout for Mobile */
  .luxury-editorial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 15px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch;
  }

  .secondary-cards-grid {
    display: contents;
    /* Flattens sub-cards directly into swipe track */
  }

  .luxury-editorial-grid::-webkit-scrollbar {
    display: none;
  }

  .luxury-card {
    min-width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .hero-card .card-image-wrapper,
  .sub-card .card-image-wrapper {
    height: 360px;
  }

  .card-text h3 {
    font-size: 24px;
  }

  .card-text p {
    font-size: 12.5px;
  }

  .shop-circle-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* PREMIUM TRUST BAR SECTION */
/* =========================================================
   PREMIUM TRUST BAR / MARQUEE SECTION
   ========================================================= */

/* =========================================================
   LUXURY BOTANICAL TRUST BAR (ICON FIX)
   ========================================================= */

.premium-trust-bar {
  background: var(--surface-color);
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(102, 116, 90, 0.02);
}

/* Side Overlay Fades */
.premium-trust-bar::before,
.premium-trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}

.premium-trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-color) 20%, transparent);
}

.premium-trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-color) 20%, transparent);
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: trustScroll 26s linear infinite;
}

.trust-track:hover {
  animation-play-state: paused;
}

/* CARD DESIGN */
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 275px;
  padding: 14px 22px;
  background: var(--background-color);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(48, 53, 45, 0.03);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.trust-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(198, 167, 106, 0.22);
}

/* ICON CONTAINER WITH VISIBILITY FIX */
.trust-icon-container {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.trust-icon-container i {
  font-size: 22px !important;
  color: var(--primary-color) !important;
  display: inline-block !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all var(--transition-fast);
}

.trust-card:hover .trust-icon-container {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.06);
}

.trust-card:hover .trust-icon-container i {
  color: #FFFFFF !important;
}

/* TYPOGRAPHY */
.trust-info h6 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  letter-spacing: 0.3px;
}

.trust-info p {
  margin: 2px 0 0 0;
  font-family: var(--default-font);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ANIMATION */
@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-trust-bar {
    padding: 18px 0;
  }

  .premium-trust-bar::before,
  .premium-trust-bar::after {
    width: 40px;
  }

  .trust-track {
    gap: 14px;
    animation-duration: 18s;
  }

  .trust-card {
    min-width: 230px;
    padding: 10px 18px;
    gap: 12px;
  }

  .trust-icon-container {
    width: 40px;
    height: 40px;
  }

  .trust-icon-container i {
    font-size: 18px !important;
  }

  .trust-info h6 {
    font-size: 13.5px;
  }

  .trust-info p {
    font-size: 11px;
  }
}

/* Story */
/* PREMIUM ARTISAN SECTION */
/* =========================================================
   LUXURY BOTANICAL ABOUT SECTION (COLORFUL GRADIENT THEME)
   ========================================================= */

.luxury-about-section {
  padding: 50px 0;
  /* Premium Soft Multi-Color Gradient Mesh */
  background: radial-gradient(circle at 10% 20%, #F7EBE1 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, #EBF1EA 0%, transparent 45%),
    linear-gradient(135deg, #FFFBF7 0%, #F5ECE5 100%) !important;
  position: relative;
  overflow: hidden;
}

/* LEFT VISUAL COLLAGE */
.about-visual-wrap {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.main-visual {
  position: relative;
  width: 90%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-visual-wrap:hover .main-visual img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 15, 0.25) 0%, transparent 60%);
}

.floating-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Border color matching gradient accent */
  border: 6px solid #F6EDE6 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.floating-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GLASSMORPHISM BADGE */
.experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.badge-content h2 {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.badge-content h2 span {
  color: var(--accent-dark);
}

.badge-content p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 6px 0 0 0;
}

/* COLORFUL BACKGROUND GLOW ORBS */
.floating-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: #E8D7C8;
  /* Soft Peach Glow */
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.7;
}

/* RIGHT CONTENT STYLING */
.about-content {
  padding-left: 20px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-content h2 {
  font-family: var(--heading-font);
  font-size: 42px;
  line-height: 1.2;
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary-color);
  font-style: italic;
}

.about-description {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

/* FEATURE GRID */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.about-feature-box:hover .feature-icon {
  background: var(--accent-color);
  color: var(--heading-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(198, 167, 106, 0.25);
}

.feature-text h5 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* BUTTONS */
.about-btn-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background-color: var(--heading-color);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(18, 24, 15, 0.15);
}

.discover-btn:hover {
  background-color: var(--accent-color);
  color: var(--heading-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198, 167, 106, 0.3);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.link-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-link:hover .link-circle {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: rotate(45deg);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .about-visual-wrap {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
  }

  .main-visual {
    width: 100%;
    height: 420px;
  }

  .floating-visual {
    display: none;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= BANNER ================= */
/* ================= BANNER ================= */

/*---------------------------------------------
Best seller
-------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Poppins:wght@400;500;600;700&display=swap');

/* Section Background & Base Styling */
.skincare-bestseller {
  padding: 50px 0;
  background-color: var(--background-color);
  font-family: var(--default-font);
  color: var(--default-color);
}

@media (max-width: 768px) {
  .skincare-bestseller {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Header Styling */
.skincare-header {
  text-align: center;
  margin-bottom: 50px;
}

.skincare-header .sub-title {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.skincare-header h2 {
  font-family: var(--heading-font);
  font-size: 38px;
  color: var(--heading-color);
  font-weight: 700;
  margin: 0;
}

.skincare-header .divider-gold {
  width: 50px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 15px auto 0;
  border-radius: var(--radius-pill);
}

/* Card Styling */
.skincare-card {
  background: var(--card-background);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
  margin: 10px 0;
}

.skincare-card:hover {
  transform: translateY(-8px);
  background: var(--card-hover-background);
  box-shadow: var(--shadow-hover);
}

/* Badges */
.card-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--badge-best);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: 0.5px;
}

.card-tag.gold-tag {
  background: var(--badge-trending);
}

/* Product Image */
.skincare-img-wrapper {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--surface-alt);
  position: relative;
}

.skincare-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform var(--transition-slow);
}

.skincare-card:hover .skincare-img-wrapper img {
  transform: scale(1.06);
}

/* Details Section */
.skincare-details {
  padding-top: 18px;
  text-align: left;
}

.skincare-category {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.skincare-title {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 600;
  margin: 4px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.skincare-rating {
  font-size: 12px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.skincare-rating span {
  color: var(--muted-color);
  margin-left: 5px;
}

.skincare-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.skincare-price-row .current-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.skincare-price-row .old-price {
  font-size: 14px;
  color: var(--light-text);
  text-decoration: line-through;
}

/* Buttons */
.skincare-btn {
  width: 100%;
  background: var(--button-primary);
  color: var(--contrast-color);
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.skincare-btn:hover {
  background: var(--button-primary-hover);
  color: var(--contrast-color);
}

/* Swiper Nav Elements */
.skincare-slider-container {
  position: relative;
  padding: 0 10px;
}

.swiper-button-next,
.swiper-button-prev {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--heading-color);
  transition: all var(--transition-fast);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  width: 24px !important;
  border-radius: var(--radius-pill) !important;
}







/* Main Section */
.luxury-why-section {
  padding: 50px 0;
  background-color: var(--cream-color);
  /* Updated to --cream-color (#F3EEE5) */
  font-family: var(--default-font);
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .luxury-why-section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Image Showcase */
.luxury-img-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.luxury-img-container img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.luxury-img-container:hover img {
  transform: scale(1.04);
}

/* Glassmorphism Badge on Image */
.luxury-glass-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--overlay-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.luxury-glass-badge i {
  font-size: 28px;
  color: var(--accent-color);
}

.luxury-glass-badge h5 {
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--heading-color);
  margin: 0;
}

.luxury-glass-badge p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* Right Content Styling */
.luxury-content-wrapper {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .luxury-content-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
}

.luxury-header-tag {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.luxury-title {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}

.luxury-title span {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 400;
}

/* Feature List (Timeline Style) */
.luxury-feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.luxury-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card-background);
  padding: 22px 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.luxury-feature-item:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.luxury-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.luxury-feature-icon i {
  font-size: 20px;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.luxury-feature-item:hover .luxury-feature-icon {
  background: var(--accent-color);
}

.luxury-feature-item:hover .luxury-feature-icon i {
  color: var(--contrast-color);
}

.luxury-feature-text h4 {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--heading-color);
  margin: 0 0 5px 0;
  font-weight: 600;
}

.luxury-feature-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}



/* Main Section */
.featured-section {
  padding: 50px 0;
  background-color: var(--background-color);
  font-family: var(--default-font);
  color: var(--default-color);
}

@media (max-width: 768px) {
  .featured-section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Header */
.featured-header {
  text-align: center;
  margin-bottom: 50px;
}

.featured-header .sub-title {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 8px;
}

.featured-header h2 {
  font-family: var(--heading-font);
  font-size: 38px;
  color: var(--heading-color);
  font-weight: 700;
  margin: 0;
}

.featured-header .divider-gold {
  width: 50px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 15px auto 0;
  border-radius: var(--radius-pill);
}

/* Luxury Product Card */
.featured-card {
  background: var(--card-background);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-8px);
  background: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
}

/* Badge */
.featured-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  background: var(--badge-trending);
  color: var(--contrast-color);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-badge.new-badge {
  background: var(--badge-new);
}

/* Image Wrapper */
.featured-img-wrapper {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--surface-alt);
  position: relative;
}

.featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform var(--transition-slow);
}

.featured-card:hover .featured-img-wrapper img {
  transform: scale(1.06);
}

/* Details */
.featured-details {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-category {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.featured-title {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 600;
  margin: 2px 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-rating {
  font-size: 11px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.featured-rating span {
  color: var(--muted-color);
  margin-left: 4px;
}

.featured-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: auto;
}

.featured-price-row .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.featured-price-row .old-price {
  font-size: 13px;
  color: var(--light-text);
  text-decoration: line-through;
}

/* Button */
.featured-btn {
  width: 100%;
  margin-top: auto;
  background: var(--button-primary);
  color: var(--contrast-color);
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.featured-btn:hover {
  background: var(--button-primary-hover);
  color: var(--contrast-color);
}

/* Mobile Adjustments (1 Row = 2 Products) */
@media (max-width: 575px) {
  .featured-card {
    padding: 10px;
  }

  .featured-img-wrapper {
    height: 170px;
  }

  .featured-title {
    font-size: 14px;
  }

  .featured-price-row .current-price {
    font-size: 15px;
  }

  .featured-btn {
    padding: 8px 10px;
    font-size: 11px;
  }

  .featured-badge {
    top: 18px;
    left: 18px;
    font-size: 8px;
    padding: 3px 7px;
  }
}

/*------------------------------------------------
About Section
-------------------------------------------------*/
/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */
.about-new {
  background: var(--background-light);
  padding: 100px 0;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= IMAGE ================= */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* floating badge */
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  padding: 12px 16px;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-badge span {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.image-badge p {
  font-size: 12px;
  margin: 0;
}

/* ================= CONTENT ================= */
.about-new .about-content .about-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
}

.about-new .about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 15px 0;
  color: var(--text-dark);
}

.about-new .about-content h2 span {
  color: var(--accent-color);
}

.about-highlight {
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text {
  color: #666;
  line-height: 1.7;
}

/* ================= STATS ================= */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.about-stats h4 {
  margin: 0;
  color: var(--secondary-color);
  font-weight: 800;
}

.about-stats span {
  font-size: 12px;
  color: #777;
}

/* ================= BUTTONS ================= */
.about-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary-new {
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline-new {
  border: 2px solid var(--secondary-color);
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
}

.btn-outline-new:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-buttons {
    flex-direction: column;
  }
}

/* ================= PROCESS SECTION ================= */
.process-section {
  background: #fff;
  padding: 30px 0;
}

/* HEADER */
.process-header .process-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
}

.process-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 15px 0;
  color: var(--text-dark);
}

.process-header p {
  color: #666;
  max-width: 500px;
  margin: auto;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

/* CARD */
.process-card {
  background: var(--background-light);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid var(--border-light);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ICON NUMBER */
.process-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ecedf0;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  margin: auto;
  margin-bottom: 15px;
}

/* TEXT */
.process-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/*-------------------------------------------------
Contact Section
-------------------------------------------------*/
/* ================= CONTACT BANNER ================= */
/* ================= BANNER ================= */
.contact-banner {
  position: relative;
  background: url('../img/about3.png') center/cover no-repeat;
  padding: 60px 0 60px;
  overflow: hidden;
}

/* overlay */
.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 40, 50, 0.85),
      rgba(20, 30, 35, 0.75));
  z-index: 1;
}

/* subtle glow */
.contact-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-color), transparent);
  opacity: 0.1;
  z-index: 1;
}

/* content */
.banner-overlay {
  position: relative;
  z-index: 2;
}

.banner-content {
  max-width: 600px;
}

/* tag */
.banner-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 10px;
}

/* heading */
.banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.banner-content h1 span {
  color: var(--accent-color);
}

/* subtitle */
.banner-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  font-size: 14px;
}

/* breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-banner {
    padding: 100px 0 60px;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}

/* ================= CONTACT SECTION ================= */
.themed-contact {
  background: linear-gradient(to bottom, var(--background-light), #fff);
  padding: 100px 0;
}

/* ================= TITLE ================= */
.contact-title {
  font-weight: 800;
  color: var(--text-dark);
}

.contact-title span {
  color: var(--accent-color);
}

.contact-subtitle {
  color: #6b6b6b;
  max-width: 550px;
}

/* ================= INFO CARDS ================= */
.contact-info-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);

  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;

  border: 1px solid var(--border-light);
  transition: 0.4s ease;

  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* hover */
.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* icon */
.contact-info-card i {
  font-size: 38px;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

/* heading */
.contact-info-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* ================= MAP ================= */
.map-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  filter: grayscale(0.2) contrast(1.05);
}

/* ================= FORM ================= */
.themed-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  padding: 40px;
  border-radius: 20px;

  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.themed-form h3 {
  color: var(--text-dark);
}

/* ================= INPUT ================= */
.themed-input {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  background: #fafafa;
  transition: 0.3s ease;
  font-size: 14px;
}

/* focus effect */
.themed-input:focus {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.2);
}

/* textarea resize */
textarea.themed-input {
  resize: none;
}

/* ================= BUTTON ================= */
.btn-submit-themed {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #1a1a1a;

  padding: 14px;
  border-radius: 50px;

  font-weight: 600;
  letter-spacing: 1px;

  border: none;
  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* hover */
.btn-submit-themed:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ================= SMALL DETAILS ================= */
.title-divider {
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .themed-contact {
    padding: 70px 0;
  }

  .themed-form {
    padding: 25px;
  }
}

/*---------------------------------------------
Shop Section
--------------------------------------------*/
/* ================= SHOP SECTION ================= */
/* ================= SHOP SECTION ================= */
.shop-section {
  background: linear-gradient(to bottom, #faf7f4, #ffffff);
  padding: 40px 0;
}

/* ================= HEADER ================= */
.shop-header .badge-outline {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.shop-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
}

/* ================= FILTER ================= */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 45px 0;
  position: relative;
  z-index: 20;
}

.filter-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 25;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ================= GRID ================= */
#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= CARD ================= */
.product-card {
  position: relative;
}

.product-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-card:hover .product-box {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* ================= IMAGE ================= */
.product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

/* ================= OVERLAY ================= */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: 0.35s ease;
}

.product-card:hover .hover-overlay {
  opacity: 1;
}

/* ================= BUY BUTTON ================= */
.buy-btn {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--secondary-color));

  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;

  transform: translateY(20px);
  transition: all 0.35s ease;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card:hover .buy-btn {
  transform: translateY(0);
}

.buy-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* ================= INFO ================= */
.product-info {
  padding: 20px 15px;
  text-align: center;
}

.product-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
}

/* ================= BORDER GLOW ================= */
.product-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-box::before {
  border-color: rgba(208, 140, 96, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  #productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-img {
    height: 220px;
  }

  .product-info h5 {
    font-size: 14px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}




/* Footer */
/* ================= FOOTER ================= */
/* ================= PREMIUM FOOTER ================= */
footer,
.main-footer {
  position: relative;
  background: linear-gradient(135deg, #2D1B17 0%, #4E342E 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 50px 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(215, 184, 153, 0.15);
}

/* ===== TEXTURE OVERLAY (fabric feel) ===== */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* ===== SOFT GLOW ===== */
footer::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 184, 153, 0.15), transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.main-footer::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 184, 153, 0.1), transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

footer::before,
footer::after {
  pointer-events: none;
  /* 🔥 MOST IMPORTANT FIX */
}

/* ================= GRID ================= */
.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 45px;
  max-width: 1200px;
  margin: auto;
}

/* ================= LOGO ================= */
/* Container Layout */
.footer-about {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Footer Logo Link */
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Logo Image Styling & Fixes */
.footer-logo img {
  width: 100%;
  /* max-width: 80px; */
  /* Logo ki size yahan se adjust karein */
  height: auto;
  display: block;
  object-fit: contain;

  /* Black/Dark Text Visibility Fix:
     Agar aapke logo ka niche wala text dark/black hai, 
     toh ye filter poore logo ko bright gold/cream shade me convert kar dega */
  /* filter: brightness(0) invert(1); */
}

/* Hover Effect */
.footer-logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Footer Paragraph Styling */
.footer-about p,
.footer-text {
  color: #F8F5EF;
  /* Light cream text color for dark green bg */
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

/* ================= TEXT ================= */
footer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

/* ================= HEADINGS ================= */
footer h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #fff;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* stylish underline */
footer h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* ================= LINKS ================= */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 14px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: #fff;
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(215, 184, 153, 0.4);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* ================= CONTACT ================= */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

footer i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

/* ================= SOCIAL ================= */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 184, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s ease;
}

/* hover glow */
.footer-social a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(215, 184, 153, 0.2);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin: auto;

  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* highlight */
.footer-bottom strong {
  color: var(--accent-color);
}

/* credits */
.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

/* ================= SCROLL TOP ================= */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 25px;

  width: 44px;
  height: 44px;

  background: #fff;
  color: #000;

  border-radius: 50%;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer p {
    margin: auto;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   LUXURY INNER PAGES + HOMEPAGE COMPLETION
   ========================================================= */

.featured-title a,
.skincare-title a {
  color: inherit;
  text-decoration: none;
}

.featured-title a:hover,
.skincare-title a:hover {
  color: var(--primary-color);
}

.skincare-img-wrapper,
.featured-img-wrapper {
  display: block;
}

footer.main-footer,
.main-footer {
  /* background: linear-gradient(135deg, #30352D 0%, #3F4638 55%, #2A2E27 100%); */
  background: #1a1323;
}

.inner-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 70px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 53, 45, 0.25) 0%, rgba(48, 53, 45, 0.78) 100%);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.inner-hero h1 {
  font-family: var(--heading-font);
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 12px;
}

.inner-hero h1 span {
  color: var(--accent-light);
  font-style: italic;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.luxury-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.luxury-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.luxury-breadcrumb a:hover {
  color: var(--accent-light);
}

.category-intro {
  padding: 70px 0 20px;
}

.category-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.category-intro .small-title {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.category-intro h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 16px;
  color: var(--heading-color);
}

.category-intro h2 span {
  color: var(--primary-color);
  font-style: italic;
}

.category-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.intro-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro-stat {
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
}

.intro-stat h4 {
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.intro-stat p {
  font-size: 13px;
  color: var(--muted-color);
  margin: 0;
}

.category-products {
  padding: 20px 0 80px;
}

.ritual-strip {
  background: var(--cream-color);
  padding: 70px 0;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ritual-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.ritual-card .num {
  font-family: var(--heading-font);
  color: var(--accent-color);
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.ritual-card h4 {
  font-family: var(--heading-font);
  margin-bottom: 10px;
}

.ritual-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--background-color);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .quote-icon {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta h6 {
  margin: 0;
  font-size: 14px;
  color: var(--heading-color);
}

.testimonial-meta span {
  font-size: 12px;
  color: var(--muted-color);
}

.newsletter-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #4F5D45, #66745A);
  color: #fff;
}

.newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-wrap h2 {
  font-family: var(--heading-font);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 8px;
}

.newsletter-wrap p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: 360px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  outline: none;
}

.newsletter-form button {
  border: none;
  background: var(--gradient-gold);
  color: var(--heading-color);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  cursor: pointer;
}

.instagram-strip {
  padding: 70px 0 80px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 160px;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-grid a:hover img {
  transform: scale(1.08);
}

.luxury-product-details {
  padding: 70px 0 40px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.details-image {
  background: var(--cream-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.details-image img {
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 720px;
  object-fit: contain;
  background: #fff;
  display: block;
}

.details-kicker {
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.details-info h1 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 3vw, 44px);
  margin: 10px 0 12px;
}

.details-rating {
  color: var(--accent-color);
  font-size: 13px;
  margin-bottom: 16px;
}

.details-rating span {
  color: var(--muted-color);
  margin-left: 6px;
}

.details-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.details-price .now {
  font-size: 30px;
  font-weight: 700;
  color: var(--heading-color);
}

.details-price .was {
  color: var(--light-text);
  text-decoration: line-through;
}

.details-info>p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 22px;
}

.details-meta {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.details-meta p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.details-meta p:last-child {
  margin: 0;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-enquiry,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-enquiry {
  background: var(--button-primary);
  color: #fff;
}

.btn-enquiry:hover {
  background: var(--button-primary-hover);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--border-dark);
  color: var(--heading-color);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.related-section {
  padding: 20px 0 80px;
}

.cta-banner {
  margin: 20px 0 80px;
  background: linear-gradient(135deg, rgba(48, 53, 45, 0.85), rgba(102, 116, 90, 0.75)), url("../img/hero-mainbanner.png") center/contain;
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--heading-font);
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

.about-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 90px 0 50px;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(48, 53, 45, 0.78), rgba(48, 53, 45, 0.35));
}

.about-banner .banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-banner h1 span,
.contact-title span {
  color: var(--accent-color);
  font-style: italic;
}

.product-missing {
  text-align: center;
  padding: 80px 20px;
}

.filter-empty {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--muted-color);
}

@media (max-width: 992px) {

  .category-intro-grid,
  .details-grid,
  .newsletter-wrap,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    min-width: 0;
    width: 100%;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .details-image img {
    height: 380px;
  }

  .intro-stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .inner-hero {
    min-height: 300px;
    padding: 90px 0 40px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* =========================================================
   HOMEPAGE SKINCARE SECTIONS
   ========================================================= */

.concern-section {
  padding: 50px 0;
  background: var(--cream-color);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.concern-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 18px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.concern-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-hover);
  color: inherit;
}

.concern-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-sage);
  color: var(--primary-color);
  font-size: 24px;
}

.concern-card h4 {
  font-family: var(--heading-font);
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.concern-card p {
  font-size: 12px;
  color: var(--muted-color);
  margin: 0;
  line-height: 1.5;
}

.ingredient-section {
  padding: 80px 0;
  background: var(--background-color);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ingredient-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

.ingredient-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.ingredient-card:hover img {
  transform: scale(1.08);
}

.ingredient-card .ing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(48, 53, 45, 0.86) 100%);
}

.ingredient-card .ing-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  z-index: 2;
}

.ingredient-card h4 {
  font-family: var(--heading-font);
  font-size: 22px;
  margin-bottom: 4px;
}

.ingredient-card p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}


.stats-section {
  padding: 50px 0;
  background: var(--primary-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.stat-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  letter-spacing: 0.4px;
}

.journal-section {
  padding: 80px 0;
  background: var(--background-color);
}

.journal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.journal-card:hover {
  transform: translateY(-6px);
}

.journal-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.journal-body {
  padding: 22px;
}

.journal-body span {
  color: var(--accent-color);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.journal-body h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  margin: 8px 0 10px;
}

.journal-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}

.journal-body a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.faq-section {
  padding: 80px 0;
  background: var(--cream-color);
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--default-font);
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.promise-bar {
  padding: 40px 0 70px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.promise-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}

.promise-card i {
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.promise-card h5 {
  font-size: 15px;
  margin-bottom: 4px;
}

.promise-card p {
  font-size: 12px;
  color: var(--muted-color);
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 1200;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
}

@media (max-width: 1200px) {
  .concern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {

  .ingredient-grid,
  .stats-grid,
  .promise-grid,
  .gift-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gift-visual {
    min-height: 240px;
  }
}

@media (max-width: 575px) {

  .concern-grid,
  .ingredient-grid,
  .stats-grid,
  .promise-grid,
  .gift-inner {
    grid-template-columns: 1fr;
  }
}