:root {
  /* Elegant Gold & Charcoal Grey Palette for Minimalist Luxury */
  --color-gold: #B8860B; /* Primary Accent: Muted Gold (Used for prices, buttons, accents) */
  --color-charcoal: #1E1E1E; /* Darkest Text/Elements (Replaces all black/dark text) */
  --color-light-grey: #F8F8F8; /* Main Background (Airy, off-white) */
  --color-medium-grey: #E8E8E8; /* Secondary Background/Borders (Used for section dividers) */
  --color-white: #ffffff; /* Clean white for blocks/cards */

  /* General variables updated to new palette */
  --primary: var(--color-gold);
  --secondary: var(--color-charcoal);
  --accent: var(--color-light-grey);
  --text: var(--color-charcoal);
  --light: var(--color-light-grey);
  --gray: var(--color-medium-grey);
  --dark: var(--color-charcoal);
  --white: var(--color-white);
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* Base */
body {
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

body, html {
  background: var(--light) !important; /* Force the new light background */
}

.font-cormorant {
  font-family: 'Cormorant Garamond', serif;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutDown {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(20px); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-in-up { animation: fadeInUp 0.3s ease-out forwards; }
.animate-fade-out-down { animation: fadeOutDown 0.3s ease-out forwards; }
.floating { animation: float 6s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }


/* ========================================
   NAVBAR - MERGED & OPTIMIZED
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 9999 !important;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar > .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar .logo {
  flex-shrink: 0;
}


.navbar > .hidden.lg\:flex.flex-1 {
  display: none;
  flex: 1;
  justify-content: center;
}

.navbar > .hidden.lg\:flex:last-child {
  flex-shrink: 0;
}

#mobile-menu-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
  flex-shrink: 0;
}
#mobile-menu-button i,
#mobile-menu-button svg {
  width: 24px !important;
  height: 24px !important;
  color: white !important;
  stroke: white !important;
}

/* Mobile Menu Overlay */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  background-color: rgba(11, 13, 16, 0.98);
  z-index: 9998;
  overflow-y: auto;
  padding: 80px 1.5rem 2rem;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  pointer-events: none;
}
#mobile-menu:not(.hidden) {
  transform: translateX(0);
  pointer-events: all;
}

/* Close Menu Button */
#close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}
#close-menu i,
#close-menu svg {
  width: 28px !important;
  height: 28px !important;
  color: white !important;
  stroke: white !important;
}

/* Right Links Styling */
.navbar .right-links a {
  font-size: 0.75rem !important;
  line-height: 1rem;
  letter-spacing: 0.02em;
}
.navbar .right-links i {
  width: 1rem !important;
  height: 1rem !important;
}

/* Desktop Menu */
@media (min-width: 1024px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar > .flex {
    width: auto;
  }
  .navbar > .hidden.lg\:flex.flex-1,
  .navbar > .hidden.lg\:flex:last-child {
    display: flex !important;
  }
  .navbar .right-links a {
    font-size: 1rem;
  }
  #mobile-menu-button,
  #mobile-menu {
    display: none !important;
  }
  .navbar > .flex > .flex.lg\:hidden {
    display: none;
  }
}

/* Mobile Menu Visibility */
@media (max-width: 1023px) {
  .navbar > .hidden.lg\:flex {
    display: none !important;
  }
  .navbar > .flex > .flex.lg\:hidden {
    display: flex;
    align-items: center;
  }
  #mobile-menu-button {
    display: flex !important;
  }
}

/* Logo Size on Mobile */
@media (max-width: 767px) {
  .navbar .logo img {
    height: 35px;
  }
}



/* ========================================
   SCROLL DOWN INDICATOR
   ======================================== */
