:root {
  --primary: #ff7aa2;
  --primary-dark: #e85d8a;
  --secondary: #a18cd1;
  --accent: #fbc2eb;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
  --soft-nude: #f7e9d7;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--soft-nude); /* Matching homepage/product background */
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Modern Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23ff7aa210" stroke-width="2" fill="none"/></svg>');
  background-size: 120px;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  z-index: 0;
}

.testimonial-content {
  padding: 40px 30px 30px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--dark);
  position: relative;
  padding-left: 20px;
}

.testimonial-text:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.author-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  text-align: center;
}

.author-info p {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
}

.rating {
  color: #ffc107;
  margin-top: 5px;
}

/* Before & After Gallery */
.gallery-section {
  padding: 5rem 0;
  background: white;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 12px 25px;
  margin: 0 10px 15px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 15px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 350px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Statistics Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fbc2eb 0%, #a18cd1 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
  background-size: 60px 60px;
  animation: float 20s ease-in-out infinite;
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 1 !important;
  visibility: visible !important;
}

.stat-card::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.8s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
  color: white !important;
}

.stat-card:hover .stat-value {
  transform: scale(1.1);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.stat-value::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-value::after {
  transform: translateX(-50%) scaleX(1);
}

.stat-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.4s ease;
  opacity: 0.9;
}

.stat-card:hover .stat-label {
  opacity: 1;
  transform: translateY(-2px);
  letter-spacing: 1.5px;
}

/* Animation for stats appearing on scroll */
.stat-card {
  opacity: 1;
  transform: translateY(0);
  animation: floatCard 6s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 1.5s; }
.stat-card:nth-child(3) { animation-delay: 3s; }
.stat-card:nth-child(4) { animation-delay: 4.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Pulse animation for stat values */
.stat-value {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Scroll-triggered animations will be handled by JavaScript */
.stat-card.scroll-animate {
  animation: slideInUp 0.8s ease forwards;
}

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

/* Glow effect on hover */
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::after {
  opacity: 1;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: white;
}

.cta-container {
  background: linear-gradient(to right, #ff7aa2, #a18cd1);
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-container:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-container:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-container p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #b9911f, #cfa93b);
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.cta-button:hover {
  background: linear-gradient(to right, #a57e1a, #b68d2f);
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .cta-button:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .testimonial-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-item {
    height: 300px;
  }

  .stat-value {
    font-size: 2.8rem;
  }

  .cta-container h2 {
    font-size: 2rem;
  }
}

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

  .cta-container {
    padding: 40px 20px;
  }

  .cta-container h2 {
    font-size: 1.7rem;
  }
}


/* Icon colors – menu + heart */
.nav-toggle i,
footer i.fa-heart,
i.fas,
i.far,
i.fa {
  color: var(--dark) !important;
  transition: color 0.3s ease;
}

.nav-toggle i:hover,
footer i.fa-heart:hover {
  color: var(--primary-dark);
}

/* Slide-in mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--soft-nude);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 9999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
}

/* Active state: menu slides in from left */
.mobile-menu.active {
  transform: translateX(0);
}

/* Nav links inside mobile menu */
.mobile-menu a {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.nav-toggle i,
.mobile-menu i,
.mobile-menu .close-menu {
  color: var(--accent) !important;
  transition: var(--transition);
}

/* Keep hamburger icon dark */
.nav-toggle i,
.nav-toggle {
  color: var(--text) !important;  /* dark color (like #3a3a3a) */
  transition: var(--transition);
}

/* Desktop navbar icons in links — gold */
.nav-links li a i {
  color: var(--accent) !important; /* #d4af37 */
  transition: var(--transition);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Optional: hover scale effect for desktop icons */
.nav-links li a:hover i {
  transform: scale(1.2);
}

/* Base Shop Now Button Styling */
.shop-now-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--btn-gradient, linear-gradient(to right, #c1976b, #f5e0c2));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  opacity: 1; /* mobile default */
  transform: scale(1);
}

/* Desktop - Dull by default, glow on hover */
@media (min-width: 1025px) {
  .shop-now-btn {
    opacity: 0.65;
    filter: brightness(0.95);
    transform: scale(1);
  }

  .shop-now-btn:hover {
    opacity: 1;
    filter: brightness(1.15);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Tablet & Mobile - Full Bright Always */
@media (max-width: 1024px) {
  .shop-now-btn {
    opacity: 1 !important;
    filter: brightness(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
}

.shop-now-section {
  padding: 4rem 1rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="%23ff7aa210" stroke-width="2" fill="none"/></svg>');
  background-size: 120px;
  background-repeat: repeat;
  background-position: center;
  transition: background 0.3s ease-in-out;
}

/* Navbar & Why Customers Love Us responsive layout */
.nav-links {
  display: flex;
  gap: 2rem;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--text); /* dark skin color */
  cursor: pointer;
}

/* Stats cards layout */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Below 1300px: show hamburger, hide nav-links, adjust cards */
@media (max-width: 1299px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

/* Default: Desktop styles */
.nav-links {
  display: flex;
  gap: 2rem;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--text); /* dark skin tone */
  cursor: pointer;
}

/* Stats section default (≥1300px) */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Tablet styles: <1300px */
@media (max-width: 1299px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

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

/* Mobile styles: ≤767px */
@media (max-width: 767px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

body {
  overflow-x: hidden;
}

.footer-links a i {
  color: var(--accent) !important;
  opacity: 1 !important;
  transition: color 0.3s ease;
}
/* Horizontal Scroll for Gallery Section (Mobile/Tablets) */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}
.gallery-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.gallery-item {
  flex: 0 0 90%;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* Restore grid on desktop */
@media (min-width: 1024px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow: unset;
  }
  .gallery-item {
    flex: unset;
  }
}

