/* Start custom CSS for html, class: .elementor-element-f0f90d8 *//* ============================================
   HERO SECTION – PREMIUM LUXURY SKINCARE
   COMPACT PRODUCTION-READY CSS
   ============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --primary: #1B4332;
  --secondary: #FFF9F2;
  --accent: #D4AF37;
  --button: #C99700;
  --button-hover: #B58700;
  --heading: #1E293B;
  --text: #64748B;
  --bg: #FFFCF8;
  --white: #ffffff;
  --border: rgba(212, 175, 55, 0.18);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --transition: 0.35s ease;
}

/* ============================================
   HERO SECTION (ISOLATED)
   ============================================ */
.hero-section {
  width: 100%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 38px 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* ============================================
   CONTAINER
   ============================================ */
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

/* ============================================
   LEFT CONTENT
   ============================================ */
.hero-section .hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* ============================================
   PREMIUM BADGE
   ============================================ */
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 249, 242, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: blur(4px);
  margin-bottom: 16px;
}

.hero-section .hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-section .badge-icon {
  font-size: 15px;
  line-height: 1;
}

/* ============================================
   MAIN HEADING
   ============================================ */
.hero-section .hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.18;
  margin: 0 0 18px 0;
  max-width: 600px;
}

.hero-section .hero-heading .highlight {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E56B 40%, #D4AF37 70%, #B8960F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-section .hero-heading span:last-child {
  display: block;
  -webkit-text-fill-color: var(--heading);
}

/* ============================================
   SUB HEADING
   ============================================ */
.hero-section .hero-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 10px 0;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.hero-section .hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0;
  margin: 28px 0 16px 0;
  list-style: none;
  width: 100%;
  max-width: 560px;
}

/* ============================================
   FEATURE CARD
   ============================================ */
.hero-section .feature-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  box-sizing: border-box;
  z-index: 1;
}

.hero-section .feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* ============================================
   FLOWER BACKGROUND (PREMIUM LUXURY FLOWER)
   ============================================ */
.hero-section .feature-flower {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
  filter: blur(1px);
  transform: rotate(20deg);
  animation: flowerRotate 12s linear infinite;
  
  /* Premium flower design using multiple radial gradients */
  background: 
    /* Petal 1 - Top */
    radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.28) 0% 18%, transparent 19%),
    /* Petal 2 - Top Left */
    radial-gradient(circle at 18% 38%, rgba(212, 175, 55, 0.24) 0% 18%, transparent 19%),
    /* Petal 3 - Top Right */
    radial-gradient(circle at 82% 38%, rgba(212, 175, 55, 0.24) 0% 18%, transparent 19%),
    /* Petal 4 - Bottom Left */
    radial-gradient(circle at 28% 82%, rgba(212, 175, 55, 0.22) 0% 18%, transparent 19%),
    /* Petal 5 - Bottom Right */
    radial-gradient(circle at 72% 82%, rgba(212, 175, 55, 0.22) 0% 18%, transparent 19%),
    /* Petal 6 - Left */
    radial-gradient(circle at 8% 50%, rgba(212, 175, 55, 0.20) 0% 14%, transparent 15%),
    /* Petal 7 - Right */
    radial-gradient(circle at 92% 50%, rgba(212, 175, 55, 0.20) 0% 14%, transparent 15%),
    /* Petal 8 - Bottom */
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.20) 0% 14%, transparent 15%),
    /* Center of flower */
    radial-gradient(circle at center, rgba(212, 175, 55, 0.35) 0% 12%, transparent 13%),
    /* Inner glow */
    radial-gradient(circle at 40% 40%, rgba(255, 249, 242, 0.3) 0% 20%, transparent 21%);
  
  border-radius: 50%;
}

/* Additional flower detail with pseudo-elements */
.hero-section .feature-flower::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: 
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0% 15%, transparent 16%),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0% 15%, transparent 16%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0% 15%, transparent 16%),
    radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.15) 0% 15%, transparent 16%);
  border-radius: 50%;
  animation: flowerRotate 8s linear infinite reverse;
}