.hero .absolute.bottom-8 {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInOut 2s ease-in-out infinite;
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@media (max-width: 767px) {
  .hero .absolute.bottom-8 {
    bottom: 1.5rem;
    font-size: 0.65rem;
  }
}

/* ========================================
   BODY SCROLL LOCK
   ======================================== */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

/* ========================================
   SAFE AREA INSETS
   ======================================== */
@supports (padding: max(0px)) {
  .navbar {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  #mobile-menu {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* ========================================
   PREVENT HORIZONTAL SCROLL
   ======================================== */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
.hero,
.hero .hero-swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========================================
   BACK TO TOP BUTTON (SMALL SCREENS)
   ======================================== */
@media (max-width: 639px) {
  #backToTop {
    right: 0.5rem;
    bottom: 0.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Cart Counter */
.cart-counter { transition: var(--transition); }
/* Category Filter - Updated to use new primary/light colors */
.category-filter.active {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.category-filter.active:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

/* Category Card - Slight refinements for a cleaner look */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
    border: 1px solid var(--color-medium-grey); /* Subtle border */
    transition: all 0.3s ease;
}
.category-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .category-content {
            bottom: 0.75rem;
            left: 0.75rem;
            right: 0.75rem;
        }
        .category-card h4 {
            font-size: 1rem;
        }
        .category-card p {
            font-size: 0.75rem;
        }
    }

/* Product Container and Carousel */
.product-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0.5rem; /* Reduced gap for more compact layout */
  width: 100%;
  max-width: 100%;
  padding: 0 0.5rem;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#products-carousel {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.5rem;
  transition: transform 0.3s ease-in-out;
  width: fit-content;
  cursor: grab;
  touch-action: pan-y;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
/* Product Cards */
.product-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 16rem;
  width: 18rem;
  height: 33rem;
  background: rgba(143, 142, 150, 0.9); /* Updated to match Crystal Glass Effect */
  border-radius: 16px; /* Updated to match Crystal Glass Effect */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8); /* Updated to match Crystal Glass Effect */
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 1px 1px rgba(255, 255, 255, 0.9); /* Updated to match Crystal Glass Effect */
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  color: black;
  backdrop-filter: blur(4px); /* Added to match Crystal Glass Effect */
  -webkit-backdrop-filter: blur(4px); /* Added to match Crystal Glass Effect */
  position: relative; /* Added to match Crystal Glass Effect */
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.7s;
  z-index: 1;
}
.product-card:hover::after {
  left: 100%;
}
@media (min-width: 640px) {
  .product-card {
    flex: 0 0 18rem;
    width: 18rem;
  }
}
.product-card:hover {
  transform: translateY(-4px); /* Updated to match Crystal Glass Effect */
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(201, 169, 110, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 1); /* Updated to match Crystal Glass Effect */
  border-color: rgba(201, 169, 110, 0.3); /* Updated to match Crystal Glass Effect */
  background: rgba(143, 142, 150, 1); /* Updated to match Crystal Glass Effect */
}
.product-card > .relative {
  height: 13rem;
  overflow: hidden;
  border-radius: 0.5rem; /* Updated to match Crystal Glass Effect */
}
@media (min-width: 640px) {
  .product-card > .relative {
    height: 14rem;
  }
}
.product-card > .relative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover > .relative img {
  transform: scale(1.05);
}
.product-card > .relative > span {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  border-radius: 0.25rem; /* Updated to match Crystal Glass Effect */
  color: white;
  background-color: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
  z-index: 3; /* Added to match Crystal Glass Effect */
}
.product-card > .relative > span.bg-green-500 {
  background-color: #22c55e;
}
.product-card > div.mt-4 {
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 640px) {
  .product-card > div.mt-4 {
    padding: 0.5rem;
  }
}
.product-card > div.mt-4 > h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000; /* Updated to match Crystal Glass Effect */
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease; /* Added to match Crystal Glass Effect */
}
.product-card:hover > div.mt-4 > h4 {
  color: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
}
@media (min-width: 640px) {
  .product-card > div.mt-4 > h4 {
    font-size: 1rem;
  }
}
.product-card > div.mt-4 > p.text-sm {
  color: #333333; /* Updated to match Crystal Glass Effect */
  font-size: 0.7rem;
  margin: 0.2rem 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card > div.mt-4 > p.text-gold {
  color: #fffc00; /* Updated to match Crystal Glass Effect (yellow) */
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0.2rem 0;
}
.product-card > div.mt-4 > .flex.items-center {
  margin: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.product-card > div.mt-4 > .flex.items-center > i {
  width: 0.9rem;
  height: 0.9rem;
  color: #facc15; /* Updated to match Crystal Glass Effect (yellow) */
}
.product-card > div.mt-4 > .flex.items-center > span {
  color: #9ca3af; /* Updated to match Crystal Glass Effect */
  font-size: 0.65rem;
  margin-left: 0.3rem;
}
.product-card > div.mt-4 > p.text-xs {
  color: #9ca3af; /* Updated to match Crystal Glass Effect */
  font-size: 0.65rem;
  margin: 0.2rem 0;
}
.product-card > div.mt-4 > .flex.space-x-2 {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.3rem;
}
.product-card > div.mt-4 > .flex.space-x-2 > .add-to-cart,
.product-card > div.mt-4 > .flex.space-x-2 > .product-detail {
  flex: 1;
  padding: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
}
.product-card > div.mt-4 > .flex.space-x-2 > .add-to-cart {
  border: 1px solid #d4af37; /* Updated to match Crystal Glass Effect (gold) */
  background: transparent;
  color: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
}
.product-card > div.mt-4 > .flex.space-x-2 > .add-to-cart:hover {
  background: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
  color: #353530;
}
.product-card > div.mt-4 > .flex.space-x-2 > .product-detail {
  border: 1px solid #fff;
  background: #285157; /* Updated to match Crystal Glass Effect */
  color: #fff;
}
.product-card > div.mt-4 > .flex.space-x-2 > .product-detail:hover {
  background: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
  color: #285157; /* Updated to match Crystal Glass Effect */
  border-color: #d4af37; /* Updated to match Crystal Glass Effect (gold) */
}
/* Responsive Adjustments */
@media (max-width: 767px) {
  .product-card {
    flex: 0 0 14rem;
    width: 14rem;
    height: 26rem;
  }
  .product-card > .relative {
    height: 10rem;
  }
  .product-card > div.mt-4 {
    padding: 0.3rem;
  }
  .product-card > div.mt-4 > h4 {
    font-size: 0.85rem;
  }
  .product-card > div.mt-4 > p.text-sm {
    font-size: 0.65rem;
  }
  .product-card > div.mt-4 > p.text-gold {
    font-size: 0.8rem;
  }
  .product-card > div.mt-4 > .flex.items-center > i {
    width: 0.8rem;
    height: 0.8rem;
  }
  .product-card > div.mt-4 > .flex.items-center > span {
    font-size: 0.6rem;
  }
  .product-card > div.mt-4 > p.text-xs {
    font-size: 0.6rem;
  }
  .product-card > div.mt-4 > .flex.space-x-2 {
    gap: 0.2rem;
  }
  .product-card > div.mt-4 > .flex.space-x-2 > .add-to-cart,
  .product-card > div.mt-4 > .flex.space-x-2 > .product-detail {
    font-size: 0.75rem;
    padding: 0.25rem;
  }
}

/* Hero Section */
/*.hero {*/
/*  position: relative;*/
/*  min-height: 100vh;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: start;*/
/*  text-align: left;*/
/*  padding: 6rem 1rem 2rem;*/
/*}*/



/* Products Header */
.products-header {
  background-color: #293d3c;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.products-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* Products Filter */
.products-filter-section {
  background-color: #f5f5f5;
  padding: 2rem 0;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background-color: white;
  color: #333;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #5c9585;
  color: white;
}

/* Products Grid */
.products-section {
  padding: 4rem 0;
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Newsletter */
.newsletter-input {
  border: none;
  border-bottom: 2px solid var(--secondary);
  background: transparent;
}

/* Popup Notification */
.popup-notification {
  position: absolute;
  background-color: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transform: translateY(-100%);
  white-space: nowrap;
}

.popup-notification.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

/* Checkout Steps */
.checkout-step { position: relative; }

.checkout-step.active .step-number,
.checkout-step.completed .step-number {
  background-color: var(--primary);
  color: white;
}

.checkout-step.completed .step-number { background-color: var(--accent); }

/* CAPTCHA */
.captcha-container {
  background-color: #cacaca;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.captcha-text {
  font-family: 'Courier New', monospace;
  font-size: 26px;
  letter-spacing: 5px;
  color: #8c8b8b;
  padding: 5px 10px;
  border-radius: 3px;
}

/* Order Summary */
.order-summary { border-left: 1px solid #e5e7eb; }

@media (max-width: 1023px) {
  .order-summary {
    border-left: none;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
  }
}

/* Cart Item Controls */
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-btn:hover { background-color: #e5e7eb; }

.remove-btn {
  color: #ef4444;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.remove-btn:hover { background-color: #fef2f2; }

.cancel-order-btn {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  margin-top: 1rem;
}

.cancel-order-btn:hover { background-color: #fee2e2; }

/* Section Backgrounds */
/* #about { background-color: #ffffff; }
#features { background-color: var(--primary); }
#products, #contact { background-color: #e9eceb; }
#testimonials { background-color: #d6e4e1; } */

/* Gradient Backgrounds */
/* .bg-skincare-gradient { background:#808080 !important; }
.bg-hair-gradient { background: #2c2c2c!important; }
.bg-fat-gradient { background:#8f8e96 !important;  }
.bg-slimming-gradient { background: #2c2c2c!important; }
.bg-cosmetic-gradient { background:#8f8e96 !important; }
.bg-specialty-gradient { background: #2c2c2c!important; }
.bg-starter-gradient { background:#8f8e96 !important;  }
.bg-perfume-gradient { background: #2c2c2c!important; } */

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.gradient-divider {
    border: 0;
    height: 2px;
    width: 20%;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    margin: 1rem auto; /* centers it horizontally */
}


#cosmetic-section .section-divider {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  #cosmetic-section .section-divider {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Scrollbar */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Scroll Button */
.scroll-btn { transition: var(--transition); }
.scroll-btn:hover {
  background: #d4af37 !important;
  color: #1a1a1a !important;
  transform: scale(1.05);
}

/* Explore Button */
.explore-btn {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.explore-btn:hover::before { left: 100%; }

.explore-btn:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Contact Label */
.contact-label { color: #e7bc62 !important; }

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.cta-section p {
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-whatsapp {
  background-color: #22c55e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover { background-color: #16a34a; }

.btn-call {
  background-color: #2b3f3a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-call:hover { background-color: #5c9585; }

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero {
    padding: 5rem 0.5rem 2rem;
    justify-content: start;
  }
  .hero .absolute { bottom: 1rem; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero p { font-size: clamp(0.875rem, 2.5vw, 1rem); }
  .hero a { padding: 0.625rem 1.5rem; font-size: clamp(0.75rem, 2vw, 0.875rem); }
  #products-carousel { gap: 1rem; cursor: grab; }
  .product-card {
    flex: 0 0 16rem;
    min-width: 16rem;
    max-width: 16rem;
    height: 26rem;
  }
  .product-image { height: 12rem; }
}

.features-section .features-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* space between boxes */

}

/* Each feature box */
.features-section .feature-item {
  flex: 1 1 22%;
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers image + text horizontally */
  justify-content: flex-start;
}

/* Center and size images nicely */
.features-section .feature-item img {
  display: block;
  margin: 0 auto 1rem auto;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Headings and text */
.features-section .feature-item h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.features-section .feature-item p {
  color: #ffffff;
  font-size: 0.875rem;
  max-width: 220px;
  margin: 0 auto;
}

/* Responsive layout */
@media (max-width: 768px) {
  .features-section .feature-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .features-section .feature-item {
    flex: 1 1 100%;
  }
}
/* About Section */
#about {
  position: relative;
  overflow: hidden;
}

/* Mosaic blocks */
#about .mosaic-column {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

#about .feature-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Background image */
#about .about-right-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#about .about-right-bottom div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

/* Mobile + Tablet: Stack text above mosaic in 2x2 */
@media (max-width: 1024px) {
  #about .mosaic-column, 
  #about .text-column {
    width: 100%;
  }

  #about .mosaic-column {
    order: 2; /* Mosaic below text */
  }

  #about .text-column {
    order: 1; /* Text on top */
    margin-bottom: 2rem;
  }

  #about .about-right-bottom {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust as needed */
    margin-top: 2rem;
    opacity: 0.3; /* Optional: makes text readable */
  }
}

/* Desktop smoothing */
@media (min-width: 1025px) {
  #about .mosaic-column .feature-block {
    min-height: 260px;
  }
}

