/*!*******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/home.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ============================================
   SIGMA HERS - REFACTORED CSS
   Version: 2.0
   Author: Optimized by Claude
   Description: Clean, performant, maintainable CSS
   ============================================ */
/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. CSS Variables & Design Tokens
   2. Reset & Base Styles
   3. Utility Classes
   4. Typography
   5. Buttons & Forms
   6. Header & Navigation
   7. Hero Section
   8. Features Section
   9. Health Journey Section
   10. How It Works Section
   11. Science Section
   12. Statistics & Calculator
   13. Treatment Options
   14. Transformation Gallery
   15. Testimonials
   16. Video Carousel
   17. News Section
   18. CTA Section
   19. Footer
   20. Cart Sidebar
   21. Modals
   22. Trust Badges
   23. Marquee
   24. Animations
   25. Responsive Design
   26. Print Styles
   ========================================== */
/* ==========================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
  /* Colors - Primary */
  --primary: #0f5c4a;
  --primary-hover: #0b4b3d;
  --primary-light2: #cde4db;
  --primary-alpha: rgba(15, 92, 74, 0.1);
  --line: #e2e0da;
  /* Colors - Backgrounds */
  --bg: #f7f5f1;
  --bg-card: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  /* Colors - Text */
  --text-primary: #111714;
  --text-secondary: #4f5a54;
  --text-tertiary: #6a766f;
  --text-light: #9ca3af;
  /* Colors - Borders & Lines */
  --border: #e2e0da;
  --border-light: #f0f0f0;
  /* Colors - Accents */
  --accent-gold: #c7a24b;
  --accent-info: #eaf5f1;
  --accent-success: #10b981;
  --accent-error: #e74c3c;
  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 92, 74, 0.12);
  --shadow-lg: 0 8px 25px rgba(15, 92, 74, 0.18);
  --shadow-xl: 0 16px 32px rgba(15, 92, 74, 0.25);
  --shadow: 0 10px 26px rgba(17, 23, 20, 0.06);
  --shadow2: rgba(15, 92, 74, 0.22) 0px 16px 32px;
  --shadow3: 0 10px 26px rgba(17, 23, 20, 0.06);
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 9998;
  --z-modal: 9999;
  --z-toast: 10000;
  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1400px;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 70px;
}

body.menu-open,
body.cart-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* ==========================================
   3. UTILITY CLASSES
   ========================================== */