.hero-section .feature-flower::after {
  content: '';
  position: absolute;
  inset: 40px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.20) 0% 20%, transparent 21%);
  border-radius: 50%;
  animation: flowerRotate 10s linear infinite;
}

@keyframes flowerRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* ============================================
   FEATURE ICON
   ============================================ */
.hero-section .feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF9F2, #F9F2DE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ============================================
   FEATURE TEXT
   ============================================ */
.hero-section .feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  position: relative;
  z-index: 2;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.hero-section .hero-cta {
  width: 100%;
  max-width: 560px;
  margin-top: 12px;
}

.hero-section .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  background: var(--button);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 28px rgba(201, 151, 0, 0.25);
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.hero-section .hero-btn:hover {
  background: var(--button-hover);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(201, 151, 0, 0.35);
}

.hero-section .hero-btn:active {
  transform: scale(0.98);
}

/* ============================================
   RIGHT COLUMN: PRODUCT VISUAL
   ============================================ */
.hero-section .hero-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   PRODUCT WRAPPER & IMAGE
   ============================================ */
.hero-section .product-wrapper {
  position: relative;
  max-width: 430px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-section .product-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(var(--shadow-lg));
  animation: float 5s ease-in-out infinite;
  display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   TABLET RESPONSIVE (768px - 992px)
   ============================================ */
@media (min-width: 768px) and (max-width: 992px) {
  .hero-section {
    padding: 50px 20px;
    min-height: auto;
  }

  .hero-section .hero-container {
    gap: 35px;
  }

  .hero-section .hero-heading {
    font-size: 38px;
  }

  .hero-section .hero-subtext {
    font-size: 16px;
  }

  .hero-section .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-section .product-image {
    max-width: 320px;
  }
}

/* ============================================
   DESKTOP RESPONSIVE (min-width: 993px)
   ============================================ */
@media (min-width: 993px) {
  .hero-section {
    padding: 55px 20px;
    min-height: auto;
  }

  .hero-section .hero-container {
    flex-direction: row;
    gap: 50px;
  }

  .hero-section .hero-content {
    width: 50%;
    align-items: flex-start;
    text-align: left;
  }

  .hero-section .hero-heading {
    font-size: 44px;
  }

  .hero-section .hero-heading .highlight {
    display: inline-block;
  }

  .hero-section .hero-heading span:last-child {
    display: inline-block;
  }

  .hero-section .hero-subtext {
    font-size: 17px;
  }

  .hero-section .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .hero-section .hero-cta {
    max-width: 100%;
  }

  .hero-section .hero-btn {
    width: auto;
    padding: 0 32px;
  }

  .hero-section .hero-visual {
    width: 50%;
  }

  .hero-section .product-image {
    max-width: 360px;
  }
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  .hero-section {
    padding: 38px 18px;
    min-height: auto;
  }

  .hero-section .hero-container {
    gap: 24px;
  }

  .hero-section .hero-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-section .hero-heading {
    font-size: 30px;
  }

  .hero-section .hero-subtext {
    font-size: 15px;
  }

  .hero-section .hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .hero-section .feature-card {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section .hero-cta {
    max-width: 100%;
  }

  .hero-section .hero-btn {
    width: 100%;
    height: 54px;
    padding: 0 24px;
  }

  .hero-section .hero-visual {
    width: 100%;
  }

  .hero-section .product-wrapper {
    max-width: 400px;
  }

  .hero-section .product-image {
    max-width: 280px;
  }
}

/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-section {
    padding: 32px 16px;
  }

  .hero-section .hero-container {
    gap: 20px;
  }

  .hero-section .hero-heading {
    font-size: 28px;
  }

  .hero-section .hero-subtext {
    font-size: 14px;
  }

  .hero-section .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-section .hero-btn {
    height: 50px;
    font-size: 15px;
    padding: 0 20px;
  }

  .hero-section .feature-card {
    padding: 14px 16px;
  }

  .hero-section .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .hero-section .feature-text {
    font-size: 14px;
  }

  .hero-section .product-image {
    max-width: 240px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6eb21ed *//* ==================================================
   LUXURY SKINCARE SECTION – COMPLETE CSS
   ================================================== */

/* ----- RESET / BASE (scoped) ----- */
.skin-benefits-section *,
.skin-benefits-section *::before,
.skin-benefits-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ----- SECTION ----- */
.skin-benefits-section {
  width: 100%;
  background: #FFFCF8;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ----- CONTAINER ----- */
.skin-benefits-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ----- DECORATIVE LAYER (absolute, behind content) ----- */
.falling-floral-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ==================================================
   BABY PINK FLOWERS (CSS‑only 5‑petal)
   ================================================== */
.falling-flower {
  position: absolute;
  opacity: 0.45;
  animation: flowerFall linear infinite;
  /* base size will be overridden by modifier classes */
  width: 32px;
  height: 32px;
}

/* flower shape using pseudo-elements */
.falling-flower::before,
.falling-flower::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #F8C8DC;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

/* main petals – 5‑petal effect via overlapping circles */
.falling-flower::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 30%, #FDDDE8, #F8C8DC);
  border-radius: 50%;
  box-shadow: 
    inset -3px -3px 6px rgba(180, 120, 140, 0.1),
    0 0 0 2px rgba(212, 175, 55, 0.2);
}

.falling-flower::after {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  background: radial-gradient(circle at center, #D4AF37, #B8942E);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  z-index: 2;
}

/* additional petals via box-shadows on the main element */
.falling-flower {
  box-shadow: 
    0 0 0 0 #F8C8DC,
    /* petal 2 */ 0 -18px 0 -6px #F8C8DC,
    /* petal 3 */ 0 18px 0 -6px #F8C8DC,
    /* petal 4 */ -18px 0 0 -6px #F8C8DC,
    /* petal 5 */ 18px 0 0 -6px #F8C8DC,
    /* subtle glow */ 0 0 20px rgba(248, 200, 220, 0.2);
  border-radius: 50%;
  background: transparent;
}

/* size modifiers */
.flower-1 { width: 28px; height: 28px; left: 5%; top: -50px; animation-duration: 24s; animation-delay: 0s; }
.flower-2 { width: 38px; height: 38px; left: 18%; top: -70px; animation-duration: 28s; animation-delay: -5s; }
.flower-3 { width: 22px; height: 22px; left: 31%; top: -40px; animation-duration: 20s; animation-delay: -10s; }
.flower-4 { width: 32px; height: 32px; left: 45%; top: -60px; animation-duration: 26s; animation-delay: -3s; }
.flower-5 { width: 42px; height: 42px; left: 58%; top: -80px; animation-duration: 30s; animation-delay: -14s; }
.flower-6 { width: 26px; height: 26px; left: 70%; top: -45px; animation-duration: 22s; animation-delay: -7s; }
.flower-7 { width: 35px; height: 35px; left: 82%; top: -65px; animation-duration: 27s; animation-delay: -18s; }
.flower-8 { width: 24px; height: 24px; left: 94%; top: -35px; animation-duration: 21s; animation-delay: -11s; }
.flower-9 { width: 30px; height: 30px; left: 12%; top: -55px; animation-duration: 25s; animation-delay: -6s; }
.flower-10 { width: 20px; height: 20px; left: 50%; top: -30px; animation-duration: 19s; animation-delay: -9s; }

/* ----- FLOWER FALL ANIMATION ----- */
@keyframes flowerFall {
  0% {
    transform: translateY(-80px) translateX(0) rotate(0deg) scale(0.9);
    opacity: 0.3;
  }
  15% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(45vh) translateX(25px) rotate(120deg) scale(1.05);
    opacity: 0.5;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(calc(100vh + 120px)) translateX(-25px) rotate(300deg) scale(0.85);
    opacity: 0.1;
  }
}

/* ==================================================
   GREEN LEAVES (CSS‑only curved leaf)
   ================================================== */
.falling-leaf {
  position: absolute;
  opacity: 0.35;
  animation: leafFall linear infinite;
  border-radius: 50% 0 50% 50%;
  background: #1B4332;
  transform-origin: bottom left;
  /* base size overridden by modifiers */
  width: 30px;
  height: 15px;
}

/* alternate leaf color and shape variation */
.falling-leaf::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50% 0 50% 50%;
  background: rgba(127, 183, 126, 0.35);
  opacity: 0.4;
}

/* leaf modifier – sizes & positions */
.leaf-1 { width: 30px; height: 15px; left: 10%; top: -60px; animation-duration: 28s; animation-delay: 0s; background: #1B4332; }
.leaf-2 { width: 38px; height: 18px; left: 24%; top: -80px; animation-duration: 32s; animation-delay: -6s; background: #7FB77E; }
.leaf-3 { width: 25px; height: 13px; left: 37%; top: -45px; animation-duration: 24s; animation-delay: -11s; background: #1B4332; }
.leaf-4 { width: 34px; height: 17px; left: 51%; top: -70px; animation-duration: 30s; animation-delay: -4s; background: #7FB77E; }
.leaf-5 { width: 28px; height: 14px; left: 65%; top: -55px; animation-duration: 26s; animation-delay: -15s; background: #1B4332; }
.leaf-6 { width: 40px; height: 19px; left: 76%; top: -90px; animation-duration: 34s; animation-delay: -8s; background: #7FB77E; }
.leaf-7 { width: 26px; height: 13px; left: 87%; top: -50px; animation-duration: 23s; animation-delay: -19s; background: #1B4332; }
.leaf-8 { width: 35px; height: 17px; left: 97%; top: -75px; animation-duration: 29s; animation-delay: -12s; background: #7FB77E; }
.leaf-9 { width: 22px; height: 12px; left: 15%; top: -40px; animation-duration: 22s; animation-delay: -3s; background: #1B4332; }
.leaf-10 { width: 33px; height: 16px; left: 60%; top: -65px; animation-duration: 27s; animation-delay: -10s; background: #7FB77E; }

/* leaf fall animation – gentle drifting */
@keyframes leafFall {
  0% {
    transform: translateY(-80px) translateX(0) rotate(0deg) scale(0.9);
    opacity: 0.2;
  }
  20% {
    opacity: 0.45;
  }
  50% {
    transform: translateY(45vh) translateX(30px) rotate(180deg) scale(1.05);
    opacity: 0.4;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(calc(100vh + 130px)) translateX(-30px) rotate(360deg) scale(0.8);
    opacity: 0.05;
  }
}

/* ==================================================
   MAIN CONTENT (above decorative layer)
   ================================================== */
.skin-benefits-content {
  position: relative;
  z-index: 2;
}

/* ----- SECTION HEADER ----- */
.section-header {
  text-align: center;
  margin-bottom: 46px;
}

.premium-badge {
  display: inline-block;
  background: #FFF9F2;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #1B4332;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.main-heading {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #1E293B;
  line-height: 1.2;
  margin: 0 0 12px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-heading .highlight {
  color: #D4AF37;
  background: linear-gradient(135deg, #D4AF37, #C99700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.short-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* ----- FEATURES GRID ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}

/* ----- FEATURE CARD ----- */
.feature-card {
  background: #FFF9F2;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  padding: 30px 22px 28px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(27, 67, 50, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(27, 67, 50, 0.11);
  border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(248, 200, 220, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 1.6rem;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.06);
}

.feature-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1B4332;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* ----- CTA AREA ----- */
.cta-area {
  text-align: center;
  margin-top: 50px;
}

.cta-text {
  font-size: 1.1rem;
  color: #64748B;
  margin: 0 0 18px 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C99700;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 16px 34px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(201, 151, 0, 0.25);
  cursor: pointer;
}

.cta-button:hover {
  background: #1B4332;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 67, 50, 0.25);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* ==================================================
   RESPONSIVE
   ================================================== */

/* ---- TABLET (768px – 1023px) ---- */
@media (max-width: 1023px) {
  .skin-benefits-section {
    padding: 50px 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .main-heading {
    font-size: 1.9rem;
  }

  /* smaller flowers */
  .flower-1, .flower-9 { width: 24px; height: 24px; }
  .flower-2 { width: 32px; height: 32px; }
  .flower-3 { width: 20px; height: 20px; }
  .flower-4 { width: 28px; height: 28px; }
  .flower-5 { width: 36px; height: 36px; }
  .flower-6 { width: 22px; height: 22px; }
  .flower-7 { width: 30px; height: 30px; }
  .flower-8 { width: 20px; height: 20px; }
  .flower-10 { width: 18px; height: 18px; }

  /* smaller leaves */
  .leaf-1 { width: 26px; height: 13px; }
  .leaf-2 { width: 32px; height: 16px; }
  .leaf-3 { width: 22px; height: 11px; }
  .leaf-4 { width: 28px; height: 14px; }
  .leaf-5 { width: 24px; height: 12px; }
  .leaf-6 { width: 34px; height: 17px; }
  .leaf-7 { width: 22px; height: 11px; }
  .leaf-8 { width: 30px; height: 15px; }
  .leaf-9 { width: 20px; height: 10px; }
  .leaf-10 { width: 28px; height: 14px; }

  .falling-flower { opacity: 0.4; }
  .falling-leaf { opacity: 0.3; }
}

/* ---- MOBILE (below 768px) ---- */
@media (max-width: 767px) {
  .skin-benefits-section {
    padding: 40px 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-heading {
    font-size: 1.6rem;
  }

  .short-description {
    font-size: 0.92rem;
  }

  .feature-card {
    padding: 24px 18px 22px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }

  .cta-area {
    margin-top: 36px;
  }

  /* reduce flower visibility & count (keep a few visible) */
  .falling-flower {
    opacity: 0.25 !important;
  }
  .falling-leaf {
    opacity: 0.2 !important;
  }

  /* hide some flowers on mobile to keep clean */
  .flower-3, .flower-6, .flower-9, .flower-10 {
    display: none;
  }
  /* hide some leaves on mobile */
  .leaf-3, .leaf-5, .leaf-7, .leaf-9 {
    display: none;
  }

  /* smaller remaining flowers */
  .flower-1 { width: 20px; height: 20px; left: 3%; }
  .flower-2 { width: 26px; height: 26px; left: 20%; }
  .flower-4 { width: 22px; height: 22px; left: 40%; }
  .flower-5 { width: 28px; height: 28px; left: 60%; }
  .flower-7 { width: 24px; height: 24px; left: 80%; }
  .flower-8 { width: 18px; height: 18px; left: 95%; }

  /* smaller remaining leaves */
  .leaf-1 { width: 20px; height: 10px; left: 8%; }
  .leaf-2 { width: 26px; height: 13px; left: 28%; }
  .leaf-4 { width: 22px; height: 11px; left: 48%; }
  .leaf-6 { width: 28px; height: 14px; left: 68%; }
  .leaf-8 { width: 24px; height: 12px; left: 88%; }
  .leaf-10 { width: 22px; height: 11px; left: 55%; display: block; }

  /* keep decorations away from text */
  .falling-floral-decor {
    opacity: 0.6;
  }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  .falling-flower,
  .falling-leaf {
    animation: none !important;
    opacity: 0.3 !important;
    transform: none !important;
  }

  .feature-card {
    transition: none !important;
  }
  .feature-card:hover {
    transform: none !important;
  }
  .cta-button {
    transition: none !important;
  }
  .cta-button:hover {
    transform: none !important;
    background: #C99700 !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d30614 *//* SECTION 3 — PREMIUM INGREDIENTS */
/* All .elementor-459 .elementor-element.elementor-element-1d30614s scoped to .ingredients- wrapper */

.ingredients-section {
  background-color: #FFFCF8;
  padding: 45px 20px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.ingredients-container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

/* --- HEADER --- */
.ingredients-header {
  text-align: center;
  margin-bottom: 28px;
}

.ingredients-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1B4332;
  background: transparent;
  margin-bottom: 6px;
}

.ingredients-heading {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  color: #1E293B;
  max-width: 750px;
  margin: 0 auto 12px;
  letter-spacing: -0.01em;
}

.ingredients-heading .highlight {
  color: #1B4332;
}

.ingredients-divider {
  width: 60px;
  height: 2px;
  background: #D4AF37;
  margin: 10px auto 0;
  border-radius: 2px;
  opacity: 0.7;
}

/* --- GRID: 6 cards --- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 20px 0 12px;
  list-style: none;
  padding: 0;
}

/* --- CARDS --- */
.ingredients-card {
  background: #FFF9F2;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  padding: 20px 12px 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.01);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 180px;
  box-sizing: border-box;
}

.ingredients-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04), 0 6px 12px rgba(0, 0, 0, 0.02);
}

.ingredients-icon {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}

.ingredients-card:hover .ingredients-icon {
  background: rgba(212, 175, 55, 0.12);
}

.ingredients-card-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 17px;
  font-weight: 600;
  color: #1B4332;
  line-height: 1.3;
  margin: 6px 0 4px;
  letter-spacing: -0.01em;
}

.ingredients-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #64748B;
  margin: 6px 0 0;
  max-width: 180px;
  flex: 1 1 auto;
}

.ingredients-card-accent {
  width: 24px;
  height: 2px;
  background: #D4AF37;
  margin: 10px auto 0;
  border-radius: 2px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- BOTTOM ROW (text + CTA + product) --- */
.ingredients-bottom-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}

.ingredients-text-block {
  flex: 1 1 400px;
  max-width: 700px;
  text-align: center;
}

.ingredients-paragraph {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
  margin: 0 auto;
  max-width: 700px;
}

.ingredients-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #C99700;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(201, 151, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  margin-top: 18px;
  cursor: pointer;
}

.ingredients-cta:hover {
  background: #B38600;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 151, 0, 0.25);
}

.ingredients-cta:active {
  transform: translateY(0px);
}

/* --- UPDATED PRODUCT VISUAL — REAL BOTTLE --- */
.ingredients-product-visual {
  flex: 0 0 auto;
  width: 200px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ingredients-bottle-wrapper {
  position: relative;
  width: 180px;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}

/* Real product bottle image */
.ingredients-bottle-image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.06));
  transition: filter 0.3s ease;
}

.ingredients-bottle-image:hover {
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
}

/* --- BOTTOM DECORATIVE LINE --- */
.ingredients-footer-line {
  width: 60px;
  height: 2px;
  background: #D4AF37;
  margin: 20px auto 0;
  border-radius: 2px;
  opacity: 0.3;
}

/* --- RESPONSIVE --- */

/* Tablet: 3 columns */
@media screen and (max-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .ingredients-heading {
    font-size: 32px;
  }
  .ingredients-section {
    padding: 40px 20px;
  }
  .ingredients-product-visual {
    width: 160px;
  }
  .ingredients-bottle-wrapper {
    width: 150px;
  }
  .ingredients-bottle-image {
    max-width: 150px;
  }
}

/* Mobile: 2 columns */
@media screen and (max-width: 700px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ingredients-section {
    padding: 30px 14px;
  }
  .ingredients-heading {
    font-size: 26px;
    max-width: 100%;
  }
  .ingredients-label {
    font-size: 11px;
  }
  .ingredients-card {
    padding: 15px 8px 14px;
    min-height: 150px;
    border-radius: 12px;
  }
  .ingredients-icon {
    font-size: 38px;
    width: 54px;
    height: 54px;
  }
  .ingredients-card-title {
    font-size: 14px;
  }
  .ingredients-card-desc {
    font-size: 12px;
    max-width: 100%;
  }
  .ingredients-bottom-row {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .ingredients-text-block {
    flex: 1 1 auto;
    width: 100%;
  }
  .ingredients-paragraph {
    font-size: 13px;
  }
  .ingredients-cta {
    padding: 10px 20px;
    font-size: 13px;
    margin-top: 14px;
  }
  .ingredients-product-visual {
    width: 100%;
    justify-content: center;
  }
  .ingredients-bottle-wrapper {
    width: 140px;
  }
  .ingredients-bottle-image {
    max-width: 140px;
  }
  .ingredients-footer-line {
    margin-top: 16px;
  }
}

/* Small mobile (320–380px) */
@media screen and (max-width: 420px) {
  .ingredients-section {
    padding: 24px 10px;
  }
  .ingredients-grid {
    gap: 8px;
  }
  .ingredients-card {
    padding: 12px 6px 10px;
    min-height: 130px;
    border-radius: 10px;
  }
  .ingredients-icon {
    font-size: 32px;
    width: 44px;
    height: 44px;
    margin-bottom: 4px;
  }
  .ingredients-card-title {
    font-size: 13px;
  }
  .ingredients-card-desc {
    font-size: 11px;
    line-height: 1.4;
  }
  .ingredients-heading {
    font-size: 22px;
  }
  .ingredients-divider {
    width: 40px;
  }
  .ingredients-cta {
    padding: 10px 16px;
    font-size: 12px;
    width: auto;
  }
  .ingredients-bottle-wrapper {
    width: 110px;
  }
  .ingredients-bottle-image {
    max-width: 110px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7f7b842 *//* SECTION 5 — CUSTOMER REVIEWS + FAQ + FINAL CTA */
/* strictly scoped under .luxury-reviews-faq-section */

.luxury-reviews-faq-section {
  /* main section */
  width: 100%;
  background: #FFFCF8;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 55px 24px;
  min-height: auto;
  font-family: 'Georgia', 'Times New Roman', serif;

  /* color variables */
  --forest-green: #1B4332;
  --warm-cream: #FFF9F2;
  --soft-gold: #D4AF37;
  --elegant-gold: #C99700;
  --heading: #1E293B;
  --text: #64748B;
  --ivory: #FFFCF8;
  --white: #FFFFFF;
}

/* background decoration – subtle, premium, low opacity */
.luxury-reviews-faq-section::before {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 56px;
  color: var(--soft-gold);
  opacity: 0.04;
  letter-spacing: 20px;
  white-space: nowrap;
  transform: rotate(4deg);
  pointer-events: none;
  z-index: 0;
}

.luxury-reviews-faq-section::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, var(--soft-gold) 0%, transparent 70%);
  opacity: 0.035;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* content container */
.luxury-reviews-faq-section .container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* ---- SECTION HEADER ---- */
.luxury-reviews-faq-section .section-header {
  text-align: center;
  margin-bottom: 28px;
}

.luxury-reviews-faq-section .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--soft-gold);
  margin-bottom: 8px;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.luxury-reviews-faq-section .main-heading {
  color: var(--forest-green);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.luxury-reviews-faq-section .sub-heading {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
  margin: 10px auto 25px;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

/* ---- REVIEWS GRID ---- */
.luxury-reviews-faq-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 8px;
}

/* review cards */
.luxury-reviews-faq-section .review-card {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 21px;
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* subtle top gold decorative line */
.luxury-reviews-faq-section .review-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--soft-gold);
  border-radius: 10px;
  opacity: 0.5;
}

/* star rating */
.luxury-reviews-faq-section .stars {
  color: var(--soft-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

/* review text */
.luxury-reviews-faq-section .review-text {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px 0;
  font-family: 'Arial', 'Helvetica', sans-serif;
  flex: 1;
}

/* verified customer */
.luxury-reviews-faq-section .customer {
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.3px;
  font-family: 'Arial', 'Helvetica', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}

.luxury-reviews-faq-section .customer .check {
  color: var(--soft-gold);
  font-size: 13px;
  margin-right: 2px;
}

/* review card hover (desktop) */
@media (hover: hover) {
  .luxury-reviews-faq-section .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(27, 67, 50, 0.10);
    border-color: rgba(212, 175, 55, 0.50);
  }
}

/* ---- FAQ SECTION ---- */
.luxury-reviews-faq-section .faq-wrapper {
  margin-top: 38px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.luxury-reviews-faq-section .faq-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft-gold);
  text-align: center;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.luxury-reviews-faq-section .faq-heading {
  font-size: 28px;
  line-height: 1.2;
  color: var(--forest-green);
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.luxury-reviews-faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* FAQ item */
.luxury-reviews-faq-section .faq-item {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: 13px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.luxury-reviews-faq-section .faq-item.active {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.05);
}

/* question button */
.luxury-reviews-faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 15px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-green);
  cursor: pointer;
  font-family: 'Arial', 'Helvetica', sans-serif;
  gap: 12px;
  transition: background 0.2s;
}

.luxury-reviews-faq-section .faq-question:hover {
  background: rgba(27, 67, 50, 0.02);
}

/* plus icon */
.luxury-reviews-faq-section .faq-question .icon {
  color: var(--soft-gold);
  font-size: 19px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.luxury-reviews-faq-section .faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* answer */
.luxury-reviews-faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 18px 0 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.luxury-reviews-faq-section .faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 18px 15px 18px;
}

.luxury-reviews-faq-section .faq-answer p {
  margin: 0;
}

/* ---- FINAL CTA ---- */
.luxury-reviews-faq-section .cta-box {
  margin-top: 32px;
  background: var(--forest-green);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 28px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(27, 67, 50, 0.12);
}

.luxury-reviews-faq-section .cta-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 7px;
  font-weight: 600;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.luxury-reviews-faq-section .cta-heading {
  color: var(--warm-cream);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 8px 0;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.luxury-reviews-faq-section .cta-sub {
  color: rgba(255, 249, 242, 0.78);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

/* CTA button */
.luxury-reviews-faq-section .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--elegant-gold);
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(201, 151, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Arial', 'Helvetica', sans-serif;
  text-decoration: none;
}

.luxury-reviews-faq-section .cta-btn:hover {
  background: #B58600;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 151, 0, 0.30);
}

.luxury-reviews-faq-section .cta-btn .arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s;
}

.luxury-reviews-faq-section .cta-btn:hover .arrow {
  transform: translateX(4px);
}

/* ---- TABLET RESPONSIVE (max-width: 900px) ---- */
@media (max-width: 900px) {
  .luxury-reviews-faq-section {
    padding: 45px 20px;
  }

  .luxury-reviews-faq-section .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .luxury-reviews-faq-section .main-heading {
    font-size: 30px;
  }

  .luxury-reviews-faq-section .cta-heading {
    font-size: 26px;
  }

  .luxury-reviews-faq-section .faq-heading {
    font-size: 26px;
  }
}

/* ---- MOBILE RESPONSIVE (max-width: 600px) ---- */
@media (max-width: 600px) {
  .luxury-reviews-faq-section {
    padding: 35px 16px;
  }

  .luxury-reviews-faq-section .main-heading {
    font-size: 26px;
    line-height: 1.2;
  }

  .luxury-reviews-faq-section .sub-heading {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .luxury-reviews-faq-section .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .luxury-reviews-faq-section .review-card {
    padding: 18px;
    border-radius: 15px;
  }

  .luxury-reviews-faq-section .stars {
    font-size: 15px;
  }

  .luxury-reviews-faq-section .review-text {
    font-size: 13px;
  }

  .luxury-reviews-faq-section .faq-wrapper {
    margin-top: 30px;
  }

  .luxury-reviews-faq-section .faq-heading {
    font-size: 23px;
    margin-bottom: 16px;
  }

  .luxury-reviews-faq-section .faq-item {
    border-radius: 12px;
  }

  .luxury-reviews-faq-section .faq-question {
    padding: 13px 14px;
    font-size: 13px;
  }

  .luxury-reviews-faq-section .faq-answer {
    font-size: 12.5px;
  }

  .luxury-reviews-faq-section .faq-item.active .faq-answer {
    padding: 0 14px 13px 14px;
  }

  .luxury-reviews-faq-section .cta-box {
    margin-top: 26px;
    padding: 24px 17px;
    border-radius: 17px;
  }

  .luxury-reviews-faq-section .cta-heading {
    font-size: 22px;
  }

  .luxury-reviews-faq-section .cta-sub {
    font-size: 13px;
  }

  .luxury-reviews-faq-section .cta-btn {
    width: auto;
    min-width: 145px;
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* ---- VERY SMALL PHONES (max-width: 380px) ---- */
@media (max-width: 380px) {
  .luxury-reviews-faq-section .main-heading {
    font-size: 24px;
  }

  .luxury-reviews-faq-section .faq-heading {
    font-size: 21px;
  }

  .luxury-reviews-faq-section .cta-heading {
    font-size: 20px;
  }

  .luxury-reviews-faq-section .review-card {
    padding: 16px;
  }

  .luxury-reviews-faq-section .cta-box {
    padding: 21px 14px;
  }

  .luxury-reviews-faq-section .cta-btn {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .luxury-reviews-faq-section .faq-question {
    font-size: 12px;
    padding: 12px 12px;
  }
}/* End custom CSS */