.container {
  max-width: var(--bp-xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  /* padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem); */
}

.container-section {
  width: 100%;
  padding: 0 clamp(1rem, 10vw, 8.75rem);
}

/* Spacing Utilities */
.section-padding {
  padding: clamp(3.5rem, 8vw, 6.25rem) 0;
}

.section-padding-sm {
  padding: clamp(2rem, 5vw, 3.75rem) 0;
}

/* Flexbox Utilities */
.flex {
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.flex-between {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   4. TYPOGRAPHY
   ========================================== */
.section-heading {
  font-size: clamp(2rem, 5vw, 4.375rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.section-subheading {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 42.5rem;
  margin: 0 auto;
}

.badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: var(--space-sm);
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* ==========================================
   5. BUTTONS & FORMS
   ========================================== */
.btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

/* Focus States */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Input Fields */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  /* box-shadow: 0 0 0 3px var(--primary-alpha); */
}

/* ==========================================
   6. HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 1rem 1.25rem;
  gap: var(--space-lg);
  max-width: var(--bp-xl);
  margin: 0 auto;
  min-height: 70px;
}

/* Logo */
.logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 35px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  transition: opacity var(--transition-base);
  /* z-index: calc(var(--z-fixed) + 1); */
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 28px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Desktop Navigation */
nav {
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -ms-flex-align: center;
      align-items: center;
}

nav a {
  position: relative;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-hover);
  transition: width var(--transition-base);
}

nav a:hover,
nav a.active {
  color: var(--primary-hover);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: var(--space-md);
}

.nav-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: var(--space-md);
}

/* Search Container */
.search-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: white;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: all var(--transition-base);
}

.search-input {
  border: none;
  outline: none;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  background: transparent;
  color: var(--text-primary);
  width: 200px;
  transition: width var(--transition-base);
}

.search-input::-webkit-input-placeholder {
  color: var(--text-light);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-input::-moz-placeholder {
  color: var(--text-light);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-input:-ms-input-placeholder {
  color: var(--text-light);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-input::-ms-input-placeholder {
  color: var(--text-light);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-input::placeholder {
  color: var(--text-light);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-button {
  background: var(--primary);
  border: none;
  padding: 0.813rem 1rem;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: background var(--transition-base);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

.search-button i {
  color: white;
  font-size: 1rem;
}

.search-button:hover {
  background: var(--primary-hover);
}

.easy-autocomplete {
  display: -ms-flexbox;
  display: flex;
}

.easy-autocomplete-container {
  left: unset;
  position: fixed;
  width: 15%;
  margin-left: 5px;
  background: white;
  margin-top: 40px;
  border-radius: 10pz;
}

.easy-autocomplete-container ul {
  /* padding: 10px; */
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.easy-autocomplete-container ul li {
  list-style: none;
  margin-bottom: 8px;
  padding: 5px;
}

.easy-autocomplete-container ul li:hover {
  background-color: var(--info);
  color: var(--text-light);
}

.easy-autocomplete-container ul li a:hover {
  color: var(--text-secondary);
}

/* Cart & Profile Buttons */
.cart-button,
.profile-button,
.expert-talk-wa {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: color var(--transition-base);
}

.cart-button:hover,
.profile-button:hover {
  color: var(--primary-hover);
}

.cart-button i,
.profile-button i {
  font-size: 1.125rem;
  color: var(--primary);
}

.expert-talk-wa i {
  font-size: 1.5rem;
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 0.688rem;
  font-weight: 700;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: calc(var(--z-fixed) + 2);
  -ms-flex-order: -1;
      order: -1;
  width: 40px;
  height: 40px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-base);
  display: block;
}

.hamburger.active span {
  display: none;
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-overlay);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%);
  z-index: var(--z-fixed);
  box-shadow: 4px 0 24px rgba(15, 92, 74, 0.15);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  transition: opacity var(--transition-slow), -webkit-transform var(--transition-slow);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  transition: transform var(--transition-slow), opacity var(--transition-slow), -webkit-transform var(--transition-slow);
  overflow-y: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.mobile-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.mobile-menu-header {
  background: var(--primary);
  padding: 1.25rem 1.5rem 1.875rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.mobile-menu-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.625rem;
}

.mobile-menu-brand img {
  height: 28px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-menu-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  cursor: pointer;
  color: white;
  transition: all var(--transition-base);
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.mobile-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0;
  padding: 1.5rem 0;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-align: start;
      align-items: start;
}

.mobile-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  transition: all var(--transition-base);
  min-height: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  border-left: 4px solid transparent;
}

.mobile-nav a span {
  color: var(--text-primary);
  margin-left: 23px;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: var(--info);
  z-index: 0;
}

#mobile-nav .fa-solid,
.fas {
  z-index: 1;
  color: var(--primary);
}

.btn-login-mobile {
  width: 80%;
  background: var(--info);
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 16px;
  /* box-shadow: 0 4px 8px rgba(225, 127, 48, 0.3); */
  transition: all 0.3s ease;
  margin: 0 auto;
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
  background: var(--primary-alpha);
  border-left-color: var(--primary);
}

.mobile-menu-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--info);
}

.mobile-menu-footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
.hero-section {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 30px;
  min-height: 80vh;
  margin-top: 10px;
  position: relative;
}

.hero-card {
  -ms-flex: 1;
      flex: 1;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 3.75rem 2.5rem;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  transition: all var(--transition-base);
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 450px;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.hero-card:nth-child(1) .card-content {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.hero-card:nth-child(2) .card-content {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.hero-card:nth-child(3) .card-content {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.card-label {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(15, 92, 74, 0.08);
  border: 1px solid rgba(15, 92, 74, 0.18);
  color: var(--primary-hover);
}

.card-title {
  font-size: clamp(1.5rem, 5vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.card-description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 2.188rem;
  opacity: 0.95;
}

.card-head {
  margin: 10px 6px 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  padding: 14px;
  border: 1px solid var(--line);
}

.hero-get-started-btn {
  position: relative;
  z-index: 10;
  padding: 0.875rem 2.813rem;
  padding-right: 2.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  margin-top: 2.813rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.hero-get-started-btn svg {
  margin-left: 0.375rem;
}

.hero-get-started-btn:hover {
  background: var(--text-primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Banner Text Area */
.banner-text-area {
  position: absolute;
  top: 50%;
  right: 25px;
  max-width: 42%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner-text-area h1 {
  font-size: clamp(2rem, 4vw, 4.688rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  font-weight: 700;
}

.banner-text-area p {
  font-size: clamp(1rem, 4vw, 1.688rem);
  margin: 15px 0 0;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 500;
}

.banner-text-area .btn2 {
  margin-top: 40px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.563rem;
  margin-top: 1.875rem;
  position: relative;
  width: 100%;
}

.stat-box {
  text-align: center;
  padding: 0.938rem 0.625rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: clamp(0.563rem, 1.5vw, 0.625rem);
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #c2bfbf !important;
}

.stats-card .headings {
  display: none;
}

/* ==========================================
   8. FEATURES SECTION
   ========================================== */
.features {
  margin: 0 auto;
  padding: 3.125rem 2.813rem;
  background: var(--primary);
}

.features-wrapper {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 0.938rem;
  width: 740px;
  margin: auto;
}

.feature-pill {
  background: white;
  width: 199px;
  border-radius: var(--radius-md);
  padding: 0.938rem 1.25rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.features-wrapper .feature-pill:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.features-wrapper .feature-pill:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.features-wrapper .feature-pill:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.features-wrapper .feature-pill:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.feature-pill:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
  background: linear-gradient(135deg, #fef8f0 0%, #ffffff 100%);
}

.feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all var(--transition-base);
}

.feature-pill:hover .feature-icon {
  box-shadow: 0 5px 15px var(--text-tertiary);
}

.feature-icon i {
  color: white;
  font-size: clamp(0.938rem, 2vw, 1.1rem);
}

.feature-pill span {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.feature-pill:hover span {
  color: var(--primary-hover);
}

/* Mobile Scroll View */
.features-scroll {
  display: -ms-flexbox;
  display: flex;
  gap: 0.938rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.938rem;
  margin: 0 -0.938rem;
}

.features-scroll::-webkit-scrollbar {
  display: none;
}

.features-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.features-scroll .feature-pill {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  scroll-snap-align: center;
  min-width: 234px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: none;
          animation: none;
}

/* ==========================================
   9. HEALTH JOURNEY SECTION
   ========================================== */
.health-journey-section {
  padding: 30px 0;
  padding-top: 0;
}

.heroInner {
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 18px;
  background-color: var(--bg-card);
  border-radius: var(--radius-xl);
}

.heroText {
  max-width: 720px;
}

.kicker {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.625rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.813rem;
  letter-spacing: 0.2px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  display: inline-block;
}

.health-journey-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.6px;
  font-weight: 700;
}

.health-journey-section p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.pill {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.75rem;
  font-weight: 800;
  font-size: 0.813rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.btn2 {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all var(--transition-base);
  font-size: 14px;
}

.btn2.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
}

.btn2.ghost:hover {
  /* border-color: var(--primary); */
  color: var(--primary);
  box-shadow: none;
}

.btn2.primary {
  background: var(--primary) !important;
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn2.primary:hover {
  background: var(--primary-hover);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* ==========================================
   10. HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
  padding: 56px 0;
  background: var(--bg);
  position: relative;
}

.hiw-heading {
  text-align: center;
  margin-bottom: 4.375rem;
}

.section-title-how-it-works {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.section-title-how-it-works p {
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  color: var(--primary);
  max-width: 600px;
  margin: 0 auto;
  font-size: x-large;
  text-align: center;
}

.section-title-how-it-works img {
  width: 38%;
  height: auto;
  border-radius: var(--radius-sm);
}

.steps {
  position: relative;
  width: 60%;
  margin: 0 0 0 auto;
  border-left: 1px solid var(--border);
  padding-left: 8.75rem;
}

.steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-hover) 50%, var(--primary-light) 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}

.step {
  position: relative;
  margin-bottom: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 3rem;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.step:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.step:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.step:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.how-it-works .step-content {
  -ms-flex: 1;
      flex: 1;
  background: var(--primary-light2);
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
  border: 2px solid var(--text-primary);
  position: relative;
  text-align: center;
}

.how-it-works .step-content:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow2);
}

.step-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.step-content p {
  font-size: clamp(0.813rem, 1.8vw, 0.938rem);
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.step-icon-container {
  width: clamp(80px, 15vw, 100px);
  height: clamp(80px, 15vw, 100px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.how-it-works .step-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid var(--text-primary);
  box-shadow: 0 4px 25px var(--text-tertiary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}

.step-icon svg {
  color: white;
  width: clamp(32px, 6vw, 40px);
  height: clamp(32px, 6vw, 40px);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: clamp(28px, 5vw, 35px);
  height: clamp(28px, 5vw, 35px);
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  z-index: 3;
}

/* Arrow indicators */
.how-it-works .step:nth-child(odd) .step-content::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid var(--primary);
  -webkit-filter: drop-shadow(2px 0 3px rgba(15, 92, 74, 0.1));
          filter: drop-shadow(2px 0 3px rgba(15, 92, 74, 0.1));
}

.how-it-works .step:nth-child(even) .step-content::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid var(--primary);
  -webkit-filter: drop-shadow(-2px 0 3px rgba(15, 92, 74, 0.1));
          filter: drop-shadow(-2px 0 3px rgba(15, 92, 74, 0.1));
}

.how-it {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  width: 60%;
}

.how-it ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-it ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.how-it ul li h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 18px;
}

.how-it ul li p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
  text-align: left;
  margin-left: 0;
}

.num1 {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--info);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* ==========================================
   11. SCIENCE SECTION
   ========================================== */
.science-section {
  padding: 56px 0;
  background: var(--primary-hover);
}

.science-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 0.625rem;
}

.headings {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.headings h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
}

.headings p {
  margin: 10px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.headings.headings2 h2 {
  color: var(--bg-card);
}

.science-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 16px;
}

.science-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(207, 231, 223, 0.45);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 1.625rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.science-card::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(15, 92, 74, 0.18), rgba(15, 92, 74, 0) 60%);
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}

.science-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.science-icon {
  width: 110px;
  height: 110px;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--accent-info), #ffffff);
  border: 1px solid rgba(15, 92, 74, 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 0.875rem;
  position: relative;
  z-index: 1;
}

.hexagon-pattern {
  width: 130px;
  height: 125px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.hexagon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.science-card:hover .hexagon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.yellow-light {
  background: var(--text-secondary);
}

.yellow-medium {
  background: var(--primary);
}

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

.pie-chart {
  width: 120px;
  height: 120px;
  position: relative;
  background: var(--bg);
  border-radius: 50%;
  overflow: hidden;
}

.pie-slice {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  background: conic-gradient(var(--primary) 0deg 252deg, var(--accent-info) 252deg 360deg);
  border-radius: 50%;
  transition: all var(--transition-slow);
  border: 1px solid var(--primary);
}

.science-card:hover .pie-slice {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.science-card-content {
  -ms-flex: 1;
      flex: 1;
  text-align: center;
}

.science-card-content h3 {
  margin: 0.875rem 0 0.5rem;
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.science-card-content p {
  margin: 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.813rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  width: 80%;
  margin: auto;
}

/* ==========================================
   12. STATISTICS & CALCULATOR
   ========================================== */
.statistics {
  padding: 56px 0;
  border-top: 1px solid var(--border-light);
}

.statistics-wrapper {
  display: grid;
  grid-template-columns: 60% 37%;
  gap: 2.5rem;
  -ms-flex-align: center;
      align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-card {
  padding: 7.813rem 1.875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: slideInLeft 0.8s ease forwards;
          animation: slideInLeft 0.8s ease forwards;
  background: linear-gradient(180deg, #fff, var(--accent-info));
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.875rem;
}

.stats-card img {
  border-radius: var(--radius-md);
}

.stats-card h3 {
  margin: 0 0 1.625rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.1;
  color: var(--primary);
}

.percentage-wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.25rem;
  background: white;
  padding: 1.375rem 2.813rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

/* .percentage-wrapper:hover {
  box-shadow: 0 16px 32px rgba(15, 92, 74, 0.22);
} */
.arrow-icon {
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
  font-weight: bold;
  width: 25px;
  height: 40px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  display: flex;
}

.arrow-icon img {
  width: 25px;
  height: 40px;
}

.percentage-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.percentage-home {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.percentage-label {
  font-size: clamp(0.75rem, 1.5vw, 0.813rem);
  color: var(--text-secondary);
  margin-top: 0.4rem;
  font-weight: 500;
}

.stats-card p {
  margin: 0;
  text-align: center;
  color: var(--primary);
  font-size: 0.813rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 450px;
}

/* Calculator Card */
.calculator-card {
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-animation: slideInRight 0.8s ease forwards;
          animation: slideInRight 0.8s ease forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  border: 1px solid var(--border);
}

.calculator-title {
  margin: 0 0 1.625rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.1;
  color: var(--text-primary);
}

.unit-toggle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0;
  margin-bottom: 1.313rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  border-radius: 1rem;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.unit-btn {
  -ms-flex: 1;
      flex: 1;
  padding: 0.625rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border-radius: 1rem;
}

.unit-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.unit-btn:hover:not(.active) {
  background: var(--text-tertiary);
  color: var(--border);
}

.starting-weight-label {
  text-align: center;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.starting-weight-display {
  text-align: center;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  /* background: #f5f5f5; */
  padding: 1rem;
  padding-right: 0;
  border-radius: 1rem;
  /* margin-bottom: 1rem; */
  /* border: 1px solid #ebebeb; */
  /* box-shadow: 0 16px 32px rgba(15, 92, 74, 0.22); */
}

.range-container {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.range-slider {
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary-hover) 50%, var(--text-secondary) 50%, var(--text-tertiary) 100%);
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin: 1rem 0;
  cursor: pointer;
  padding: 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 3px solid var(--text-secondary);
  box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-fast);
  transition: all var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  box-shadow: var(--shadow-lg);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 3px solid var(--text-secondary);
  box-shadow: var(--shadow-md);
  -moz-transition: all var(--transition-fast);
  transition: all var(--transition-fast);
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-lg);
}

.range-labels {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.result-section {
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 1rem;
  border: 1px solid #ebebeb;
  /* box-shadow: 0 16px 32px rgba(15, 92, 74, 0.22); */
}

.result-label {
  font-size: clamp(0.813rem, 1.5vw, 0.875rem);
  color: var(--primary-hover);
  margin-bottom: 0;
  font-weight: 500;
}

.result-weight {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.disclaimer {
  font-size: clamp(0.688rem, 1.5vw, 0.75rem);
  color: var(--accent-info);
  text-align: center;
  line-height: 1.6;
  padding: 1rem;
  background: var(--primary);
  border-radius: 0.75rem;
  margin: 0;
}

/* ==========================================
   13. TREATMENT OPTIONS
   ========================================== */
.treatment-options {
  /* padding: 3.75rem 1.875rem;
  background: var(--bg);
  border-top: 1px solid var(--border-light); */
}

.treatment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.premium-badge {
  text-align: center;
  margin-bottom: 0.938rem;
}

.premium-badge span {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-info);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  font-weight: 700;
}

.section-title-home-treatments {
  text-align: center;
  margin-bottom: 1.875rem;
}

.section-title-home-treatments h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.938rem;
}

.section-title-home-treatments p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow3);
}

.product-card-area {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 14px;
}

.action-buttons {
  text-align: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
  -ms-flex-align: start;
      align-items: start;
  -ms-flex-direction: column;
      flex-direction: column;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 50px;
  background: #1a3a2e;
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 2;
  letter-spacing: 0.3px;
}

.product-image-section {
  width: 100%;
  height: 300px;
  /* background: #f8f9fa; */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: start;
  -ms-flex-pack: start;
      justify-content: start;
  overflow: hidden;
  /* border-bottom: 1px solid var(--border-light); */
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.product-image-section img {
  /* width: 100%;
  height: auto;
  object-fit: cover; */
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--line);
}

.product-content-section {
  padding: 16px;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.product-sku {
  display: none;
}

.best-for-badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #0369a1;
}

.best-for-badge i {
  font-size: 1rem;
}

.highlights {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.highlights-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.625rem;
}

.highlights-header i {
  color: var(--primary);
  font-size: 1.1rem;
}

.highlights-header span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
}

.info-label ul {
  margin-bottom: 3px;
}

.highlights-list li {
  padding: 0.2rem 0 0.2rem 1.5rem;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 400;
}

.highlights-list li:before {
  content: "✔";
  position: absolute;
  left: -0.2rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background-color: var(--info);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.info-grid {
  /* background: #f8f9fa;
  border: 1px solid var(--border-light); */
  border-radius: var(--radius-sm);
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: -12px;
}

.info-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 0;
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.info-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.price-section {
  /* margin-bottom: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light); */
}

.price-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0;
}

.from-text {
  /* font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500; */
  font-weight: 950;
  color: var(--text-primary);
}

.product-price {
  /* font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary); */
  font-weight: 950;
  color: rgb(34, 49, 44);
}

.per-month {
  /* font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500; */
  font-weight: 950;
  color: rgb(34, 49, 44);
}

.cancel-text {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin: 0;
}

.cart-action-buttons {
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.cart-action-buttons .btn {
  -ms-flex: 1;
      flex: 1;
  padding: 0.438rem 1.25rem;
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.cart-action-buttons .btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.cart-action-buttons .btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.cart-action-buttons .btn-dark {
  background: var(--primary);
  border: none;
  color: white;
}

.cart-action-buttons .btn-dark:hover {
  background: var(--primary-hover);
}

.coupon-code {
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 0.625rem 0 1.25rem;
}

.coupon-code-input {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.75rem 0.938rem;
  -ms-flex: 1;
      flex: 1;
  font-size: 0.875rem;
  outline: none;
  border-right: none;
}

.coupon-code-input::-webkit-input-placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.coupon-code-input::-moz-placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.coupon-code-input:-ms-input-placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.coupon-code-input::-ms-input-placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.coupon-code-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.coupon-code-input:focus {
  border-color: var(--primary);
}

.coupon-btn {
  padding: 0.75rem 1.563rem;
  font-size: 0.875rem;
  border: 1px solid var(--primary);
  background: var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: white;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-base);
}

.coupon-btn:hover {
  background: var(--primary-hover);
}

/* .add-to-cart-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: none;
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
} */
/* .add-to-cart-btn:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
} */
.whats-included-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
  color: var(--text-primary);
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-align: left;
  margin-bottom: 18px;
}

.whats-included-btn:hover {
  color: var(--primary);
}

.assessment-link {
  text-align: center;
  margin-top: 1rem;
}

.assessment-link a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.assessment-link a:hover {
  color: var(--primary);
}

/* ==========================================
   14. TRANSFORMATION GALLERY
   ========================================== */
.transformation-section {
  padding: 0px 0;
  position: relative;
  overflow: hidden;
}

.gallery-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5rem;
  margin-top: 3.125rem;
}

.gallery-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-grid {
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.transformation-item {
  -ms-flex: 0 0 calc(33.333% - 0.875rem);
      flex: 0 0 calc(33.333% - 0.875rem);
  min-width: calc(33.333% - 0.875rem);
  padding: 0;
}

.image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4b896 0%, #c9a581 100%);
}

.image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.image-label-left,
.image-label-right {
  position: absolute;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text-primary);
}

.image-label-left {
  left: 1rem;
}

.image-label-right {
  right: 1rem;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.gallery-btn:hover {
  background: var(--primary-hover);
  border: 1px solid var(--text-primary);
}

.gallery-btn:hover i {
  color: var(--accent-info);
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0.5rem;
  margin-top: 1.875rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.gallery-dot.active {
  width: 26px;
  border-radius: 13px;
  background: var(--primary);
}

.transformation-area {
  width: 100%;
}

.transformation-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.transformation-main img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ==========================================
   15. TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 6.25rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.testimonials2 {
  padding: 56px 0;
}

.section-title-testimonials {
  text-align: center;
  margin-bottom: 1.25rem;
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}

.section-subtitle {
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  color: var(--text-tertiary);
  max-width: 700px;
  margin: 0 auto 3.125rem;
}

.testimonials-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: white;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: all var(--transition-base);
  border: 1px solid var(--line);
}

/* .testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  cursor: pointer;
} */
.stars {
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  margin-bottom: 5px;
  text-align: left;
  -ms-flex-pack: start;
      justify-content: start;
}

.star {
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.testimonial-card p {
  -ms-flex-positive: 1;
      flex-grow: 1;
  color: var(--text-secondary);
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 0;
}

.author {
  /* border-top: 2px solid var(--accent-gold); */
  padding-top: 10px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.testimonial-carousel {
  position: relative;
  padding: 0 3.75rem;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: var(--primary);
  border: 2px solid var(--border);
  border-radius: 50%;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-prev {
  left: -35px;
}

.testimonial-next {
  right: -35px;
}

.testimonial-prev i,
.testimonial-next i {
  font-size: 1.5rem;
  color: var(--accent-info);
  transition: all var(--transition-base);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  border-color: var(--primary-hover);
}

.testimonial-prev:hover i,
.testimonial-next:hover i {
  color: var(--accent-info);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary);
  opacity: 0.3;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet:hover {
  opacity: 0.5;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 35px;
  border-radius: 5px;
  opacity: 1;
}

/* ==========================================
   16. VIDEO CAROUSEL
   ========================================== */
.video-carousel-section {
  background: var(--bg);
  padding: 1.563rem 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  max-width: var(--bp-xl);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.563rem;
}

.section-header h2 {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.938rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.video-swiper-wrapper {
  width: 100%;
  position: relative;
}

.video-swiper {
  width: 100%;
  max-width: var(--bp-xl);
  margin: 0 auto;
  padding: 1.875rem 0 4.375rem;
  position: relative;
}

.video-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: -webkit-transform var(--transition-base);
  transition: transform var(--transition-base);
  transition: transform var(--transition-base), -webkit-transform var(--transition-base);
  cursor: pointer;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #d4a574 0%, #c99566 100%);
  overflow: hidden;
}

.video-player {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-base);
}

.video-card.playing .video-overlay {
  opacity: 0;
}

.video-card.playing:hover .video-overlay {
  opacity: 1;
}

.brand-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  font-weight: 600;
  color: #c99566;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.375rem;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  z-index: 1;
}

.quote-text {
  color: white;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.625rem 0.938rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  pointer-events: auto;
}

.video-bottom-text {
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: var(--primary);
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px !important;
  height: 55px !important;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  color: var(--primary) !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: white !important;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-pagination {
  bottom: 20px !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto !important;
}

/* ==========================================
   17. NEWS SECTION
   ========================================== */
.news-section {
  background: var(--bg);
  padding: 56px 0;
}

.news-container {
  max-width: var(--bp-xl);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 2rem) 1rem;
}

.news-header {
  text-align: center;
  margin-bottom: 3.125rem;
}

.news-badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--accent-info);
  padding: clamp(0.5rem, 2vw, 0.625rem) clamp(1.25rem, 4vw, 1.5rem);
  border-radius: var(--radius-full);
  font-size: clamp(0.813rem, 2vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.news-title {
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 700;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
  padding: 0 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 4vw, 1.875rem);
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  transition: all var(--transition-base);
}

.news-card:hover {
  box-shadow: var(--shadow);
  /* border-color: var(--primary); */
}

.news-card-image {
  width: 100%;
  height: clamp(180px, 30vw, 200px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card-image picture {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.news-card-image picture img {
  width: auto;
  -o-object-fit: fill;
  object-fit: fill;
  height: 70px;
}

.news-card:nth-child(4) .news-card-image picture img {
  height: 50px;
}

.news-source {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: clamp(0.375rem, 1.5vw, 0.5rem) clamp(0.75rem, 3vw, 1rem);
  border-radius: var(--radius-xl);
  font-size: clamp(0.688rem, 1.5vw, 0.75rem);
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.news-card-content {
  padding: clamp(1.25rem, 4vw, 1.25rem);
}

.news-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1.8vw, 0.813rem);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-headline {
  font-size: clamp(1.063rem, 3vw, 1.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.313rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-reuters {
  background-color: #fff;
}

.news-ndtv {
  background-color: #000;
}

.news-toi {
  background-color: #f3f4f3;
}

.news-et {
  background-color: #ffe9e1;
}

/* ==========================================
   18. CTA SECTION
   ========================================== */
.cta-section {
  padding: 0;
  /* background: var(--primary); */
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(900px 360px at 30% 20%, rgba(15, 92, 74, 0.2), rgba(15, 92, 74, 0.08) 52%, transparent 74%), linear-gradient(180deg, #ffffff, var(--accent-info));
  padding: clamp(1.5rem, 1vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--primary-light);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--primary-hover);
  border-radius: 0 0 10px 10px;
}

.cta-title {
  font-size: 30px;
  line-height: 1.2;
  margin: 0px;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.cta-description {
  margin: 10px 0px 0px;
  color: var(--muted);
  line-height: 1.6;
  width: 80%;
}

.cta-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cta-buttons form {
  margin: 0;
  width: auto;
}

.btn-primary-cta {
  background: var(--primary);
  color: white;
  border: none;
  padding: clamp(0.9rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-full);
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary-cta:hover {
  box-shadow: var(--shadow-xl);
  background: var(--primary-hover);
  color: var(--accent-info);
}

.btn-primary-cta:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-secondary-cta {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: clamp(0.9rem, 2vw, 1.2rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-full);
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-secondary-cta:hover {
  background: var(--primary);
  color: white;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary-cta:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.journey-area {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: radial-gradient(900px 360px at 30% 20%, rgba(15, 92, 74, 0.2), rgba(15, 92, 74, 0.08) 52%, rgba(15, 92, 74, 0) 74%), linear-gradient(180deg, #fff, var(--info));
  box-shadow: var(--shadow);
  padding: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ==========================================
   19. FOOTER
   ========================================== */
footer {
  /* background: var(--line); */
  color: white;
  padding: 36px 0 28px 0;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
  margin-bottom: clamp(1rem, 1vw, 1rem);
  max-width: var(--bp-xl);
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  color: var(--accent-gold);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: clamp(0.875rem, 2vw, 0.95rem);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 18px;
}

.footer-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .footer-section ul li {
  margin-bottom: 0.5rem;
} */
.footer-section a {
  /* color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(0.813rem, 1.8vw, 0.9rem);
  transition: color var(--transition-base);
  display: inline-block;
  font-weight: 700; */
  display: block;
  color: var(--muted);
  padding: 8px 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer-section img {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  border: 0px solid var(--line);
}

.footer-collapse-header::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-section a:hover {
  color: var(--text-tertiary);
}

.footer-cta {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 0.5rem;
  text-decoration: none;
}

.footer-cta:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  max-width: var(--bp-xl);
  margin: 0 auto;
}

/* .footer-note {
  margin-left: auto;
} */
.footer-collapse-content {
  border: none;
  margin: 0.313rem 0;
}

.footer-collapse-content summary.footer-collapse-header {
  list-style: none;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0.625rem 0;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
}

.footer-collapse-content summary.footer-collapse-header::-webkit-details-marker {
  display: none;
}

.footer-collapse-content[open] summary.footer-collapse-header {
  color: var(--text-primary);
}

.footer-collapse-content ul.footer-links {
  margin-top: 0.5rem;
  padding-left: 0;
}

.footer-collapse-content ul.footer-links li {
  margin-bottom: 0.5rem;
}

/* ==========================================
   20. CART SIDEBAR
   ========================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: var(--z-modal);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform var(--transition-bounce);
  transition: transform var(--transition-bounce);
  transition: transform var(--transition-bounce), -webkit-transform var(--transition-bounce);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.cart-sidebar.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cart-header {
  padding: 1.5rem 1.5rem 1.125rem;
  border-bottom: 1px solid var(--border-light);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
  box-shadow: var(--shadow-xs);
}

.cart-header-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.75rem;
}

.cart-header-title h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.cart-count-badge {
  background: var(--primary);
  color: #fff;
  min-width: 26px;
  height: 26px;
  font-size: 0.813rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.cart-close-btn {
  background: #f8f8f8;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.125rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: var(--radius-sm);
}

.cart-close-btn:hover {
  background: var(--border-light);
  color: var(--text-primary);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* Free Shipping Progress */
.cart-shipping__wrapper {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fff4e6 100%);
  border-bottom: 1px solid #ffe5cc;
  margin-bottom: 0.5rem;
}

.cart-shipping__numOuter,
.cart-shipping__success {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.625rem;
  text-align: center;
}

.cart-shipping__num {
  color: var(--primary);
  font-weight: 700;
}

.cart-shipping__success {
  color: var(--accent-success);
}

.cart-shippingThreshold__bar {
  height: 8px;
  background: rgba(15, 92, 74, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.cart-shippingThreshold__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius-xl);
  transition: width var(--transition-slow);
  box-shadow: 0 0 10px rgba(15, 92, 74, 0.5);
}

.cart-body {
  -ms-flex: 1;
      flex: 1;
  overflow-y: auto;
  padding: 0;
  background: #fafafa;
}

.cart-body::-webkit-scrollbar {
  width: 6px;
}

.cart-body::-webkit-scrollbar-track {
  background: #f8f8f8;
}

.cart-body::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: var(--radius-sm);
}

.cart-body::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

.cart-empty {
  text-align: center;
  padding: 5rem 1.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
}

.cart-empty i {
  font-size: 4rem;
  color: var(--border-light);
  margin-bottom: 1.5rem;
}

.cart-empty h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cart-empty p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.continue-shopping-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.938rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.continue-shopping-btn:hover {
  background: var(--primary-hover);
  color: #fff !important;
}

.cart-items {
  padding: 1rem 1.5rem;
}

.products {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.5rem;
}

.cart-item.product {
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  -webkit-animation: slideInRight 0.4s ease backwards;
          animation: slideInRight 0.4s ease backwards;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid transparent;
  margin-bottom: 0;
}

.cart-item.product:hover {
  background: #f8f8f8;
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.cart-item-image {
  width: 85px;
  height: 85px;
  background: #fafafa;
  border-radius: var(--radius-sm);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-details {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
  line-height: 1.4;
  padding-right: 30px;
}

.cart-item-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: var(--accent-error);
  cursor: pointer;
  font-size: 0.875rem;
  width: 28px;
  height: 28px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  opacity: 0.6;
}

.cart-item-remove:hover {
  opacity: 1;
  background: #ffe8e8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.cart__meta-text {
  margin: 0.25rem 0;
}

.cart__meta-text small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.5;
}

.cart__meta-text strong {
  color: var(--text-secondary);
}

.quantity-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 0.625rem;
  margin-top: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price-badge.cart-item-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.cart-item-price {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.text-decoration-line-through {
  font-size: 0.813rem;
  color: var(--text-light);
  text-decoration: line-through;
  white-space: nowrap;
}

.qty-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.375rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.188rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #f8f8f8;
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all var(--transition-base);
  font-weight: 600;
}

.quantity-btn:hover {
  background: var(--primary);
  color: #fff;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.quantity-btn:hover i {
  color: #fff;
}

.quantity-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.quantity-value {
  min-width: 30px;
  height: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 0.5rem;
}

.cart-footer {
  padding: 0;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.coupon-code {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: #fafafa;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  -ms-flex-align: start;
      align-items: flex-start;
}

.coupon-code-input {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all var(--transition-base);
  background: #ffffff;
  font-family: inherit;
}

.coupon-code-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-alpha);
}

.coupon-code-input::-webkit-input-placeholder {
  color: var(--text-light);
}

.coupon-code-input::-moz-placeholder {
  color: var(--text-light);
}

.coupon-code-input:-ms-input-placeholder {
  color: var(--text-light);
}

.coupon-code-input::-ms-input-placeholder {
  color: var(--text-light);
}

.coupon-code-input::placeholder {
  color: var(--text-light);
}

.coupon-code-input.is-invalid {
  border-color: var(--accent-error);
  background: #fff5f5;
}

.coupon-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: inherit;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.coupon-btn:hover {
  background: var(--primary-hover);
}

.invalid-feedback,
.valid-feedback {
  width: 100%;
  font-size: 0.813rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}

.invalid-feedback {
  color: var(--accent-error);
}

.valid-feedback {
  color: var(--accent-success);
}

.price-summary {
  padding: 1.25rem 1.5rem;
}

.buy-detail.cart-subtotal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0.875rem;
  padding-bottom: 0;
  border-bottom: none;
}

.buy-detail.cart-subtotal:last-of-type {
  margin-bottom: 0;
  padding-top: 0.75rem;
  border-top: 2px solid var(--border-light);
}

.cart-subtotal-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
}

.cart-subtotal-value {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-subtotal-value.text-success {
  color: var(--accent-success) !important;
  font-weight: 700;
}

#cart-total .cart-subtotal-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

#cart-total .cart-subtotal-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
}

.badge.bg-no-dark.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
  color: white !important;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.688rem;
  font-weight: 600;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.375rem;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-md);
}

.remove-coupon-btn {
  border: none !important;
  background: none !important;
  color: white !important;
  cursor: pointer;
  padding: 0 !important;
  margin-left: 0.375rem !important;
  font-size: 0.75rem !important;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.remove-coupon-btn:hover {
  opacity: 1;
}

.discount-badge {
  background: var(--accent-success);
  padding: 0.375rem 0.5rem;
  color: #fff;
  border-radius: var(--radius-sm);
}

.cart-action-buttons {
  padding: 1.25rem 1.5rem 1.5rem;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.cart-action-buttons .btn {
  -ms-flex: 1;
      flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.938rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-family: inherit;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0.5rem;
}

.cart-action-buttons .btn-dark,
.cart-action-buttons .uni--button {
  background: var(--primary);
  color: white !important;
}

.cart-action-buttons .btn-dark:hover,
.cart-action-buttons .uni--button:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
}

.cart-action-buttons .btn-outline-dark {
  background: white;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}

.cart-action-buttons .btn-outline-dark:hover {
  border-color: var(--primary-hover) !important;
  color: var(--accent-info) !important;
  background: var(--primary);
}

.cart-toast {
  position: fixed;
  top: 100px;
  right: -400px;
  background: linear-gradient(135deg, var(--accent-success) 0%, #059669 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.75rem;
  transition: right var(--transition-bounce);
  min-width: 280px;
}

.cart-toast.show {
  right: 1.5rem;
}

.cart-toast i {
  font-size: 1.25rem;
}

.cart-toast-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.cart-bounce {
  -webkit-animation: cartBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: cartBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==========================================
21. MODALS
========================================== */
.modal {
  display: none;
  position: fixed;
  z-index: var(--z-toast);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 1.25rem;
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-xl);
  -webkit-animation: modalSlideIn 0.3s ease;
          animation: modalSlideIn 0.3s ease;
}

.close-modal {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: bold;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--primary);
  background: var(--text-tertiary);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.modal-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-right: 40px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-list li {
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: clamp(0.813rem, 1.8vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}

.modal-list li:last-child {
  border-bottom: none;
}

.modal-list li i {
  position: absolute;
  left: 0.5rem;
  top: 0.875rem;
  color: var(--primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* ==========================================
22. TRUST BADGES
========================================== */
.trust-badges-section {
  padding: 20px 0;
  /* background-color: var(--primary-alpha); */
}

.trust-badges-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.trust-badge-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.938rem;
  transition: -webkit-transform var(--transition-base);
  transition: transform var(--transition-base);
  transition: transform var(--transition-base), -webkit-transform var(--transition-base);
  border: 1px solid var(--line);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.7rem;
  /* box-shadow: var(--shadow-sm); */
  transition: all var(--transition-base);
}

.trust-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.trust-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  max-width: 175px;
  font-weight: 800;
}

.trust-badges-scroll {
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 0.938rem;
  margin: 0 -0.938rem;
}

.trust-badges-scroll::-webkit-scrollbar {
  display: none;
}

.trust-badges-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.trust-badges-scroll .trust-badge-item {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  scroll-snap-align: center;
  min-width: 250px;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0.625rem 0.938rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

/* ==========================================
23. MARQUEE
========================================== */
.sh-marquee-container {
  background: linear-gradient(90deg, #fff, var(--accent-info));
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  height: 40px;
}

.sh-marquee-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.sh-marquee-content {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: none;
          transform: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  white-space: nowrap;
  height: 100%;
}

.sh-marquee-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 3.125rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  line-height: 32px;
}

.sh-marquee-content:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* ==========================================
24. ANIMATIONS
========================================== */
/* Card */
.card-inner {
  padding: 18px 16px 16px;
  background: var(--info);
}

.headline {
  text-align: center;
  margin: 10px 0 4px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.subhead {
  text-align: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

/* Result card */
.result-title {
  text-align: center;
  margin: 10px 0 10px;
  font-size: 16px;
  color: var(--muted);
}

.result {
  border-radius: 18px;
  border: 1px solid rgba(15, 92, 75, 0.18);
  background: linear-gradient(180deg, #fff, var(--accent-info));
  padding: 16px 14px;
}

.result-big {
  text-align: center;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin: 2px 0 6px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: #29413b;
  font-size: 14px;
  line-height: 1.45;
  margin-left: 22px;
}

.bullets li {
  margin: 6px 0;
}

/* Social proof */
.proof {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  margin: 12px 2px 10px;
  color: #29413b;
  font-weight: 650;
  line-height: 1.2;
}

.badge2 {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 92, 75, 0.12);
  border: 1px solid rgba(15, 92, 75, 0.22);
}

.badge2 svg {
  width: 14px;
  height: 14px;
  fill: var(--brand);
}

/* Comparison */
.compare {
  margin-top: 8px;
  padding: 10px 8px 2px;
}

.compare-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  margin-bottom: 8px;
  gap: 10px;
}

.compare-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 2px;
}

.compare-val {
  font-weight: 700;
  font-size: 30px;
  color: var(--brand2);
  letter-spacing: -0.02em;
}

.arrow {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0.55;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

/* Disclaimer */
.disclaimer2 {
  margin: 12px 6px 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  text-align: center;
}

/* CTA */
.cta {
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(15, 92, 75, 0.96), rgba(11, 74, 61, 0.96));
  color: #fff;
  text-decoration: none;
  display: block;
  box-shadow: 0 18px 40px rgba(15, 92, 75, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta:hover {
  color: var(--chip);
}

.cta .topline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}

.cta .subline {
  text-align: center;
  font-size: 13px;
  opacity: 0.92;
  margin-top: 6px;
}

.cta small {
  display: block;
  text-align: center;
  margin-top: 6px;
  opacity: 0.85;
  font-size: 12px;
}

.footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 34, 31, 0.06);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* new calculatoer */
.pillRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
  margin: 8px 0 18px;
}

.toggle {
  width: 320px;
  background: #f7e2cf;
  padding: 8px;
  border-radius: 999px;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.toggle .meta {
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.toggle button {
  -ms-flex: 1;
      flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 12px;
  font-weight: 700;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  border-radius: 999px;
  transition: 0.2s ease;
  z-index: 1;
}

.toggle button.active {
  color: white;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(216, 137, 76, 0.35);
}

.section {
  margin: 8px 6px 14px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.labelRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.labelRow .label {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 600;
}

.weightBox {
  min-width: 190px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: baseline;
      align-items: baseline;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.weightBox .num {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.weightBox .unit {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.inputs {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 10px 0 2px;
  -ms-flex-align: center;
      align-items: center;
  display: none;
}

.inputs input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  outline: none;
}

.inputs .hint {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.rangeWrap {
  margin-top: 12px;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 12px;
  padding: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, var(--info), var(--primary)) !important;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: white;
  border: 4px solid var(--accent);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: white;
  border: 4px solid var(--accent);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.minmax {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 10px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  display: none;
}

/* Projection card */
.projection {
  margin: 10px 6px 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  padding: 14px;
  border: 1px solid var(--line);
}

.projection .title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.68);
  margin: 6px 0 2px;
}

.projection .big {
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 2px 0 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.projection .big span {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.6px;
}

.projection .sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.chartWrap {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px;
}

.chips {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 12px 0 6px;
  display: none;
}

.chip {
  padding: 10px 14px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  color: var(--text-primary);
  min-width: 140px;
  text-align: center;
}

.chip.strong {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--primary);
  box-shadow: 0 12px 22px var(--shadow);
}

.foot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  padding: 8px 4px 0;
}

details {
  margin: 10px 4px 2px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
}

details summary {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}

details summary::-webkit-details-marker {
  display: none;
}

.infoDot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.mutedNote {
  margin-top: 6px;
  line-height: 1.35;
}

#displayEndUnit {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.chart-legend {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2px;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 13px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.65);
}

.legend-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 6px;
}

.dot {
  width: 24px;
  height: 0;
  border-top: 3px solid #0f5c4a;
}

.dot.dashed {
  border-top: 3px dashed #9fc6b6;
  background: none;
}

.dot.solid {
  width: 10px;
  height: 10px;
  background: var(--primary);
}

/* ==========================================
24. ANIMATIONS
========================================== */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes cartBounce {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  75% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@keyframes cartBounce {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  50% {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
  }
  75% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@-webkit-keyframes modalSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==========================================
25. RESPONSIVE DESIGN (CLEAN & OPTIMIZED)
========================================== */
/* ---------- Large Desktop ---------- */
@media (min-width: 1400px) {
  .container,
  .statistics-wrapper,
  .news-container,
  .footer-content,
  .gallery-container {
    max-width: 1320px;
  }
}
/* ---------- Tablet & Small Desktop ---------- */
@media (max-width: 1024px) {
  body {
    padding-top: 88px;
  }
  nav {
    gap: 15px;
  }
  .header-content {
    padding: 0.5rem 1.25rem;
  }
  .header-actions {
    gap: 0.313rem;
  }
  .logo img {
    height: 25px;
  }
  .gallery-container {
    padding: 0 4.375rem;
  }
  .shop-btn,
  .shop-treatment-btn {
    display: none !important;
  }
  .search-input {
    padding: 13px;
    font-size: 14px;
    width: 140px;
  }
  .header-actions .btn2 {
    display: none;
  }
}
/* ---------- Tablet & Mobile ---------- */
@media (max-width: 968px) {
  nav,
  .desktop-search,
  .profile-button {
    display: none;
  }
  .hamburger,
  .mobile-search-icon {
    display: -ms-flexbox;
    display: flex;
  }
  .section-headings {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  .steps {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
    border-left: 0;
  }
  .step-content p {
    text-align: left;
  }
  .steps::before {
    display: none;
  }
  .how-it-works .step-content {
    border: 0;
    border-radius: 0;
  }
  .step {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
    -ms-flex-align: start;
        align-items: flex-start;
    margin-bottom: 0;
    padding-left: 0;
  }
  .step-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
  }
  .step-content {
    width: 100%;
    text-align: left !important;
    margin-left: 0;
  }
  .step-content::after {
    display: none;
  }
  .header-actions .btn2 {
    display: none;
  }
  .header-content {
    padding: 20px;
  }
  .step-icon-container {
    display: none;
  }
  .product-title {
    font-size: 20px;
  }
  .product-description {
    margin-bottom: 10px;
  }
  .highlights-list li {
    line-height: 1.3;
  }
  .product-content-section {
    padding: 10px 10px 0 0;
  }
  .btn2 {
    padding: 14px 18px;
    font-size: 16px;
  }
  .cta-title {
    font-size: 24px;
  }
  .cta .topline {
    font-size: 18px;
  }
  .product-card-area {
    display: grid;
    grid-template-columns: 22% 78%;
    gap: 12px;
  }
  .product-image-section img {
    border-radius: 12px;
  }
  .me-2 {
    margin-right: 0 !important;
  }
  .btn2 {
    border-radius: 0.9rem;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  body {
    padding-top: 82px;
  }
  .mobile-menu {
    width: 85%;
  }
  .hero-card {
    min-height: 50vh;
    padding: 2.5rem 1.25rem;
  }
  .banner-text-area {
    top: auto;
    bottom: 60px;
    -webkit-transform: none;
            transform: none;
    padding: 0 1.25rem;
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-card {
    text-align: center;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .cart-sidebar {
    width: 380px;
  }
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
  }
  .gallery-container {
    padding: 0 3.75rem;
  }
  .gallery-btn {
    width: 40px;
    height: 40px;
  }
  .testimonial-prev,
  .testimonial-next {
    display: none !important;
  }
  .hamburger {
    padding: 0.5rem 0;
  }
  .banner-text-area .btn2 {
    margin-top: 28px;
  }
  .heroCtas {
    margin-top: 15px;
  }
  .trust-badge-item {
    width: 40%;
  }
  .trust-icon {
    width: 55px;
    height: 55px;
  }
  .stats-card {
    padding: 1.813rem 1.875rem;
  }
  .arrow-icon img {
    width: 23px;
    height: 30px;
  }
  .statistics-wrapper {
    gap: 16px;
  }
  .whats-included-btn {
    font-size: 0.6rem;
  }
  .headings {
    margin-bottom: 2.3rem;
  }
  .how-it ul li h3 {
    font-size: 16px;
  }
  .chip {
    padding: 9px 8px;
    font-size: 12px;
    min-width: 115px;
  }
  .statistics-wrapper {
    grid-template-columns: 50% 48%;
  }
  .labelRow .label {
    font-size: 16px;
    line-height: 1.2;
  }
  .pill {
    font-weight: 500;
    font-size: 12px;
  }
}
/* ---------- Small Mobile ---------- */
@media (max-width: 640px) {
  .mobile-menu {
    max-width: 75%;
  }
  .hero-card {
    min-height: 45vh;
    padding: 1.875rem 0.938rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .cart-sidebar {
    width: 100%;
  }
  footer {
    padding: 46px 0 0 0;
  }
  .trust-badge-item {
    width: 100%;
  }
  .statistics-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .percentage-wrapper {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  input,
  textarea,
  select {
    padding: 0.4rem 1rem;
  }
  .stats-card .headings {
    display: block;
    margin: 0;
  }
  .section-title-how-it-works img {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    background: none;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 0;
  }
  .action-buttons {
    text-align: left;
  }
  .whats-included-btn {
    text-align: left;
  }
  .products-grid {
    gap: 15px;
    margin-top: 20px;
  }
  .transformation-main {
    grid-template-columns: repeat(1, 1fr);
  }
  .testimonials-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .how-it {
    width: 100%;
    margin-top: 16px;
  }
  .footer-section:not(:first-child) .footer-collapse-content {
    display: block !important;
  }
  .product-category-cart .btn2.ghost {
    margin-top: 5px;
  }
  .footer-bottom {
    padding-top: 12px;
    gap: 5px;
  }
  .projection {
    margin-top: 16px;
  }
  .card-head {
    margin: 0;
  }
  .card-inner {
    padding: 16px 14px 14px;
  }
  .projection {
    margin: 10px 0 0 0;
  }
  .weightBox .num {
    font-weight: 600;
    font-size: 32px;
  }
  .calculator-title {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .projection .big {
    font-size: 0;
  }
  .weightBox {
    min-width: 160px;
    padding: 15px 13px;
    line-height: 1;
  }
  .inputs input {
    padding: 10px 12px;
  }
  .projection .big span {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
  }
  .projection .sub {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .btn2 {
    width: 100%;
    margin-bottom: 5px;
  }
}
/* ---------- Extra Small Mobile ---------- */
@media (max-width: 480px) {
  body {
    padding-top: 78px;
  }
  .logo img {
    height: 26px;
  }
  .hero-card {
    min-height: 40vh;
    padding: 1.563rem 0.75rem;
  }
  .gallery-container {
    padding: 0 3.125rem;
  }
  .gallery-btn {
    width: 36px;
    height: 36px;
  }
  .footer-bottom {
    -ms-flex-direction: column;
        flex-direction: column;
    text-align: center;
  }
  .tab {
    padding: 8px 10px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}
/* ---------- Very Small Mobile ---------- */
@media (max-width: 360px) {
  .hero-card {
    min-height: 35vh;
    padding: 1.25rem 0.625rem;
  }
}
/* ---------- Landscape Mobile ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-card {
    min-height: 80vh;
  }
}
/* ==========================================
ACCESSIBILITY & PERFORMANCE
========================================== */
@media (prefers-contrast: high) {
  .stat-box,
  .science-card,
  .product-card,
  .testimonial-card,
  .news-card {
    border: 2px solid #000;
  }
}
::-moz-selection {
  background: var(--primary);
  color: #fff;
}
::selection {
  background: var(--primary);
  color: #fff;
}

button,
.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* @media (hover: none) and (pointer: coarse) {
  a,
  button,
  .hamburger,
  .cart-button {
    min-width: 44px;
    min-height: 44px;
  }
} */
/* ============== */
/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/contact.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */
  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */
  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */
  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */
  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--bg);
} */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section-contact {
  text-align: center;
  padding: 15px 20px 15px;
  /* background: linear-gradient(135deg, #e4c7b8 0%, #f9e4c8 100%); */
}

.hero-section-contact h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  /* color: #1a1a1a; */
  color: var(--primary);
}

.hero-section-contact p {
  font-size: 1.15rem;
  /* color: #666; */
  color: var(--infoText);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 15px 20px 30px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
  background-color: #fff;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 10px 26px rgba(17, 23, 20, 0.06);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

/* .contact-form-container:hover {
  box-shadow: 0 12px 40px rgba(225, 127, 48, 0.18);
} */
.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e17f30;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

/* ::placeholder {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
} */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  /* border-color: #e17f30; */
  border-color: var(--primary2);
  background-color: #fff;
  /* box-shadow: 0 0 0 4px rgba(225, 127, 48, 0.1); */
}

.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  color: #9ca3af;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #9ca3af;
}

.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  color: #9ca3af;
}

.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
  color: #9ca3af;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: var(--chip);
  border-radius: 12px;
  /* border: 1px solid #f9e4c8; */
  border: 1px solid var(--primary2);
  color: var(--infoText);
}

.checkbox-group input[type=checkbox] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  /* accent-color: #d7925a; */
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.85rem;
  /* color: #666; */
  color: var(--infoText);
  line-height: 1.6;
  cursor: pointer;
  -ms-flex: 1;
      flex: 1;
}

.checkbox-group a {
  /* color: #d7925a; */
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  /* background: #d7925a; */
  background: var(--primary);
  /* color: #fff; */
  color: var(--info);
  padding: 16px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3); */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  /* transform: translateY(-3px); */
  /* box-shadow: 0 6px 20px rgba(225, 127, 48, 0.4); */
  background: var(--primary2);
}

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

.submit-btn:disabled {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
  box-shadow: none;
}

.submit-btn i {
  color: #fff;
}

/* Contact Info Sidebar */
.contact-info-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--card);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 26px rgba(17, 23, 20, 0.06);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.contact-info-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  /* color: #1a1a1a; */
  color: var(--primary);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
}

.contact-info-card-title i {
  /* color: #d7925a; */
  color: var(--primary);
  font-size: 1.3rem;
}

.info-item-contact {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 18px;
  /* background: #fafafa; */
  background: var(--card);
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.info-item-contact:hover {
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  /* border-color: #f9e4c8; */
  /* border-color: var(--primary2); */
}

.info-item-contact:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  color: #fff;
  border: 1px solid var(--line);
  /* box-shadow: 0 4px 12px rgba(225, 127, 48, 0.25); */
}

.info-item-contact:nth-child(4) .info-icon {
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  /* background: #d7925a; */
  background: var(--info);
}

.info-item-contact:nth-child(2) .info-icon {
  /* background: linear-gradient(135deg, #d7925a 0%, #f4b740 100%); */
  /* background: #d7925a; */
  background: var(--info);
}

.info-item-contact:nth-child(3) .info-icon {
  /* background: linear-gradient(135deg, #f4b740 0%, #e17f30 100%); */
  /* background: #d7925a; */
  background: var(--info);
}

.info-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  color: var(--primary);
  margin-bottom: 6px;
}

.info-content p {
  font-size: 0.9rem;
  /* color: #666; */
  color: var(--infoText);
  line-height: 1.6;
}

.response-time-card {
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  /* border: 2px solid #f9e4c8; */
}

.response-time-card .contact-info-card-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.response-time-card p {
  font-size: 0.9rem;
  /* color: #666; */
  color: var(--infoText);
  line-height: 1.8;
}

/* Form Validation */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.form-group.error .error-message {
  display: block;
}

.success-message {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid #6ee7b7;
}

.success-message.show {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
}

.success-message i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-section-contact {
    padding: 20px 20px 15px;
  }
  .hero-section-contact h1 {
    font-size: 2.2rem;
  }
  .contact-form-container {
    padding: 35px 28px;
  }
  .contact-info-card {
    padding: 30px 24px;
  }
  .info-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hero-section-contact {
    padding: 25px 15px 20px;
  }
  .hero-section-contact h1 {
    font-size: 1.8rem;
  }
  .hero-section-contact p {
    font-size: 1rem;
  }
  .contact-section {
    padding: 10px 15px 30px;
  }
  .contact-form-container {
    padding: 30px 20px;
  }
  .form-title {
    font-size: 1.5rem;
  }
  .form-subtitle {
    font-size: 0.875rem;
  }
  .contact-info-card {
    padding: 24px 20px;
  }
  .contact-info-card-title {
    font-size: 1.2rem;
  }
  .info-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/faq.css ***!
  \******************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */
  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */
  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */
  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */
  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--bg) !important;
} */
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section-faq {
  text-align: center;
  padding: 25px 15px 20px;
  /* background: linear-gradient(135deg, #e4c7b8 0%, #f9e4c8 100%); */
}

.hero-section-faq h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  /* color: #1a1a1a; */
  color: var(--primary);
}

.hero-section-faq p {
  font-size: 1.15rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Search Box */
.faq-search-wrapper {
  max-width: 600px;
  margin: 0px auto;
  position: relative;
  z-index: 10;
}

.faq-search {
  width: 100%;
  padding: 18px 55px 18px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  /* background-color: #fff !important; */
  background-color: var(--card);
  /* box-shadow: 0 8px 30px rgba(225, 127, 48, 0.12); */
  box-shadow: 0 2px 12px var(--muted2);
}

.faq-search:focus {
  outline: none;
  /* border-color: #e17f30; */
  border-color: var(--primary);
  /* box-shadow: 0 8px 30px rgba(225, 127, 48, 0.25); */
  box-shadow: 0 2px 12px var(--muted2);
}

.faq-search::-webkit-input-placeholder {
  color: #999;
}

.faq-search::-moz-placeholder {
  color: #999;
}

.faq-search:-ms-input-placeholder {
  color: #999;
}

.faq-search::-ms-input-placeholder {
  color: #999;
}

.faq-search::placeholder {
  color: #999;
}

.faq-search-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* color: #e17f30; */
  color: var(--primary);
  font-size: 18px;
  pointer-events: none;
}

/* FAQ Section */
.faq-section {
  padding: 25px 20px 0px;
  /* background: #ffffff; */
  /* font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif; */
}

.faq-category {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: all 0.6s ease;
}

.faq-category.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.category-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 24px;
  color: #fff;
  /* box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3); */
  box-shadow: 0 4px 15px var(--muted2);
}

.faq-category:nth-child(1) .category-icon {
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.faq-category:nth-child(2) .category-icon {
  /* background: linear-gradient(135deg, #d7925a 0%, #f4b740 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.faq-category:nth-child(3) .category-icon {
  /* background: linear-gradient(135deg, #f4b740 0%, #f39c12 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.faq-category:nth-child(4) .category-icon {
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.faq-category:nth-child(5) .category-icon {
  /* background: linear-gradient(135deg, #d7925a 0%, #f4b740 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.faq-category:nth-child(6) .category-icon {
  /* background: linear-gradient(135deg, #f4b740 0%, #e17f30 100%); */
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%); */
}

.category-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.faq-item {
  background-color: #fafafa;
  border: 2px solid transparent;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(225, 127, 48, 0.08);
}

.faq-item:hover {
  /* border-color: #e17f30; */
  border-color: var(--primary2);
  /* box-shadow: 0 6px 20px rgba(225, 127, 48, 0.15); */
  /* transform: translateX(5px); */
  /* background-color: #fff; */
  background-color: var(--card);
}

.faq-question {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.05rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
}

.faq-question.active {
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  /* color: #e17f30; */
  color: var(--info);
}

.faq-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 14px;
  /* color: #e17f30; */
  color: var(--info);
  transition: all 0.3s ease;
  /* border: 2px solid #f9e4c8; */
  border: 2px solid var(--text);
}

.faq-icon i {
  color: #fff;
}

.faq-question.active .faq-icon {
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  background: var(--chip);
  /* color: #fff; */
  color: var(--primary);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  /* border-color: transparent; */
  border-color: var(--text);
}

.faq-question.active .faq-icon i {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
  max-height: 600px;
  padding: 0 26px 26px 26px;
}

.faq-answer-content {
  /* color: #666; */
  color: var(--infoText);
  line-height: 1.8;
  font-size: 0.95rem;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.empty-state i {
  font-size: 64px;
  color: #d7925a;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.empty-state p {
  color: #666;
  font-size: 1rem;
}

/* CTA Section */
.faq-cta-section {
  /* background: linear-gradient(135deg, #e4c7b8 0%, #f9e4c8 100%); */
  background: var(--card);
  padding: 25px 20px;
  text-align: center;
  /* margin-top: 40px; */
}

.faq-cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  color: var(--primary);
  margin-bottom: 16px;
}

.faq-cta-section p {
  font-size: 1.05rem;
  /* color: #666; */
  color: var(--infoText);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact {
  display: inline-block;
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  background: var(--primary);
  color: #fff;
  padding: 10px 36px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  /* box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3); */
}

.btn-contact:hover {
  /* transform: translateY(-3px); */
  background: var(--primary2);
  box-shadow: 0 6px 20px var(--muted2);
  color: var(--info);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section-faq {
    padding: 30px 20px 20px;
  }
  .hero-section-faq h1 {
    font-size: 2.2rem;
  }
  .hero-section-faq p {
    font-size: 1rem;
  }
  .faq-search-wrapper {
    margin: 0px auto 10px;
    max-width: 80%;
  }
  .category-title {
    font-size: 1.3rem;
  }
  .category-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }
  .faq-search {
    padding: 16px 50px 16px 20px;
    font-size: 0.95rem;
  }
  .faq-cta-section h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .hero-section-faq {
    padding: 50px 15px 40px;
  }
  .hero-section-faq h1 {
    font-size: 1.8rem;
  }
  .faq-section {
    padding: 25px 15px 0px;
  }
  .category-header {
    gap: 12px;
  }
  .category-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .category-title {
    font-size: 1.15rem;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .faq-answer.active {
    padding: 0 18px 18px 18px;
  }
  .faq-answer-content {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .faq-search {
    padding: 14px 45px 14px 18px;
    font-size: 0.9rem;
  }
  .faq-search-wrapper {
    max-width: 85%;
  }
  .faq-search-icon {
    right: 18px;
    font-size: 16px;
  }
  .faq-cta-section {
    padding: 20px 20px;
  }
  .faq-cta-section h2 {
    font-size: 1.4rem;
  }
  .faq-cta-section p {
    font-size: 0.95rem;
  }
}
/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/how-it-works.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #e4c7b8;
} */
:root {
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */
  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */
  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */
  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */
  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

/* Hero Section */
.hero-section-howItWorks {
  /* background: linear-gradient(135deg, #e4c7b8 0%, #f9e4c8 100%); */
  padding: 1rem 1.5rem 2rem;
  text-align: center;
}

/* .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3);
} */
.hero-section-howItWorks h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-section-howItWorks p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: xx-large;
}

.how-it-works-img {
  width: 450px;
  height: 450px;
  margin-top: 20px !important;
  border-radius: 10px;
  margin: 0 auto;
}

.how-it-steps {
  margin: 0 auto;
}

/* Steps Section */
.steps-wrapper {
  /* background: white; */
  padding: 2rem 1.5rem;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Timeline Line */
.steps-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(to bottom, #e17f30 0%, #d7925a 50%, #f9e4c8 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}

.step {
  position: relative;
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 3rem;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.step:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.step:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.step:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

.step:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  margin-bottom: 10px;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.step-content {
  -ms-flex: 1;
      flex: 1;
  background: #f9f5f0;
  padding: 1rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(225, 127, 48, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.step:nth-child(odd) .step-content {
  text-align: right;
}

.step:nth-child(even) .step-content {
  text-align: left;
}

.step-content:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 40px rgba(225, 127, 48, 0.2);
  border-color: #e17f30;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.step-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Step Icon */
.step-icon-container {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(225, 127, 48, 0.3);
}

.step:hover .step-icon {
  /* transform: scale(1.1) rotate(10deg); */
}

.step:nth-child(1) .step-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
}

.step:nth-child(2) .step-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
}

.step:nth-child(3) .step-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
}

.step:nth-child(4) .step-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
}

.step:nth-child(5) .step-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 3px solid white;
  z-index: 3;
}

/* Arrows */
.step:nth-child(odd) .step-content::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #f9f5f0;
  pointer-events: none; /* ADDED: Prevents arrow from blocking clicks */
}

.step:nth-child(even) .step-content::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #f9f5f0;
  pointer-events: none; /* ADDED: Prevents arrow from blocking clicks */
}

/* Timeline Section */
.timeline-section-hiw {
  /* background: linear-gradient(135deg, #e4c7b8 0%, #f9e4c8 100%); */
  background-color: var(--primary);
  padding: 2rem 1.5rem;
}

.timeline-content {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  /* color: #1a1a1a; */
  color: var(--info);
}

.timeline-header i {
  /* color: #e17f30; */
  color: var(--info);
}

.timeline-item {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(225, 127, 48, 0.1);
  /* border-left: 5px solid; */
  transition: all 0.3s ease;
}

/* 
.timeline-item:nth-child(2) {
  border-left-color: var(--muted);
}
.timeline-item:nth-child(3) {
  border-left-color: #d7925a;
}
.timeline-item:nth-child(4) {
  border-left-color: #f4b740;
} */
.timeline-item:hover {
  box-shadow: 0 6px 25px rgba(225, 127, 48, 0.2);
}

.timeline-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  color: var(--primary);
  margin-bottom: 0.8rem;
  text-align: center;
}

.timeline-item p {
  /* color: #666; */
  color: var(--infoText);
  line-height: 1.7;
  text-align: center;
}

/* CTA Section */
.cta-section-hiw {
  background-color: var(--chip);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative; /* ADDED: Establishes stacking context */
  z-index: 10; /* ADDED: Ensures CTA section is above other elements */
}

.cta-section-hiw h2 {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-section-hiw p {
  font-size: 1.2rem;
  /* color: #666; */
  color: var(--infoText);
  margin-bottom: 1rem;
}

.cta-buttons {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative; /* ADDED */
  z-index: 10; /* ADDED */
}

.btn-cta {
  /* background-color: #d7925a; */
  background-color: var(--primary);
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  /* box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3); */
  display: inline-block; /* ADDED: Ensures proper clickable area */
  position: relative; /* ADDED */
  z-index: 11; /* ADDED: Ensures buttons are clickable */
}

.btn-cta:hover {
  /* transform: translateY(-3px); */
  /* box-shadow: 0 6px 20px rgba(225, 127, 48, 0.4); */
  background-color: var(--primary2);
  color: var(--info);
}

.btn-secondary-hiw {
  /* background: white; */
  background: var(--bg);
  /* color: #e17f30; */
  color: var(--primary);
  padding: 0.7rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  /* border: 2px solid #e17f30; */
  border: 2px solid var(--primary);
  cursor: pointer;
  display: inline-block; /* ADDED: Ensures proper clickable area */
  position: relative; /* ADDED */
  z-index: 11; /* ADDED: Ensures buttons are clickable */
}

.btn-secondary-hiw:hover {
  /* background: #e17f30; */
  background: var(--primary2);
  /* color: white; */
  color: var(--info);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hero-section-howItWorks {
    padding: 2rem 1.5rem 2rem;
  }
  .hero-section-howItWorks h1 {
    font-size: 2rem;
  }
  .steps-container::before {
    left: 50px;
  }
  .step {
    margin-bottom: 2rem;
  }
  .step,
  .step:nth-child(even) {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
    gap: 2rem;
  }
  .step-content,
  .step:nth-child(odd) .step-content {
    text-align: left;
  }
  .step:nth-child(odd) .step-content::after {
    display: none;
  }
  .step:nth-child(even) .step-content::after {
    left: -20px;
  }
  .step-icon-container,
  .step-icon {
    width: 80px;
    height: 80px;
  }
  .step-icon {
    font-size: 2rem;
  }
  .timeline-header {
    font-size: 1.5rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
  .btn-cta,
  .btn-secondary-hiw {
    width: 100%;
    max-width: 300px;
    text-align: center; /* ADDED: Centers text on mobile */
  }
}
@media (max-width: 480px) {
  .steps-container::before {
    left: 35px;
  }
  .hero-section-howItWorks p {
    font-size: x-large;
  }
  .step-icon-container,
  .step-icon {
    width: 70px;
    height: 70px;
  }
  .step-icon {
    font-size: 1.5rem;
  }
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  .step-content {
    padding: 1.2rem;
  }
  .step-content h3 {
    font-size: 1.2rem;
  }
}
/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/mobile.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
/* ============================================
   COMPLETE MOBILE CAROUSEL FIX - mobile.css
   Replace your entire mobile.css with this
   ============================================ */
/* Hide mobile controls on desktop */
@media (min-width: 769px) {
  .hero-mobile-controls {
    display: none !important;
  }
}
/* ============================================
   MOBILE HERO CAROUSEL - FIXED HEIGHT
   ============================================ */
@media (max-width: 768px) {
  /* Container with fixed height */
  .hero-section {
    position: relative;
    width: 100%;
    height: 550px !important;
    min-height: 650px !important;
    max-height: 550px !important;
    overflow: hidden;
    display: block !important;
    -ms-flex-direction: column;
        flex-direction: column;
    background: #f6fdff;
  }
  /* All cards stacked absolutely */
  .hero-card {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
    -ms-flex: none !important;
        flex: none !important;
    opacity: 0;
    visibility: hidden;
    /* Smoother, more fluid transitions */
    transition: opacity 0.55s ease-out, visibility 0.5s linear 0.75s, -webkit-transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s ease-out, visibility 0.5s linear 0.75s;
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s ease-out, visibility 0.5s linear 0.75s, -webkit-transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    /* Improve performance */
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
    z-index: 1;
    margin: 0;
    padding: 0 !important;
    /* display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
  }
  /* Active card */
  .hero-card.hero-active {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    z-index: 2;
    transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s 0s, -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s 0s;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), visibility 0s 0s, -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  /* Slide animations */
  .hero-card.slide-out-left {
    -webkit-transform: translateX(-100%) !important;
            transform: translateX(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .hero-card.slide-out-right {
    -webkit-transform: translateX(100%) !important;
            transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .hero-card.slide-in {
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  /* Background images */
  /* .hero-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: none !important;
  } */
  /* .hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
  } */
  /* Content container */
  .card-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem 4rem;
    text-align: center;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  /* Title */
  .card-title {
    font-size: 40px !important;
    line-height: 1.3;
    margin-bottom: 1.5rem !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    max-width: 100%;
    max-height: 5.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  /* Stats grid */
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem !important;
    margin-top: 1.5rem !important;
    width: 100%;
    max-width: 100%;
  }
  .stat-box {
    background: rgba(255, 255, 255, 0.2) !important;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 12px !important;
    padding: 1rem 0.5rem !important;
    transition: all 0.3s ease;
  }
  .stat-number {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem) !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: block;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  .stat-label {
    font-size: clamp(0.75rem, 2vw, 0.85rem) !important;
    color: #000000 !important;
    line-height: 1.3;
    font-weight: 500;
    opacity: 1 !important;
  }
  /* Mobile controls */
  .hero-mobile-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    z-index: 10;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 1.2rem;
  }
  .hero-mobile-prev,
  .hero-mobile-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .hero-mobile-prev:active,
  .hero-mobile-next:active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    background: rgba(255, 255, 255, 0.4);
  }
  .hero-mobile-indicators {
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-align: center;
        align-items: center;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-indicator.active {
    width: 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
  }
}
/* Smaller mobile */
@media (max-width: 640px) {
  .hero-section {
    height: 500px !important;
    min-height: 570px !important;
    max-height: 500px !important;
  }
  .card-content {
    padding: 1.8rem 1.2rem 4rem;
    max-width: 95%;
  }
  .card-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem) !important;
    margin-bottom: 1.2rem !important;
  }
  .stats-grid {
    gap: 0.7rem !important;
    margin-top: 1.2rem !important;
  }
  .stat-box {
    padding: 0.9rem 0.4rem !important;
  }
  .stat-number {
    font-size: clamp(1.1rem, 3vw, 1.3rem) !important;
  }
  .stat-label {
    font-size: clamp(0.75rem, 1.8vw, 0.8rem) !important;
  }
  .hero-mobile-prev,
  .hero-mobile-next {
    width: 38px;
    height: 38px;
  }
}
/* Extra small mobile */
@media (max-width: 480px) {
  .hero-section {
    height: 550px !important;
    min-height: 600px !important;
    max-height: 550px !important;
  }
  .card-content {
    padding: 1.5rem 1rem 3.5rem;
  }
  .card-title {
    font-size: 40px !important;
    margin-bottom: 1rem !important;
    -webkit-line-clamp: 2;
  }
  .stats-grid {
    gap: 0.6rem !important;
    margin-top: 1rem !important;
  }
  .stat-box {
    padding: 0.8rem 0.3rem !important;
  }
  .hero-mobile-prev,
  .hero-mobile-next {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .hero-mobile-controls {
    bottom: 1.2rem;
  }
  .hero-indicator {
    width: 7px;
    height: 7px;
  }
  .hero-indicator.active {
    width: 22px;
  }
}
/* Landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
  }
  .card-content {
    padding: 1rem 1rem 3.5rem;
  }
  .card-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }
  .stats-grid {
    margin-top: 0.8rem !important;
    gap: 0.6rem !important;
  }
  .stat-box {
    padding: 0.7rem 0.3rem !important;
  }
}
/* Remove extra spacing */
@media (max-width: 768px) {
  .hero-section + section,
  .hero-section + * {
    margin-top: 0 !important;
  }
}
/* =============   Testimoniasl */
/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/order-detail.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.user-profile .badge {
  display: inline-block;
  background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%);
  color: white;
  padding: 0.5rem;
  border-radius: 3rem;
  font-size: clamp(0.75rem, 1.5vw, 0.813rem);
  font-weight: 600;
  margin-bottom: 0px;
  /* box-shadow: 0 4px 15px rgba(225, 127, 48, 0.25); */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.form-check .form-check-input {
  float: left;
  margin-left: 0em !important;
  margin-right: 10px !important;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10l3 3l6-6%27/%3e%3c/svg%3e") !important;
}

.card-title {
  font-size: clamp(24px, 5vw, 24px);
  text-shadow: none;
}

.product-name {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.product-attribute {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: 3px;
}

.discount-row {
  color: #4caf50;
}

.discount-amount {
  font-weight: 600;
}

/* Customer Details Section */
.customer-details-section {
  margin-top: 40px;
}

.customer-details-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #333;
}

.customer-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.customer-card:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.customer-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff7043;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.customer-avatar:hover {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.customer-name-info h6 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 16px;
}

.customer-id {
  color: #999;
  font-size: 13px;
}

.customer-stats {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.customer-stats:hover {
  background: rgba(76, 175, 80, 0.2);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.stat-icon {
  font-size: 24px;
}

.customer-stats h6 {
  margin: 0;
  color: #333;
}

.contact-info {
  margin-top: 20px;
}

.contact-info h6 {
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.contact-info p {
  margin: 8px 0;
  color: #666;
  font-size: 14px;
}

.contact-info strong {
  color: #333;
  margin-right: 5px;
}

.delivery-address-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.delivery-address-card:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.delivery-address-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.delivery-address-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.order-table tbody tr td[colspan] {
  background: #f9f9f9;
  border-radius: 10px;
}

/* Order Section Styles */
.order-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  -webkit-animation: slideUp 0.5s ease-out;
          animation: slideUp 0.5s ease-out;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.order-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order-header h1 {
  font-size: 28px;
  color: #333;
  margin: 0;
}

.status-badge {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.status-paid {
  background: #4caf50;
  color: white;
}

.status-ready {
  background: #ff9800;
  color: white;
  -webkit-animation: glow 2s infinite;
          animation: glow 2s infinite;
}

@-webkit-keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.8);
  }
}
.order-date {
  color: #999;
  margin-bottom: 30px;
}

/* Order Table */
.order-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.order-table thead {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.order-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.order-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.order-table tr {
  transition: all 0.3s ease;
}

.order-table tbody tr:hover {
  background: #f9f9f9;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 15px;
}

.product-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

.product-img:hover {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Order Totals */
.order-totals {
  text-align: right;
  margin-top: 30px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 10px;
}

.total-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 50px;
  padding: 5px 0;
  font-size: 16px;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.total-row:hover {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.total-row.final {
  font-size: 20px;
  font-weight: bold;
  color: #ff7043;
  border-top: 2px solid #ddd;
  padding-top: 10px;
  margin-top: 15px;
}

.shipping-section {
  margin-top: 40px;
}

.shipping-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #333;
}

.activity-item {
  padding: 20px;
  border-left: 3px solid #ff7043;
  margin-bottom: 20px;
  background: #f9f9f9;
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
  position: relative;
  -webkit-animation: slideInLeft 0.5s ease-out;
          animation: slideInLeft 0.5s ease-out;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.activity-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.activity-item::before {
  content: "●";
  position: absolute;
  left: -9px;
  top: 20px;
  color: #ff7043;
  font-size: 16px;
  background: white;
}

.activity-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.activity-time {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.activity-desc {
  color: #666;
  font-size: 14px;
}

/* Print Button */
.print-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  font-weight: 600;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}

.print-btn:hover {
  background: #45a049;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .order-header {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .order-table {
    font-size: 14px;
  }
  .order-table th,
  .order-table td {
    padding: 10px;
  }
  .product-img {
    width: 50px;
    height: 50px;
  }
  .total-row {
    gap: 20px;
  }
  .order-section {
    padding: 20px;
  }
  .customer-card,
  .delivery-address-card {
    padding: 20px;
  }
}
/* Image Modal Overlay */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 1000;
  cursor: pointer;
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out;
}

.image-modal-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  -webkit-animation: zoomIn 0.3s ease-out;
          animation: zoomIn 0.3s ease-out;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes zoomIn {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/result.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f5f0;
} */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* Hero Section */
.hero-section-results {
  text-align: center;
  padding: 15px 20px 10px;
  /* background: #f9f5f0; */
}

.hero-section-results h1 {
  font-size: 3rem !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.hero-section-results p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Transformation Gallery Section */
.content-section .transformation-section {
  padding: 10px 0;
  background: #f9f5f0 !important;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.gallery-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.gallery-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-grid {
  display: -ms-flexbox;
  display: flex;
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

/* DESKTOP: Show 3 cards at a time */
.transformation-item {
  -ms-flex: 0 0 calc(33.333% - 14px);
      flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  padding: 0;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4b896 0%, #c9a581 100%);
}

.image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.image-label-left {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.image-label-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* Navigation Buttons */
.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d7925a;
  border: none;
  color: white;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(215, 146, 90, 0.3);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.gallery-btn:hover {
  background: #e17f30;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn i {
  font-size: 1rem;
}

/* Navigation Dots - DESKTOP (Base Styles) */
.gallery-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.gallery-dot.active {
  width: 26px;
  border-radius: 13px;
  background: #d7925a;
}

/* TABLET */
@media (max-width: 1024px) {
  .gallery-container {
    padding: 0 70px;
  }
}
/* MOBILE: Show 1 card at a time */
@media (max-width: 768px) {
  .gallery-container {
    padding: 0 60px;
  }
  .gallery-grid {
    gap: 0;
  }
  .transformation-item {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    min-width: 100%;
    padding: 0 10px;
  }
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .gallery-btn i {
    font-size: 0.85rem;
  }
  .gallery-btn.prev {
    left: 5px;
  }
  .gallery-btn.next {
    right: 5px;
  }
  /* MOBILE DOTS - Much Smaller! */
  .gallery-dots {
    margin-top: 20px;
    gap: 5px;
  }
  .gallery-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
  }
  .gallery-dot.active {
    width: 16px !important;
    height: 6px !important;
    border-radius: 3px !important;
  }
  .image-container {
    border-radius: 12px;
  }
  .image-label-left,
  .image-label-right {
    padding: 4px 12px;
    font-size: 11px;
    bottom: 12px;
  }
}
@media (max-width: 480px) {
  .gallery-container {
    padding: 0 50px;
  }
  .gallery-btn {
    width: 36px;
    height: 36px;
  }
  /* Extra small dots for very small screens */
  .gallery-dots {
    gap: 4px;
  }
  .gallery-dot {
    width: 5px !important;
    height: 5px !important;
  }
  .gallery-dot.active {
    width: 14px !important;
    height: 5px !important;
  }
}
/* Disclaimer Box */
.disclaimer-box {
  background-color: #eeb281;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  margin-top: 5rem;
}

.disclaimer-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 1rem;
}

.disclaimer-text {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
  padding: 40px 20px;
  background: #f9f5f0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.timeline-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(225, 127, 48, 0.15);
}

.percentage {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d7925a 0%, #f7bf92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.timeline-duration {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.timeline-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.timeline-note {
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  margin-top: 30px;
  font-style: italic;
}

/* Success Stories Section */
.success-stories-section {
  padding: 40px 20px;
  background: #ffffff;
}

.stories-intro {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* margin-bottom: 50px; */
}

.story-card {
  background-color: #eaeaea;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.story-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.story-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 20px;
}

.story-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.story-author p {
  font-size: 0.85rem;
  color: #666;
}

.story-weight-loss {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #d7925a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-detail {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

.story-detail strong {
  color: #1a1a1a;
  font-weight: 600;
}

.story-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.story-read-more {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 6px;
  color: #d7925a;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.story-read-more:hover {
  gap: 10px;
}

.view-all-btn {
  display: inline-block;
  background-color: #d7925a;
  color: #fff;
  padding: 14px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #d7925a;
} */
.view-all-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.text-center {
  text-align: center;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #d7925a;
  border: none;
  color: white;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(215, 146, 90, 0.3);
  z-index: 10;
}

.carousel-btn:hover {
  background: #c17f46;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(215, 146, 90, 0.4);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: #d7925a;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

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

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

/* Dots Navigation */
.carousel-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: #d7925a;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.carousel-dot.active {
  width: 32px;
  border-radius: 5px;
  background: #d7925a;
}

/* Tablet */
/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .carousel-btn.prev {
    left: 5px;
  }
  .carousel-btn.next {
    right: 5px;
  }
  .carousel-dots {
    gap: 8px;
    margin-top: 30px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  .carousel-dot.active {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  .stars {
    font-size: 18px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/* CTA Section */
/* CTA Section */
/* .content-section .cta-section {
  padding: 40px 20px;
  background: #f9f5f0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.cta-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.primary-btn-result,
.shop-btn-result {
  background-color: #d7925a;
  color: #fff;
  padding: 14px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px #f1ac72;
  display: inline-block;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-align: center;
  line-height: 1.4;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  padding: 14px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-align: center;
  line-height: 1.4;
}

.primary-btn-result:hover,
.shop-btn-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #d7925a;
}

.btn-secondary:hover {
  background: #5c636a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */
/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-section-results h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
  }
  .primary-btn-result,
  .btn-secondary,
  .shop-btn-result {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 1rem;
    display: block;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
  .testimonials-carousel-wrapper {
    padding: 0 50px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero-section-results {
    padding: 30px 20px 15px;
  }
  .hero-section-results h1 {
    font-size: 32px !important;
  }
  /* .timeline-section,
  .success-stories-section,
  .cta-section {
    padding: 30px 20px;
  } */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .percentage {
    font-size: 2rem;
  }
  .primary-btn-result,
  .btn-secondary,
  .shop-btn-result {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 0.95rem;
  }
}
/* MOBILE: Show 1 card at a time - ENHANCED FOR CLEAN LOOK */
@media (max-width: 768px) {
  /* Transformation Section Mobile */
  .transformation-section {
    /* padding: 40px 0; */
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .gallery-container {
    padding: 0 50px;
    max-width: 100%;
  }
  .gallery-wrapper {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
  }
  .gallery-grid {
    gap: 0;
    -ms-flex-align: center;
        align-items: center;
  }
  .transformation-item {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .image-container {
    border-radius: 16px;
    margin: 0 auto;
    max-width: 350px; /* Limit max width for better centering */
    width: 100%;
  }
  .gallery-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    background: rgba(215, 146, 90, 0.9);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .gallery-btn i {
    font-size: 0.9rem;
  }
  .gallery-btn.prev {
    left: 8px;
  }
  .gallery-btn.next {
    right: 8px;
  }
  /* MOBILE DOTS - Smaller and centered */
  .gallery-dots {
    margin-top: 24px;
    gap: 6px;
  }
  .gallery-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #d1d5db;
  }
  .gallery-dot.active {
    width: 20px !important;
    height: 8px !important;
    border-radius: 4px !important;
    background: #d7925a;
  }
  .image-label-left,
  .image-label-right {
    padding: 6px 14px;
    font-size: 12px;
    bottom: 12px;
    font-weight: 600;
  }
  .stars {
    -ms-flex-pack: start;
        justify-content: start;
    margin-bottom: 10px;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: rgba(215, 146, 90, 0.9);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .carousel-btn.prev {
    left: 8px;
  }
  .carousel-btn.next {
    right: 8px;
  }
  .carousel-dots {
    gap: 6px;
    margin-top: 24px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
  }
  .carousel-dot.active {
    width: 20px;
    height: 8px;
    border-radius: 4px;
    background: #d7925a;
  }
}
@media (max-width: 480px) {
  /* Transformation Section - Extra Small Mobile */
  .section-title {
    font-size: 21px;
    margin-bottom: 25px;
  }
  .gallery-container {
    padding: 0 45px;
  }
  .image-container {
    max-width: 300px;
  }
  .gallery-btn {
    width: 40px;
    height: 40px;
  }
  .gallery-btn.prev {
    left: 5px;
  }
  .gallery-btn.next {
    right: 5px;
  }
  /* Smaller dots for very small screens */
  .gallery-dots {
    gap: 5px;
    margin-top: 20px;
  }
  .gallery-dot {
    width: 7px !important;
    height: 7px !important;
  }
  .gallery-dot.active {
    width: 18px !important;
    height: 7px !important;
  }
  .stars {
    font-size: 18px;
    gap: 4px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .carousel-btn.prev {
    left: 5px;
  }
  .carousel-btn.next {
    right: 5px;
  }
  .carousel-dots {
    gap: 5px;
    margin-top: 20px;
  }
  .carousel-dot {
    width: 7px;
    height: 7px;
  }
  .carousel-dot.active {
    width: 18px;
    height: 7px;
  }
}
/* Extra Small Devices */
@media (max-width: 375px) {
  .gallery-container {
    padding: 0 40px;
  }
  .image-container {
    max-width: 280px;
  }
  .gallery-btn,
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
/* == Updated Testimonial Section CSS == */
.results-testimonials-section {
  padding: 50px 20px;
  background: #f9f5f0;
}

.results-testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1a1a1a;
}

.results-testimonials-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.results-testimonials-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.results-testimonials-track {
  display: -ms-flexbox;
  display: flex;
  transition: -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out; /* smooth slide */
  will-change: transform; /* boost performance */
}

.rt-card {
  -ms-flex: 0 0 calc(33.333% - 24px);
      flex: 0 0 calc(33.333% - 24px);
  min-width: calc(33.333% - 24px);
  background: white;
  padding: 35px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-right: 24px;
}

.rt-card:last-child {
  margin-right: 0;
}

.rt-card:first-child {
  margin-left: 12px;
}

.rt-stars {
  color: #d7925a;
  font-size: 20px;
  margin-bottom: 15px;
}

.rt-text {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rt-author {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.rt-location {
  font-size: 14px;
  color: #9ca3af;
}

#rtTrack {
  -ms-touch-action: pan-y;
      touch-action: pan-y; /* allow horizontal swipe */
}

/* NAV BUTTONS */
.results-testimonials-nav {
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d7925a;
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(215, 146, 90, 0.4);
  font-size: 20px;
  z-index: 10;
}

.results-testimonials-nav.prev {
  left: -20px;
}

.results-testimonials-nav.next {
  right: -20px;
}

.results-testimonials-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.results-testimonials-dots button {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.results-testimonials-dots button.active {
  width: 26px;
  border-radius: 15px;
  background: #d7925a;
}

/* TABLET */
@media (max-width: 1024px) {
  .rt-card {
    -ms-flex: 0 0 calc(50% - 24px);
        flex: 0 0 calc(50% - 24px);
    /* min-width: calc(50% - 24px); */
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .rt-card {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    /* min-width: 100%; */
    margin-right: 0;
  }
  .results-testimonials-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .results-testimonials-nav.prev {
    /* left: 5px; */
    display: none;
  }
  .results-testimonials-nav.next {
    /* right: 5px; */
    display: none;
  }
  .results-testimonials-dots button {
    width: 8px;
    height: 8px;
  }
  .results-testimonials-dots button.active {
    width: 18px;
  }
}
/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/user-profile.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
:root {
  --primary-color: #d7925a;
  --primary-orange: #d7925a;
  --primary-dark: #b87842;
  --primary-light: #e5a875;
  --secondary-color: #2c3e50;
  --text-dark: #333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */
  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */
  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */
  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */
  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  padding-right: 0 !important;
} */
body.swal2-shown {
  padding-right: 0 !important;
  overflow-y: auto !important;
}

.user-profile {
  margin-top: 70px;
}

/* Profile Header */
.profile-header {
  /* background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  ); */
  background: var(--primary);
  padding: 40px 0;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-email {
  font-size: 14px;
  opacity: 0.9;
}

/* Main Container */
.profile-container {
  /* padding-top: 30px;
  padding-bottom: 50px; */
  max-width: 100%;
  overflow-x: hidden;
  padding: 20px 0px;
}

@media (min-width: 1920) {
  .container {
    max-width: 1320px !important;
  }
}
/* Sidebar Navigation */
.sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.sidebar-item {
  padding: 18px 25px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

/* .sidebar-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
} */
.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item:hover {
  /* background-color: #fff8f2; */
  padding-left: 30px;
  /* transform: translateX(2px); */
}

.sidebar-item.active {
  /* background-color: var(--primary-color); */
  background-color: var(--primary);
  color: white;
}

.sidebar-item.active::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sidebar-item i {
  font-size: 20px;
  width: 25px;
}

.sidebar-item.active i {
  color: #fff;
}

/* Content Area */
.content-area {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 30px;
  min-height: 350px;
  max-width: 100%;
  overflow-x: hidden;
}

.profile-content-section {
  display: none;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  transition: none;
}

.profile-content-section.active {
  display: block;
  -webkit-animation: slideIn 0.5s ease-out forwards;
          animation: slideIn 0.5s ease-out forwards;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  /* border-bottom: 2px solid var(--primary-color); */
}

/* Account Cards */
.stat-card {
  /* background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); */
  background: var(--card);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 8px 16px rgba(215, 146, 90, 0.2); */
  border-color: var(--primary2);
}

.stat-card i {
  font-size: 40px;
  /* color: var(--primary-color); */
  color: var(--primary);
  margin-bottom: 15px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Profile Tabs */
.profile-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.profile-tab {
  padding: 12px 30px;
  cursor: pointer;
  display: inline-block;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.profile-tab::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  /* background: var(--primary-color); */
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.profile-tab:hover {
  /* color: var(--primary-color); */
  color: var(--primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.profile-tab.active {
  /* color: var(--primary-color); */
  color: var(--primary);
}

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

.tab-content-item {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: fadeInUp 0.4s ease-out forwards;
          animation: fadeInUp 0.4s ease-out forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Form Styles */
.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  /* border-color: var(--primary-color); */
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(215, 146, 90, 0.15);
}

.form-control:disabled {
  background-color: #f1f1f1;
}

/* Buttons */
.btn-primary-custom {
  /* background: var(--primary-color) !important; */
  background: var(--primary) !important;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  /* background: var(--primary-dark); */
  background: var(--primary2);
  color: white;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 4px 12px rgba(215, 146, 90, 0.4); */
}

/* Checkbox Styles */
.form-check {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.form-check:hover {
  /* background: #fff8f2; */
}

.form-check-input:checked {
  /* background-color: var(--primary-color); */
  background-color: var(--primary);
  /* border-color: var(--primary-color); */
  border-color: var(--primary);
}

.form-check-label {
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
}

/* Table Styles */
.table-custom {
  border-radius: 8px;
  overflow: hidden;
}

.table-custom thead {
  /* background: var(--primary-color); */
  background: var(--primary);
  color: white;
}

.table-custom thead th {
  border: none;
  padding: 15px;
  font-weight: 600;
}

.table-custom tbody td {
  padding: 15px;
  vertical-align: middle;
}

.table-custom tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.table-custom tbody tr:hover {
  /* background-color: #fff8f2; */
}

.btn-details {
  /* background: var(--primary-color); */
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-details:hover {
  /* background: var(--primary-dark); */
  background: var(--primary2);
  color: white;
  /* transform: scale(1.05); */
}

/* Review Card */
.review-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* transform: translateX(5px); */
}

.review-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}

.review-product {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.review-rating {
  color: #ffc107;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-text {
  color: var(--text-dark);
  line-height: 1.6;
}

.track-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.track-icon {
  font-size: 80px;
  /* color: var(--primary-color); */
  color: var(--primary);
  margin-bottom: 20px;
}

.track-input-group {
  position: relative;
  margin-top: 30px;
}

.track-input {
  padding-right: 120px;
}

.btn-track {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  /* background: var(--primary-color); */
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-track:hover {
  /* background: var(--primary-dark); */
  background: var(--primary2);
}

.profile-img-container {
  position: relative;
  display: inline-block;
}

.upload-btn,
.delete-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  position: absolute;
  bottom: 0;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn {
  background: #007bff;
  left: 0;
}

.delete-btn {
  background: #dc3545;
  right: 0;
}

.upload-btn:hover,
.delete-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 80px;
  color: var(--border-color);
  margin-bottom: 20px;
}

.empty-state h4 {
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-header {
    padding: 30px 0;
  }
  .profile-avatar {
    width: 80px;
    height: 80px;
  }
  .profile-name {
    font-size: 22px;
  }
  .sidebar {
    margin-bottom: 20px;
  }
  .content-area {
    padding: 12px;
  }
  .section-title {
    font-size: 20px;
  }
  .table-responsive {
    font-size: 14px;
  }
  .reviews-pagination {
    gap: 6px;
  }
  .pagination-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .reviews-pagination {
    gap: 4px;
  }
  .pagination-btn {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/* SweetAlert2 Custom Styling */
.swal2-popup {
  /* font-family: "Poppins", sans-serif; */
  border-radius: 16px;
  max-width: 90vw !important;
  width: auto !important;
}

.swal2-container {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.swal2-title {
  color: var(--text-dark);
  font-weight: 600;
}

.swal2-confirm {
  background-color: #dc3545 !important;
  border-radius: 8px;
  padding: 10px 30px;
  font-weight: 500;
}

.swal2-confirm:hover {
  background-color: var(--primary-color) !important;
}

.swal2-cancel {
  background-color: var(--text-muted) !important;
  border-radius: 8px;
  padding: 10px 30px;
  font-weight: 500;
}

.swal2-cancel:hover {
  background-color: var(--text-dark) !important;
}

.swal2-icon.swal2-warning {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.reviews-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 146, 90, 0.3);
}

.pagination-btn.active {
  /* background: var(--primary-orange); */
  background: var(--primary2);
  color: var(--white);
  /* border-color: var(--primary-orange); */
  border-color: var(--text);
}

.pagination-btn.dots {
  border: none;
  pointer-events: none;
  background: transparent;
}

.pagination-btn.dots:hover {
  background: transparent;
  -webkit-transform: none;
          transform: none;
  box-shadow: none;
}
/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/assets/styles/css/thankyou.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */
  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */
  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */
  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */
  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: #ede9e6;
  color: #1f2937;
  line-height: 1.6;
  min-height: 100vh;
} */
.container-order-success {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-top: 10rem;
}

.success-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon-wrapper {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  border-radius: 50%;
  margin-bottom: 1.5rem;
  -webkit-animation: scaleIn 0.5s ease-out;
          animation: scaleIn 0.5s ease-out;
  /* border: 3px solid #f9e4c8; */
  border: 3px solid var(--primary);
}

.success-icon {
  font-size: 3rem;
  /* color: #10b981; */
  color: var(--primary);
  -webkit-animation: checkmark 0.6s ease-out 0.3s both;
          animation: checkmark 0.6s ease-out 0.3s both;
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes checkmark {
  00% {
    -webkit-transform: rotate(-45deg) scale(0);
            transform: rotate(-45deg) scale(0);
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}
@keyframes checkmark {
  00% {
    -webkit-transform: rotate(-45deg) scale(0);
            transform: rotate(-45deg) scale(0);
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
}
.success-title {
  font-size: 2rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  color: var(--text);
  margin-bottom: 0.5rem;
}

.success-subtitle {
  font-size: 1rem;
  /* color: #666; */
  color: var(--infoText);
  margin-bottom: 2rem;
}

.order-id {
  display: inline-block;
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: linear-gradient(135deg, var(--line) 0%, var(--chip) 100%);
  /* color: #e17f30; */
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 1rem;
  /* border: 2px solid #f9e4c8; */
  border: 2px solid var(--primary);
  font-size: 1.1rem;
}

/* What Happens Next Section */
.next-steps {
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: linear-gradient(135deg, var(--line) 0%, var(--chip) 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  /* border: 2px solid #f9e4c8; */
  border: 2px solid var(--muted);
}

.next-steps-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.thankyou-step {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.thankyou-step:last-child {
  margin-bottom: 0;
}

.thankyou-step-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45px;
  height: 45px;
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.thankyou-step-content {
  max-width: 500px;
}

.thankyou-step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  /* color: #1a1a1a; */
  color: var(--text);
  margin-bottom: 0.5rem;
}

.thankyou-step-content p {
  font-size: 0.95rem;
  /* color: #666; */
  color: var(--primary);
  line-height: 1.6;
}

/* Need Help Section */
.help-section {
  background: #fafafa;
  border-radius: 16px;
  padding: 1.75rem;
  margin: 2rem 0;
  border: 2px solid #f0f0f0;
}

.help-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.75rem;
  -ms-flex-align: center;
      align-items: center;
}

.contact-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.contact-item i {
  /* color: #e17f30; */
  color: var(--primary);
  width: 20px;
}

/* Buttons */
.button-group {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 0.875rem 1.75rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(225, 127, 48, 0.3);
}

.btn-primary:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 127, 48, 0.4);
}

.btn-secondary {
  background: white;
  color: #666;
  border: 2px solid #e5e7eb;
}

.loyal-badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.375rem;
  background: #1a1a1a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.loyal-badge strong {
  font-weight: 700;
}

/* Order Details */
.order-details {
  background: white;
  /* border: 2px solid #f0f0f0; */
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  text-align: left;
}

.order-details-title {
  font-size: 1.2rem;
  font-weight: 600;
  /* color: #1a1a1a; */
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}

.detail-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  /* color: #666; */
  color: var(--primary);
  font-size: 0.9rem;
}

.detail-value {
  /* color: #1a1a1a; */
  color: var(--primary2);
  font-weight: 500;
  font-size: 0.9rem;
}

.order-items {
  margin-top: 1rem;
}

.order-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: start;
  padding: 0.875rem;
  /* background: linear-gradient(135deg, #fef5ed 0%, #fef9f3 100%); */
  background: linear-gradient(135deg, var(--line) 0%, var(--chip) 100%);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  /* border: 1px solid #f9e4c8; */
  border: 1px solid var(--primary);
}

.item-name {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.item-qty {
  font-size: 0.8rem;
  color: #666;
}

.item-price {
  font-weight: 600;
  /* color: #e17f30; */
  color: var(--primary);
  font-size: 0.95rem;
}

.total-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid #f0f0f0;
  font-size: 1.2rem;
  font-weight: 700;
}

.total-row:hover {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.total-amount {
  /* color: #e17f30; */
  color: var(--primary);
}

@media (max-width: 640px) {
  .container-order-success {
    padding: 1rem;
    padding-top: 3rem;
  }
  .success-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .success-title {
    font-size: 1.6rem;
  }
  .success-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .success-icon {
    font-size: 2.5rem;
  }
  .button-group {
    -ms-flex-direction: column;
        flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .contact-info {
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .next-steps-title {
    font-size: 1.2rem;
  }
  .thankyou-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .thankyou-step-content h4 {
    font-size: 1.1rem;
  }
  .order-details {
    padding: 1.5rem;
  }
}
