/* Root Variables for Theming */
:root {
  /* Light Mode (Default) */
  --primary-color: #85abdf;
  --secondary-color: #ff8fa3;
  /* Overridden by second root */
  --text-color: #333333;
  --text-inverse: #ffffff;
  --bg-color: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --btn-hover: #e6e6e6;
  --navbar-scroll: rgba(168, 192, 226, 0.95);
  --image-overlay: rgba(0, 0, 0, 0.3);
  --accent-color: #ff4d6d;
  /* Overridden by second root */
  --badge-bg: var(--secondary-color);
  /* Use secondary pink for badge BG */
  --badge-text: var(--text-inverse);
  --banner-bg: #5e82ab;
  /* White text on badge */

  /* Light mode customizations */
  --light-pink: #ffccd5;
  --lighter-pink: #fff0f3;
  --white: #ffffff;
  --text-light: #5a5a5a;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Product Grid Variables */
  --product-grid-border: 1px solid #f0f0f0;
  --product-image-width: 100%;
  --product-image-height: 250px;
  --discount-label-bg: #ff6b6b;
  --discount-font-size: 12px;
  --social-margin: 5px 0;
  --rate-color: #ffc107;
  --social-icon-size: 36px;
  --social-li-margin: 0 5px;
  --social-icon-hover-bg: #4a90e2;
  --price-font-size: 16px;
  --title-font-size: 16px;
  --desc-font-size: 13px;
  --banner-color: #4a90e2;
  --first-color: #333;
  --text-gary: #c8c8c8;
  --text-white: #fff;

  /* Effects & Layout */
  --shadow-color: rgba(0, 0, 0, 0.08);
  /* Softer shadow color */
  --shadow-sm: 0 4px 6px var(--shadow-color);
  --shadow-md: 0 10px 15px var(--shadow-color);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;

  /* Image Border Colors */
  --border-stripe-1: #d1e7f0;
  /* Slightly softer blue */
  --border-stripe-2: var(--bg-color);
  /* Use background white */

  /* Accordion Specific */
  --accordion-border: 1px solid var(--border-color);
  --accordion-btn-hover-bg: rgba(0, 0, 0, 0.02);
  /* Very subtle hover */
}


/* Custom Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: var(--body-background);
}

*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--text-gary);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  src: url('/fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.5s ease;
}

a {
  text-decoration: none;
}

/* Navigation Styles */
.site-header {
  padding: 1.5rem 2rem;
  background-color: transparent;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
}

.with-no-hero {
  color: var(--text-inverse);
  background-color: var(--navbar-scroll);

  padding: 1.2rem 2rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}


.with-no-hero .nav-item__link,
.with-no-hero .site-brand,
.with-no-hero .mobile-menu-toggle {
  color: var(--text-inverse);
}

.site-header.scrolled {
  background-color: var(--navbar-scroll);
  box-shadow: 0 5px 20px var(--shadow-color);
  padding: 1.2rem 2rem;
  /* backdrop-filter: blur(12px); */
}

.site-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 1.8rem;
  color: var(--text-inverse);
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.site-header.scrolled .site-brand {
  font-size: 1.5rem;
}

.nav-item__link {
  color: var(--text-inverse);
  margin: 0 0.8rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  font-size: 1.1rem;
}

.nav-item__link:hover {
  color: var(--accent-color);
}

.nav-item__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item__link:hover::after {
  width: 100%;
}

.btn-conatct {
  background-color: var(--primary-color);
  color: var(--text-inverse);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.5s;
}

.btn-conatct:hover {
  background-color: var(--accent-color);
  color: var(--text-inverse);
  text-decoration: none;
}

/* Hero Section Styles */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--text-inverse);
  text-align: center;
  width: 100%;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: .9rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-shop-now {
  background-color: transparent;
  border: 2px solid var(--text-inverse);
  color: var(--text-inverse);
  padding: .5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.7s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-shop-now:hover {
  background-color: var(--text-inverse);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-shop-now::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: 0.5s;
}

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

.btn-shop-now i {
  margin-left: 0.8rem;
  transition: all 0.5s ease;
}

.btn-shop-now:hover i {
  transform: translateX(8px);
}

/* Split Background Styles */
.split-background {
  display: flex;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.background-left,
.background-right {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}

.background-left::before,
.background-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--image-overlay);
  z-index: 1;
  transition: all 1s ease;
}

.background-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: no-repeat center center;
  background-size: cover;
  transform: translateX(0);
}

.background-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  transform: translateX(0);
}

.product-image-container,
.face-image-container {
  position: relative;
  z-index: 2;
  max-width: 80%;
  height: auto;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform-style: preserve-3d;
}

.product-image,
.face-image {
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards, float 6s ease-in-out infinite;
  animation-delay: 0.5s;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
  transform: translateZ(0);
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  z-index: 3;
}

/* Label Styles */
.new-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: .5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.1s;
  text-transform: uppercase;
  display: inline-block;
}

/* Certification Badge Styles */
.certification-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 100px;
  height: 100px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards, pulse 2s ease-in-out infinite;
  animation-delay: 1s;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.certification-badge:hover {
  transform: scale(1.15) rotate(5deg);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  border: none;
  background: transparent;
  color: var(--text-inverse);
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  z-index: 1001;
  transition: all 0.5s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg);
  color: var(--accent-color);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-inverse);
  font-size: 2.5rem;
  animation: bounce 2s infinite, pulse 2s infinite;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-30px) translateX(-50%);
  }

  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .site-header.scrolled {
    padding: 0.7rem 1.5rem;
  }

  .site-brand {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .site-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
  }

  .site-navigation.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-item {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(20px);
  }

  .site-navigation.active .nav-item {
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s + 0.3s);
  }

  .site-utilities {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    padding: 1.2rem;
    z-index: 100;
  }

  .product-image-container,
  .face-image-container {
    max-width: 65%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
  }

  .split-background {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .background-left,
  .background-right {
    flex: none;
    height: 50vh;
  }

  .hero-content {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .btn-shop-now {
    padding: 0.8rem 2rem;
  }

  .certification-badge {
    width: 80px;
    height: 80px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .site-brand {
    font-size: 1.2rem;
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .new-label {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: .5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: .5rem;
  }

  .btn-shop-now {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .site-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .product-image-container,
  .face-image-container {
    max-width: 75%;
  }

  /* .background-left::before,
  .background-right::before {
    background-color: rgba(0, 0, 0, 0.6);
  } */

  .scroll-indicator {
    font-size: 2rem;
    bottom: 2rem;
  }
}

/* Customer Favorites Section */
.customer-favorite {
  background-color: var(--primary-color);
  padding: 40px 0;
}

.Dream_Lip {
  background-color: pink;
}

.customer-favorite .title-favorite {
  font-size: 28px;
  color: var(--text-inverse);
}

.customer-favorite .title-favorite span {
  color: var(--accent-color);
  font-weight: 700;
}

.customer-favorite .subtitle-favorite {
  font-size: 25px;
  color: var(--text-inverse);
  margin-bottom: 60px;
  font-weight: 600;
}

/* Products Grid Layout */
.products-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.products-wrapper .product-item {
  padding: 0 10px;
  margin-bottom: 20px;
  width: 25%;
  position: relative;
}

/* Make the entire product clickable */
.product-item .product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Product Grid Styling */
.product-grid {
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 220px;
  height: 250px;
  transition: transform 0.5s ease;
}

.product-grid:hover .product-image img {
  transform: scale(1.05);
}

.product-discount-label {
  color: var(--text-white);
  background-color: var(--discount-label-bg);
  font-size: var(--discount-font-size);
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 5px;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 3;
}

.product-content {
  padding: 15px 10px;
  z-index: 2;
}

.product-content .title {
  font-size: var(--title-font-size);
  font-weight: 600;
  /* margin-bottom: 8px; */
  /* height: 40px; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-inverse);
}

.product-content .description {
  font-size: var(--desc-font-size);
  color: var(--text-inverse);
  margin-bottom: 12px;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-content .price {
  color: var(--text-inverse);
  font-size: var(--price-font-size);
  font-weight: 600;
  margin-top: 8px;
}

.product-content .price span {
  color: var(--text-gary);
  font-weight: 300;
  text-decoration: line-through;
  margin-left: 5px;
}

.view-all {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.view-all:hover {
  background-color: transparent;
  color: var(--accent-color);
}

/* Scroll indicators for mobile */
.scroll-indicators {
  display: none;
  justify-content: center;
  margin-top: 15px;
}

.scroll-dot:first-child {
  background-color: var(--accent-color);
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
  :root {
    --title-font-size: 14px;
    --desc-font-size: 12px;
    --price-font-size: 14px;
    --product-image-height: 180px;
  }

  .products-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    margin: 0;
  }

  /* Hide scrollbar but maintain functionality */
  .products-wrapper::-webkit-scrollbar {
    display: none;
  }

  .products-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .products-wrapper .product-item {
    width: 100%;
  }

  .product-item {
    min-width: 250px;
    scroll-snap-align: start;
    width: 100%;
    flex: 0 0 auto;
    padding: 0 5px;
  }

  .product-content {
    padding: 12px;
  }

  /* .product-content .title {
    height: 36px;
    margin-bottom: 6px;
  } */

  .product-content .description {
    height: 32px;
    margin-bottom: 8px;
  }

  .scroll-indicators {
    display: flex;
  }
}

/* favorite products section */

/* product line section */
.section-product-line {
  padding: 60px 0;
}

.section-product-line .section-tagline {
  color: var(--text-gary);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.section-product-line .section-headline {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 40px;
}

.section-product-line .trademark {
  font-size: 1rem;
  vertical-align: super;
}

/* Card Styling */
.section-product-line .product-card {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: var(--bg-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-product-line .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 7px;
}

.section-product-line .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.section-product-line .card-content {
  display: flex;
  height: 100%;
  position: relative;
}

.section-product-line .card-text {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  width: 50%;
}

.section-product-line .card-label {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 5px;
  color: var(--text-inverse);
}

.section-product-line .card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-inverse);
  line-height: 1.1;
}

.section-product-line .card-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  color: var(--text-inverse);
  border: none;
  max-width: fit-content;
  text-decoration: none;
}

.section-product-line .card-btn:hover {
  background-color: var(--text-color);
}

.section-product-line .card-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.section-product-line .card-btn:hover i {
  transform: translateX(5px);
}

/* Specific Card Styling */
.section-product-line .find-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-product-line .revita-card {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  background-blend-mode: overlay;
  height: calc(50% - 8px);
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-product-line .kits-card {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  background-blend-mode: overlay;
  height: calc(50% - 8px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .section-product-line .find-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%),
    url('/api/placeholder/800/600') center/contain no-repeat;
  background-blend-mode: overlay;
}

.section-product-line .revita-card {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%),
    url('/api/placeholder/800/600') center/contain no-repeat;
  background-blend-mode: overlay;
  height: calc(50% - 8px);
  margin-bottom: 16px;
}

.section-product-line .kits-card {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%),
    url('/api/placeholder/800/600') center/contain no-repeat;
  background-blend-mode: overlay;
  height: calc(50% - 8px);
} */

.section-product-line .custom-grid {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  min-height: 600px;
}

.section-product-line .left-col {
  flex: 0 0 50%;
  padding-right: 8px;
}

.section-product-line .right-col {
  flex: 0 0 50%;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-product-line .section-headline {
    font-size: 2.4rem;
  }

  .section-product-line .card-title {
    font-size: 1.8rem;
  }

  .section-product-line .card-label {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .section-product-line .custom-grid {
    flex-direction: column;
    min-height: auto;
  }

  .section-product-line .left-col,
  .section-product-line .right-col {
    flex: 0 0 100%;
    padding: 0;
  }

  .section-product-line .left-col {
    margin-bottom: 16px;
    height: 400px;
  }

  .section-product-line .revita-card,
  .section-product-line .kits-card {
    height: 200px;
    margin-bottom: 16px;
  }

  .section-product-line .card-text {
    width: 100%;
    padding: 20px;
  }

  .section-product-line .section-headline {
    font-size: 2rem;
  }

  .section-product-line .card-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .section-product-line .card-label {
    font-size: 1.2rem;
  }

  .section-product-line .product-card {
    background-size: cover;
  }
}

@media (max-width: 575.98px) {
  .section-product-line .find-card {
    height: 350px;
  }

  .section-product-line .revita-card,
  .section-product-line .kits-card {
    height: 200px;
  }

  .section-product-line {
    padding: 40px 0;
  }

  .section-product-line .section-tagline {
    font-size: 1rem;
  }

  .section-product-line .section-headline {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }


}

/* product line section */


/* Community favorites section */
.community-favorites-section {
  padding: 1rem 0;
  background-color: var(--bg-color);
}

.community-favorites-section .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.community-favorites-section .community-title {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--first-color);
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.community-favorites-section .community-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem 0 0;
  animation: scaleX 0.8s ease-out;
}

/* Favorites carousel structure */
.community-favorites-section .favorites-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.community-favorites-section .favorites-products-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 1.5rem;
  padding: 0.5rem 0;
  -ms-overflow-style: none;
}

.community-favorites-section .favorites-products-container::-webkit-scrollbar {
  display: none;
}

/* Navigation arrows */
.community-favorites-section .favorites-nav-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  border: 1px solid var(--btn-hover);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 0.5s forwards;
}

.community-favorites-section .favorites-nav-arrow:hover {
  background-color: var(--text-inverse);
  box-shadow: 0 4px 12px var(--shadow-color);
  transform: translateY(-50%) scale(1.1);
}

.community-favorites-section .favorites-nav-arrow svg {
  fill: var(--first-color);
  width: 20px;
  height: 20px;
}

.community-favorites-section .favorites-nav-arrow-left {
  left: 10px;
}

.community-favorites-section .favorites-nav-arrow-right {
  right: 10px;
}

.community-favorites-section .favorites-carousel:hover .favorites-nav-arrow {
  opacity: 1;
}

/* Individual product cards */
.community-favorites-section .community-product-card {
  flex: 0 0 330px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  background: var(--text-inverse);
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: calc(var(--order) * 0.1s);
}

.community-favorites-section .community-product-card:hover {
  transform: translateY(-5px);
}

.community-favorites-section .community-product-media {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.community-favorites-section .community-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.community-favorites-section .community-product-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.community-favorites-section .community-product-card:hover .community-product-video {
  opacity: 1;
}

.community-favorites-section .community-product-card:hover .community-product-image {
  opacity: 0;
  transform: scale(1.05);
}

.community-favorites-section .community-product-info {
  margin-top: 1rem;
  padding: 0 0.5rem 1rem;
}

.community-favorites-section .community-product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--first-color);
  transition: color 0.3s ease;
}

.community-favorites-section .community-product-card:hover .community-product-title {
  color: var(--accent-color);
}

/* Product actions area */
.community-favorites-section .community-product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.community-favorites-section .community-add-to-bag {
  background: none;
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--first-color);
  transition: all 0.3s ease;
  position: relative;
}

.community-favorites-section .community-add-to-bag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.community-favorites-section .community-add-to-bag:hover {
  color: var(--accent-color);
}

.community-favorites-section .community-add-to-bag:hover::after {
  width: 100%;
}

.community-favorites-section .community-product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--first-color);
}

/* Color variants */
.community-color-options {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.community-color-option {
  position: relative;
}

.color-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 4px;
  position: relative;
}

.community-color-variant {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.color-radio:checked+.color-label .community-color-variant {
  border-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(var(--accent-color), 0.2);
}

.color-radio:focus-visible+.color-label .community-color-variant {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.community-color-variant::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid #eee;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.color-label:hover .community-color-variant::after {
  opacity: 1;
}

.community-new-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--discount-label-bg);
  background-color: rgba(var(--discount-label-bg), 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.color-radio:checked+.color-label .community-new-badge {
  background-color: rgba(var(--discount-label-bg), 0.2);
  transform: translateY(-2px);
}

/* Accessibility button */
.community-favorites-section .community-accessibility {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.community-favorites-section .community-accessibility:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
}

.community-favorites-section .community-accessibility svg {
  fill: var(--text-inverse);
  width: 24px;
  height: 24px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .community-favorites-section .community-product-card {
    flex: 0 0 240px;
  }

  .community-favorites-section .community-product-media {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .community-favorites-section .community-product-card {
    flex: 0 0 220px;
  }

  .community-favorites-section .community-product-media {
    height: 280px;
  }

  .community-favorites-section .community-title {
    font-size: 1.75rem;
  }

  .community-favorites-section .favorites-nav-arrow {
    display: none;
  }
}

@media (max-width: 576px) {
  .community-favorites-section .community-product-card {
    flex: 0 0 250px;
  }

  .community-favorites-section .community-product-media {
    height: 350px;
  }

  .community-favorites-section .community-title {
    font-size: 1.5rem;
  }

  .community-favorites-section {
    padding: .5rem 0;
    background-color: var(--bg-color);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleX {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color), 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(var(--accent-color), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color), 0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Collection Products Section */
.collection-products-section {
  width: 100%;
  margin: 60px 0;
}

.collection-products-section .container {
  max-width: 96%;
  margin: 0 auto;
  padding: 0 1rem;
}

.collection-products-section .collection-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--first-color);
  position: relative;
}

.collection-products-section .collection-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem auto 0;
}

/* Product cards grid */
.collection-products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Individual product card */
.collection-products-section .product-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.collection-products-section .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.collection-products-section .collection-image {
  width: 100%;
  height: 550px;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.collection-products-section .product-card:hover .collection-image {
  transform: scale(1.08);
}

/* Overlay effects */
.collection-products-section .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(var(--primary-color), 0.1) 0%,
      rgba(var(--accent-color), 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.collection-products-section .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  transition: all 0.4s ease;
}

.collection-products-section .product-card:hover .product-overlay {
  padding-bottom: 2.5rem;
}

.collection-products-section .product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-inverse);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.collection-products-section .product-card:hover .product-title {
  transform: translateY(0);
  opacity: 1;
}

.collection-products-section .shop-now-button {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-inverse);
  text-decoration: none;
  padding: 0.5rem 0rem;
  background-color: rgba(var(--accent-color), 0.9);
  border-radius: 4px;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}

.collection-products-section .product-card:hover .shop-now-button {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.collection-products-section .shop-now-button:hover {
  background-color: rgba(var(--accent-color), 1);
  letter-spacing: 3px;
}

.collection-products-section .arrow-icon {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.collection-products-section .shop-now-button:hover .arrow-icon {
  transform: translateX(3px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .collection-products-section {
    margin: 40px 0;
  }

  .collection-products-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .collection-products-section .collection-image {
    height: 350px;
  }

  .collection-products-section .product-title {
    font-size: 1.3rem;
  }

  .collection-products-section .container {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  .collection-products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .collection-products-section {
    margin: 30px 0;
  }

  .collection-products-section .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collection-products-section .collection-image {
    height: 400px;
  }

  .collection-products-section .product-overlay {
    padding: .9rem;
  }
}

/* Section Effortless, Everyday Moisturizers */

.moisturizer-collection-section {
  padding: 1.5rem 1rem;
  background-color: var(--bg-color);

}

.moisturizer-container {
  max-width: 97%;
  margin: 0 auto;
  padding: 0 1rem;
}

.moisturizer-collection-title {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--first-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.moisturizer-collection-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent-color);
  margin: 0.8rem 0 0;
}

/* Items Grid Layout */
.moisturizer-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

/* Item Card Styles */
.moisturizer-item-card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  width: 340px;
  /* 320px image + content */
  margin: 0 auto;
}

.moisturizer-item-card:hover {
  transform: translateY(-8px);
}

.moisturizer-item-media {
  position: relative;
  overflow: hidden;
  width: 340px;
  height: 340px;
}

.moisturizer-item-image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.moisturizer-default-image {
  display: block;
  position: relative;
  z-index: 1;
}

.moisturizer-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.moisturizer-item-card:hover .moisturizer-default-image {
  opacity: 0;
}

.moisturizer-item-card:hover .moisturizer-hover-image {
  opacity: 1;
}

.moisturizer-item-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.moisturizer-item-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--first-color);
}

.moisturizer-item-title sup {
  font-size: 0.6rem;
  vertical-align: super;
}

.moisturizer-item-desc {
  font-size: 0.85rem;
  color: var(--text-gary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.moisturizer-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.moisturizer-add-to-bag {
  background-color: var(--first-color);
  color: var(--text-inverse);
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.moisturizer-add-to-bag:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}

.moisturizer-item-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--first-color);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .moisturizer-items-grid {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .moisturizer-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
  }

  .moisturizer-item-card,
  .moisturizer-item-media {
    width: 300px;
  }

  .moisturizer-item-media {
    height: 300px;
  }

  .moisturizer-item-card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .moisturizer-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .moisturizer-item-card,
  .moisturizer-item-media {
    width: 280px;
  }

  .moisturizer-item-media {
    height: 280px;
  }

  .moisturizer-item-card {
    height: 380px;
  }

  .moisturizer-collection-title {
    font-size: 1.8rem;
  }

  .moisturizer-collection-section {
    padding: 1rem .5rem;
  }
}

@media (max-width: 480px) {
  .moisturizer-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .moisturizer-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .moisturizer-item-card,
  .moisturizer-item-media {
    width: 100%;
    max-width: none;
  }

  .moisturizer-item-media {
    height: auto;
    aspect-ratio: 1/1;
  }

  .moisturizer-item-card {
    height: auto;
  }

  .moisturizer-collection-title {
    font-size: 1.6rem;
  }

  .moisturizer-item-info {
    padding: 0.8rem;
  }

  .moisturizer-item-title {
    font-size: 0.9rem;
    min-height: 1rem;
  }

  .moisturizer-add-to-bag {
    padding: 0.5rem 0.5rem;
    font-size: 0.6rem;
  }

  .moisturizer-item-price {
    font-size: 0.9rem;
  }

  .moisturizer-item-desc {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 360px) {
  .moisturizer-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .moisturizer-item-title {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .moisturizer-item-info {
    padding: 0.6rem;
  }

  .moisturizer-add-to-bag {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* Enhanced Section Styles */
.DreamLipOil-section {
  padding: 2.5rem 0;
  position: relative;
  background-color: var(--secondary-color);
}

.DreamLipOil-showcase {
  max-width: 96%;
  margin: 0 auto;
  padding: 0 0rem;
}

.DreamLipOil-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
}

.DreamLipOil-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width var(--transition);
}

.DreamLipOil-title:hover::after {
  width: 60px;
}

.DreamLipOil-scroll {
  overflow-x: auto;
  padding: 2rem 0px;
  scrollbar-width: none !important;
  scroll-behavior: smooth;
  margin-bottom: 1rem;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.DreamLipOil-scroll::-webkit-scrollbar {
  height: 0px;
}

.DreamLipOil-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.DreamLipOil-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: background var(--transition);
}

.DreamLipOil-scroll:hover::-webkit-scrollbar-thumb {
  background: var(--white);
}

.DreamLipOil-scroll::before,
.DreamLipOil-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--transition);
}



.DreamLipOil-scroll .DreamLipOil-row {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  min-width: max-content;
}

.DreamLipOil-row .DreamLipOil-card {
  flex: 0 0 auto;
  width: 250px;
  transition: var(--transition);
  cursor: pointer;
  will-change: transform;
}

.DreamLipOil-row .DreamLipOil-card.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.2);
  }

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

.DreamLipOil-card .DreamLipOil-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.DreamLipOil-card:hover .DreamLipOil-image {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

.DreamLipOil-details {
  text-align: center;
  padding: 1rem;
  color: var(--white);
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.DreamLipOil-details:hover {
  box-shadow: var(--shadow-md);
}

.DreamLipOil-details .DreamLipOil-name {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.DreamLipOil-details .DreamLipOil-variant {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--lighter-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.DreamLipOil-details:hover .DreamLipOil-variant {
  color: var(--white);
}

.DreamLipOil-details .DreamLipOil-description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  margin-bottom: .5rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
}

.DreamLipOil-details .DreamLipOil-price {
  font-weight: 500;
  color: var(--white);
  margin-bottom: .5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: background var(--transition);
}

.DreamLipOil-details:hover .DreamLipOil-price {
  background: rgba(255, 255, 255, 0.3);
}

.DreamLipOil-details .DreamLipOil-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.DreamLipOil-buttons .DreamLipOil-btn-add {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  letter-spacing: 1.5px;
  transition: var(--transition);
  width: 100%;
  max-width: 200px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 10px 0;
}

.DreamLipOil-buttons .DreamLipOil-btn-add:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.DreamLipOil-buttons .DreamLipOil-btn-add:active {
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.9);
}

.DreamLipOil-btn-add::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

.DreamLipOil-btn-add:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.DreamLipOil-buttons .DreamLipOil-learn-more {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.DreamLipOil-buttons .DreamLipOil-learn-more:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
  color: var(--white);
}

.DreamLipOil-learn-more svg {
  transition: var(--transition);
}

.DreamLipOil-learn-more:hover svg {
  transform: translateX(3px);
}

.DreamLipOil-details.DreamLipOil-fade {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 992px) {
  .DreamLipOil-row .DreamLipOil-card {
    width: 180px;
  }

  .DreamLipOil-card .DreamLipOil-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .DreamLipOil-section {
    padding: 2rem 0;
  }

  .DreamLipOil-title {
    font-size: 1.2rem;
  }

  .DreamLipOil-scroll {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
  }

  .DreamLipOil-scroll .DreamLipOil-row {
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .DreamLipOil-row .DreamLipOil-card {
    width: 160px;
    padding: 0.1rem;
  }

  .DreamLipOil-card .DreamLipOil-image {
    height: 220px;
  }

  .DreamLipOil-details {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .DreamLipOil-section {
    padding: 2rem 0;
  }

  .DreamLipOil-showcase {
    padding: 0 0.5rem;
  }

  .DreamLipOil-scroll .DreamLipOil-row {
    gap: .5rem;
    padding: 0;
    scrollbar-width: none !important;
  }

  .DreamLipOil-details .DreamLipOil-variant {
    margin-bottom: .5rem;
  }

  .DreamLipOil-details {
    padding: 1rem .6rem;
  }
}

/* --- End DreamLipOil --- */


/* section ingredients  */

.section-ingredients {
  margin: 70px 0;
}

.card-ingredients {
  background-size: cover;
  background-position: center;
  color: var(--text-inverse);
  height: 550px;
  padding: 30px;
  position: relative;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  animation: card-ingredients 6s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-ingredients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 7px;
}

.container-ingredients {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.container-ingredients h1 {
  text-align: left;
  font-size: 30px;
  margin: 20px 0;
}

.text-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  text-align: left;
}

/* Research Card Styles */
.card-research {
  height: 275px;
  background-color: var(--primary-color);
  color: var(--text-inverse);
  border-radius: 6px;
  transition: all 0.3s;
}

@keyframes card-research {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Science Card Styles */
.card-science {
  height: 250px;
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
  color: var(--text-color);
  border-radius: 6px;
  animation: card-science 8s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-science-shadow {
  height: 275px;
  background-color: var(--bg-white);
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border-radius: 6px;
  transition: all 0.3s;
}

@keyframes card-science {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Shared Content Styles */
.card-research .content,
.card-science .content,
.card-science-shadow .content {
  padding: 40px;
}

.card-research .content small,
.card-science .content small,
.card-science-shadow .content small {
  padding-bottom: 10px;
}

.card-research .content h4,
.card-science .content h4,
.card-science-shadow .content h4 {
  font-size: 30px;
  padding: 10px 0;
}

.card-research .content p,
.card-science .content p,
.card-science-shadow .content p {
  width: 70%;
}

.card-research .content .data,
.card-science .content .data,
.card-science-shadow .content .data {
  display: flex;
  justify-content: flex-end;
}

/* Responsive Styles */
@media (max-width: 1024px) {

  .card-research,
  .card-science,
  .card-science-shadow {
    height: auto;
  }

  .card-research .content,
  .card-science .content,
  .card-science-shadow .content {
    padding: 10px 20px;
  }

  .card-research .content p,
  .card-science .content p,
  .card-science-shadow .content p {
    width: 90%;
  }

  .card-research .content h4,
  .card-science .content h4,
  .card-ingredients h4,
  .card-science-shadow .content h4 {
    font-size: 25px;
  }

  .card-ingredients {
    height: 400px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section-ingredients {
    margin: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-ingredients {
    margin: 30px 0;
  }
}
/* section ingredients  */


/* According */
/* --- Main Container --- */
.content-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.content-section .container {
  max-width: 96%;
  margin: 0 auto;
}

/* --- Left Column: Image Container --- */
.image-container-wrapper {
  padding: 15px;
  border: 10px solid transparent;
  border-image: repeating-linear-gradient(-45deg,
      var(--border-stripe-1),
      var(--border-stripe-1) 10px,
      var(--border-stripe-2) 10px,
      var(--border-stripe-2) 20px) 20;
  background-clip: padding-box;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
  /* Add rounding to the wrapper */
  background-color: var(--bg-color);
  /* Ensure wrapper bg is white */
}

.image-container-wrapper:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* --- Left Column: Image --- */
.showcase-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
  /* Adjusted max height slightly */
  border-radius: var(--border-radius-sm);
}

/* --- Right Column: Headings --- */
.main-heading {
  font-weight: 600;
  font-size: 1.5rem;
  /* Slightly larger */
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.main-subheading {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.sub-heading {
  font-weight: 400;
  font-size: 1.1rem;
  /* Slightly larger */
  color: var(--text-light);
  margin-bottom: 3rem;
  /* Increased spacing */
}

/* --- Right Column: Accordion Customization --- */
.custom-accordion {
  border: var(--accordion-border);
  /* Add border around the whole accordion */
  border-radius: var(--border-radius-md);
  /* Round the accordion */
  overflow: hidden;
  /* Clip children to rounded corners */
  background-color: var(--bg-color);
  /* White background for accordion */
  box-shadow: var(--shadow-sm);
  /* Add shadow to accordion */
}

.custom-accordion .accordion-item {
  border: none;
  /* Remove individual item borders */
  background-color: transparent;
  margin-bottom: 0;
  /* Remove margin between items */
}

/* Add border between items */
.custom-accordion .accordion-item:not(:last-child) {
  border-bottom: var(--accordion-border);
}


.custom-accordion .accordion-button {
  background-color: transparent;
  border-bottom: none;
  /* Remove default bottom border */
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  /* Slightly larger */
  padding: 1.25rem 1.5rem;
  /* Increased padding */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease-in-out;
  width: 100%;
  /* Ensure full width */
  text-align: left;
  /* Ensure text aligns left */
}

.custom-accordion .accordion-button:hover {
  background-color: var(--accordion-btn-hover-bg);
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--text-color);
  background-color: transparent;
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  display: none;
}

/* --- Accordion Body & Smooth Transition --- */
.custom-accordion .accordion-collapse {
  /* Adjust Bootstrap's transition for smoothness */
  transition: height 0.35s ease;
  /* Slightly slower transition */
}

.custom-accordion .accordion-body {
  padding: 1.5rem 1.5rem 1.75rem 1.5rem;
  /* Increased padding */
  font-size: 0.95rem;
  /* Slightly larger */
  color: var(--text-light);
  line-height: 1.7;
  /* Increased line height */
  border-bottom: none;
  /* Remove bottom border here */
  /* Add opacity transition for content fade */
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0.1s;
  /* Fade in slightly after expand starts */
}

.custom-accordion .accordion-collapse.show .accordion-body {
  opacity: 1;
  /* Make visible when shown */
}

.custom-accordion .accordion-item:last-child .accordion-body {
  border-bottom: none;
}

/* --- Right Column: Accordion Badges/Tags --- */
.accordion-badge {
  background-color: var(--badge-bg);
  color: var(--badge-text);
  padding: 0.3rem 0.7rem;
  /* Increased padding */
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  /* Bolder badge text */
  margin-left: 1rem;
  white-space: nowrap;
  vertical-align: middle;
}

/* --- Right Column: Accordion Badges/Tags :: Icon --- */
.accordion-badge i.fas {
  /* Target Font Awesome icons within badge */
  font-size: 0.8rem;
  margin-left: 4px;
  vertical-align: text-bottom;
  /* Adjust icon alignment */
}

/* --- Right Column: Accordion Custom Icons (+/-) --- */
.accordion-icon {
  font-size: 1.1rem;
  /* Slightly smaller FA icon */
  transition: transform 0.2s ease-in-out;
  color: var(--primary-color);
  /* Use primary color for icons */
  width: 1.2em;
  /* Ensure consistent width for alignment */
  text-align: center;
}

/* --- Right Column: Accordion Custom Icons :: Hide/Show --- */
.custom-accordion .accordion-button:not(.collapsed) .accordion-icon.fa-plus {
  display: none;
  /* Hide plus when expanded */
}

.custom-accordion .accordion-button.collapsed .accordion-icon.fa-minus {
  display: none;
  /* Hide minus when collapsed */
}

/* --- Right Column: Learn More Link --- */
.learn-more-link {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease-in-out;
}

.learn-more-link:hover {
  color: var(--link-hover-color);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
  .content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .image-container-wrapper {
    margin-bottom: 2.5rem;
    /* Increased space */
    border-width: 5px;
    padding: 10px;
  }

  .main-heading {
    font-size: 1.6rem;
    /* Adjusted size */
  }

  .sub-heading {
    font-size: 1rem;
    /* Adjusted size */
    margin-bottom: 2rem;
  }

  .content-section .container {
    max-width: 100%;
    margin: 0 auto;
  }

  .custom-accordion .accordion-button {
    font-size: 0.7rem;
    font-weight: bold;
    padding: 1rem .3rem;
    /* Adjusted padding */
  }

  .custom-accordion .accordion-body {
    padding: 1.25rem 1rem 1.5rem 1rem;
    /* Adjusted padding */
    font-size: 0.9rem;
  }

  .accordion-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    /* Adjusted padding */
  }
}

/* End of Accordion Styles */

/* section features */

.section-features {
  padding: 30px 0;
}

.section-features .container {
  max-width: 1450px;
  margin: 0 auto;
}

.section-features .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-features .section-title hr {
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto;
  border: none;
  border-radius: 2px;
}

.section-features .feature-card {
  padding: 30px 10px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.section-features .feature-card:hover {
  transform: translateY(-10px);
}

.section-features .icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  background-color: rgba(108, 99, 255, 0.1);
}

.section-features .icon-container i {
  font-size: 32px;
  color: var(--primary-color);
}

.section-features .feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.section-features .feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 991px) {

  .section-features .feature-card {
    margin-bottom: 10px;
    padding: 20px 10px;
  }
}

/* Custom color schemes for each feature */
.section-features .feature-clinical .icon-container {
  background-color: rgba(100, 180, 255, 0.1);
}

.section-features .feature-clinical .icon-container i {
  color: #64b4ff;
}

.section-features .feature-tech .icon-container {
  background-color: rgba(107, 203, 119, 0.1);
}

.section-features .feature-tech .icon-container i {
  color: #6bcb77;
}

.section-features .feature-derm .icon-container {
  background-color: rgba(255, 145, 77, 0.1);
}

.section-features .feature-derm .icon-container i {
  color: #ff914d;
}

.section-features .feature-rated .icon-container {
  background-color: rgba(255, 199, 0, 0.1);
}

.section-features .feature-rated .icon-container i {
  color: #ffc700;
}

/* end section features */


/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 100%);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-social-gallery {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), var(--primary-color));
  padding: 1.5rem 0;
  position: relative;
}

.social-gallery-header {
  margin-bottom: .5rem;
  position: relative;
}

.social-gallery-title {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-inverse);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.social-gallery-title a {
  color: var(--text-inverse) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.instagram-handle {
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.instagram-handle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.social-gallery-title:hover .instagram-handle {
  color: var(--text-inverse);
}

.social-gallery-title:hover .instagram-handle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 1400px;
}

.social-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.social-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95);
}

.social-gallery-item:hover .social-post-image {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .social-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 992px) {
  .social-gallery-title {
    font-size: 1.3rem;
    gap: 0.5rem;
  }

  .footer-social-gallery {
    padding: 2.5rem 0;
  }
}

@media (max-width: 768px) {
  .social-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.4rem;
  }

  .social-gallery-title {
    font-size: 1.2rem;
  }

  .footer-social-gallery {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .social-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .social-gallery-title {
    font-size: 1.1rem;
  }

  .social-gallery-header {
    margin-bottom: 1.5rem;
  }

  .footer-social-gallery {
    padding: 1.5rem 0;
  }
}

.footer-top {
  padding: 2rem 0 1rem;
  position: relative;
  background: var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-inverse);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-col:hover .footer-title::after {
  width: 60px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.9;
  max-width: 90%;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: var(--text-inverse);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-inverse);
  position: relative;
  display: inline-block;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-col:hover .footer-subtitle::after {
  width: 45px;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.9;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
  padding-left: 20px;
}

.footer-links a:hover::before {
  width: 15px;
}

.newsletter-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  z-index: -1;
}

.newsletter-input-group input {
  flex: 1;
  ;
  border-radius: 15px;
  padding: .7rem 1.5rem;
  color: #2d3748;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  border: none;
}

.newsletter-input-group input::placeholder {
  color: #718096;
  font-style: italic;
}
.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.newsletter-input-group input:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.newsletter-input-row {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.newsletter-input-group button {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border: none;
  color: var(--text-inverse);
  padding: .7rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.newsletter-input-group button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.newsletter-input-group button:hover::before {
  width: 300px;
  height: 300px;
}

.newsletter-input-group button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.newsletter-input-group button:active {
  transform: translateY(-1px);
}

.newsletter-input-group button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.newsletter-input-group button:hover i {
  transform: translateX(3px);
}

.footer-payment {
  margin-top: 2rem;
}

.payment-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.payment-methods {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.payment-methods i {
  font-size: 2rem;
  color: var(--text-inverse);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--accent-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.05);
  padding: 1.5rem 0;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-legal a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-top {
    padding: 2rem 0 1rem;
  }

}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

  .newsletter-input-group {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.2rem;
  }

  .newsletter-input-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .newsletter-input-group input {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .newsletter-input-group button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    min-width: 100px;
  }

  .payment-methods {
    justify-content: center;
  }

  .footer-title::after,
  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {



  .footer-top {
    padding: .5rem 0 .5rem;
  }

  .footer-title {
    font-size: 1.75rem;
  }

  .footer-subtitle {
    font-size: 1.1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 0.5rem;
    background: transparent;
  }

  .newsletter-input-group input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-align: center;
  }

  .newsletter-input-group button {
    width: 100%;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .social-gallery-header {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }


  .instagram-handle {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .instagram-handle a {
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(var(--primary-color-rgb), 0.1);
    transition: all 0.3s ease;
  }

  .instagram-handle a:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
    transform: translateY(-2px);
  }


  .social-gallery-item {
    border-radius: 8px;
  }

  .social-post-image {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .social-gallery-header {
    margin-bottom: 1rem;
  }

  .instagram-handle a {
    font-size: 1.1rem;
    padding: 0.2rem 0rem;
  }

}

/* testimonial */
/* start section testimonial */
.container-fluid-test {
  width:98%;
  margin: 30px auto;

}
.testimonial {
    padding: 20px 0;
    background: linear-gradient(
        135deg,
        var(--bg-dark) 0%,
        #1a1a2e 100%
    );
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.testimonial-header {
    text-align: center;
    margin-bottom:20px;
    position: relative;
    z-index: 2;
}

.testimonial-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.testimonial .tesSwiper {
    position: relative;
    padding: 0 10px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 650px;
}

.testimonial-image-container {
    flex: 0 0 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    background-color: var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-white);
    margin: 0 0 25px 0;
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.testimonial-author h4 {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.rating-stars i:hover {
    transform: scale(1.2);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 700;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.11) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    transform: scale(1.2) !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .testimonial .tesSwiper {
        padding: 0 30px;
    }

    .testimonial-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .testimonial {
        padding: 60px 0;
    }

    .testimonial .tesSwiper {
        padding: 0 ;
    }

    .testimonial-header h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .testimonial-card {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }

    .testimonial-image-container {
        flex: 0 0 250px;
        width: 100%;
    }

    .testimonial-content {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-author h4 {
        font-size: 1.2rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-header h2 {
        font-size: 1.5rem;
        padding: 0 5px;
        margin-bottom: 0px;
    }

    .testimonial-card {
        margin: 0 10px;
        min-height: 450px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.5;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* end section testimonial */


/* product details page */

/* Container */


/* Product Section */
.product-details-section {
  padding: 60px 0;
  background-color: #fff;
}

.product-details-section .container {
  max-width: 96%;
}

/* Assume a .container class exists for width and centering */

/* Product Section */
.product-details-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

/* Product Grid Layout (within .container) */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Gallery | Info */
  gap: 60px;
  align-items: center;
}

/* Product Gallery */
.product-gallery {
  animation: fadeInUp 0.6s ease-out forwards;
}

.main-image {
  width: 100%;
  height: 550px;
  margin-bottom: 10px;
  border-radius: 7px;
  object-fit: contain;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}


.main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease-in-out;
  /* Added opacity transition */
}


.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 10px;
}

.thumbnail {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.thumbnail:hover {

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover img {
  transform: scale(1.1);
  /* Keep image zoom on hover */
}

.thumbnail.active {
  border: 3px solid #007bff;
  /* Use a theme color or brand color */
  transform: translateY(-2px) scale(1.02);
  /* Subtle active lift */
  box-shadow: 0 5px 10px rgba(0, 123, 255, 0.2);
  /* Shadow matching border */
}

/* Product Info - NOW STICKY */
.product-info {
  position: sticky;
  top: 50px;
  /* Adjust based on your header height */
  /* Ensure it doesn't stretch unnecessarily */
}

.product-header {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
  /* Added slight delay */
  opacity: 0;
  /* Start hidden for animation */
}

.product-title {
  font-size: 36px;
  /* Slightly larger */
  margin-bottom: 15px;
  font-weight: 600;
  /* Bolder */
  color: #222;
  /* Darker color */
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  /* Increased spacing */
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.stars {
  color: #ffc107;
  /* Slightly different gold */
  letter-spacing: 2px;
  font-size: 1.3rem;
  /* Slightly larger stars */
  transition: transform 0.2s ease;
}

.stars:hover {
  transform: scale(1.1);
  /* Add hover effect to stars */
}

.review-count {
  color: #555;
  /* Slightly darker grey */
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-size: 0.95rem;
  cursor: pointer;
}

.review-count:hover {
  color: #007bff;
  /* Link color on hover */
  text-decoration: underline;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  /* Increased spacing */
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
  opacity: 0;
}

.tag {
  padding: 8px 16px;
  /* More padding */
  background-color: #f1f3f5;
  /* Lighter grey */
  border-radius: 25px;
  /* Fully rounded */
  font-size: 14px;
  font-weight: 500;
  /* Slightly bolder tag text */
  color: #495057;
  /* Darker grey text */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #dee2e6;
  /* Subtle border */
}

.tag:hover {
  background-color: #e9ecef;
  /* Slightly darker hover */
  transform: translateY(-3px);
  /* Lift effect */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  border-color: #ced4da;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  /* Increased line-height for readability */
  color: #343a40;
  /* Darker text */
  margin-bottom: 25px;
  animation: fadeInUp 1.4s ease-out 0.4s forwards;
  opacity: 0;
}

.product-note {
  font-size: 14px;
  color: #495057;
  font-style: normal;
  /* Personal preference: removing italic */
  margin-bottom: 30px;
  background-color: #e9ecef;
  /* Matching tag hover */
  padding: 15px 20px;
  /* More padding */
  border-radius: 8px;
  /* Softer radius */
  border-left: 4px solid #adb5bd;
  /* Subtler border color */
  animation: fadeInUp 1.6s ease-out 0.5s forwards;
  opacity: 0;
  line-height: 1.5;
}

/* Product Actions */
.product-actions {
  margin-top: 30px;
  animation: fadeInUp 1.8s ease-out 0.6s forwards;
  /* Last item to animate */
  opacity: 0;
}

.add-to-bag {
  display: flex;
  /* Use flex for icon alignment */
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  /* Gradient background */
  color: #fff;
  border: none;
  border-radius: 8px;
  /* Softer radius */
  font-weight: 600;
  /* Bolder button text */
  font-size: 1.05rem;
  /* Slightly larger text */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* More spacing */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  /* Enhanced shadow */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Add a subtle shine effect on hover */
.add-to-bag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

.add-to-bag:hover {
  background: linear-gradient(135deg, #1ebe5f, #0d705d);
  /* Darker gradient */
  transform: translateY(-4px) scale(1.02);
  /* Lift and slight scale */
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.add-to-bag:hover::before {
  left: 100%;
}

.add-to-bag:active {
  transform: translateY(1px) scale(0.98);
  /* Press down effect */
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  margin-right: 10px;
  /* More space for icon */
  vertical-align: middle;
  font-size: 1.2em;
  /* Slightly larger icon if using font icon */
}

.payment-info {
  margin-top: 25px;
  /* Increased spacing */
  font-size: 14px;
  color: #6c757d;
  /* Standard grey */
  text-align: center;
  display: flex;
  /* Better alignment for logos */
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.payment-logo {
  height: 24px;
  /* Slightly larger logos */
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-logo:hover {
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
    /* Slightly more distance */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* (Pulse animation remains defined but unused unless specifically applied) */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}


/* Responsive Styles */
@media (max-width: 992px) {
  .main-image {
    height: 400px;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
    /* Stack columns */
    gap: 40px;
  }

  .product-info {
    position: static;
    /* Remove stickiness when stacked */
    top: auto;
  }

  .product-gallery {
    max-width: 600px;
    /* Limit gallery width when stacked */
    margin: 0 auto;
    /* Center gallery */
    animation: none;
    /* Disable animation if stacking happens initially */
  }

  /* Re-apply animations for elements inside info when stacked */
  .product-info>* {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Add staggered delays if needed */
  }

  .product-info>*:nth-child(1) {
    animation-delay: 0.1s;
  }

  .product-info>*:nth-child(2) {
    animation-delay: 0.2s;
  }

  .product-info>*:nth-child(3) {
    animation-delay: 0.3s;
  }

  /* etc. - Adjust selectors based on your actual product-info structure */
}

@media (max-width: 768px) {
  .main-image {
    height: 320px;
  }

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

  .product-details-grid {
    gap: 30px;
    /* Reduce gap further */
  }

  .product-title {
    font-size: 30px;
    /* Adjust font size */
  }

  .product-actions {
    margin-top: 25px;
  }

  .add-to-bag {
    padding: 16px;
    font-size: 1rem;
  }

  .thumbnail-gallery {
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .product-details-section {
    padding: 30px 0;
  }

  .product-title {
    font-size: 26px;
    /* Smaller title */
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
    /* Keep 4 thumbs */
    gap: 8px;
  }

  .tag {
    padding: 6px 12px;
    /* Adjust tag padding */
    font-size: 13px;
  }

  .add-to-bag {
    padding: 15px;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .whatsapp-icon {
    margin-right: 8px;
  }

  .payment-info {
    font-size: 13px;
    gap: 6px;
  }

  .payment-logo {
    height: 20px;
  }
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-concentrations {
  margin: 2rem 0;
}

.concentration-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.concentration-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.concentration-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.concentration-option.active {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.concentration-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.concentration-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.product-colors {
  margin: 2rem 0;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.color-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-option.active {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.color-option.active .color-swatch {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .concentration-options {
    grid-template-columns: 1fr;
  }

  .color-options {
    justify-content: center;
  }

  .color-option {
    padding: 0.5rem;
  }

  .color-swatch {
    width: 30px;
    height: 30px;
  }
}

.product-options {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.option-group {
  position: relative;
}

.option-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

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

.custom-select {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.custom-select:focus+.select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Color preview for color select */
.custom-select option {
  padding: 0.5rem;
  position: relative;
}

.custom-select option::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.custom-select option[data-color="#F5E6D3"]::before {
  background-color: #F5E6D3;
}

.custom-select option[data-color="#FFE4E1"]::before {
  background-color: #FFE4E1;
}

.custom-select option[data-color="#FFD700"]::before {
  background-color: #FFD700;
}

.custom-select option[data-color="#F0F0F0"]::before {
  background-color: #F0F0F0;
}

/* Concentration strength indicator */
.concentration-strength {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

.concentration-strength.light {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.concentration-strength.standard {
  background-color: #E3F2FD;
  color: #1565C0;
}

.concentration-strength.strong {
  background-color: #FFF3E0;
  color: #E65100;
}

.concentration-strength.extra-strong {
  background-color: #FFEBEE;
  color: #C62828;
}

@media (max-width: 768px) {
  .product-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .custom-select {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* results section */
.results-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  max-width: 96%;
  margin: 0 auto !important;
  padding: 40px 20px;
  margin: 40px 10px;
  background: #edeeefd4;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.2s;
}

.results-content {
  flex: 1;
  padding: 30px;
  animation: slideInLeft 0.6s ease-out;
  margin-left: 50px;
}

.results-image {
  flex: 1;
  text-align: right;
  padding: 20px;
  animation: slideInRight 0.6s ease-out;
}

.results-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}


.results-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.results-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.results-title:hover:after {
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: var(--transition);
  transform: translateX(-10px);
  opacity: 0;
  animation: fadeInRight 0.5s forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.6s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.8s;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  background: rgba(74, 107, 255, 0.1);
  transition: var(--transition);
}


.stat-percentage {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  text-align: justify;
}

.footnote {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 0.5s forwards 1s;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .results-container {
    flex-direction: column-reverse;
    padding: 20px 10px;
    animation: fadeIn 0.8s forwards;
  }

  .results-content {
    padding: 10px;
    max-width: 100%;
    animation: fadeIn 0.8s forwards;
    margin-left: 0;
  }

  .results-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .results-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .results-title:hover:after {
    width: 60px;
  }

  .results-image {
    padding: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 0.8s forwards;
  }

  .results-image img {
    max-width: 100%;
    transform: none;
  }

  .results-image img:hover {
    transform: none;
  }

  .stat-item {
    animation: fadeIn 0.8s forwards;
  }

  .stat-item:nth-child(1) {
    animation-delay: 0.2s;
  }

  .stat-item:nth-child(2) {
    animation-delay: 0.3s;
  }

  .stat-item:nth-child(3) {
    animation-delay: 0.4s;
  }
}

@media (max-width: 576px) {
  .stat-circle {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .stat-percentage {
    font-size: 13px;
  }

  .stat-text {
    font-size: 13px;
    text-align: left;
  }

  .results-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/* details-about-product section */
.details-about-product {
  display: flex;
  justify-content: space-between;
  max-width: 96%;
  margin: 50px auto;
  gap: 15px;
}

/* Child elements - square containers */
.details-about-product .child {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  height: 600px;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease;
}

/* Hover effect for all child elements */
.details-about-product .child:hover {
  transform: translateY(-5px);
}

/* First child - Text */
.details-about-product .child.text {
  background-color: var(--banner-bg, #f5f7fa);
  color: var(--text-inverse, #333);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.details-about-product .child.text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-inverse, #222);
  text-align: center;
  font-weight: 700;
}

.details-about-product .child.text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-inverse, #444);
  text-align: center;
}


.details-about-product .child.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Third child - Downloadable Files */
.details-about-product .child.download {
  background-image: url("../image/bg-download.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  overflow-y: auto;
  /* Allow scrolling if many files */
}

.details-about-product .child.download h3 {
  font-size: 26px;
  color: var(--text-inverse);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

/* File card styling */
.details-about-product .child.download .file-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 15px 20px;
  margin: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-about-product .child.download .file-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.details-about-product .child.download .file-card .file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-about-product .child.download .file-card .file-info i {
  font-size: 24px;
  color: var(--primary-color);
}

.details-about-product .child.download .file-card .file-info span {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

.details-about-product .child.download .file-card .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--primary-color);
  /* Green for download action */
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.details-about-product .child.download .file-card .download-btn:hover {
  background-color: var(--text-color);
  transform: translateY(-2px);
}

.details-about-product .child.download .file-card .download-btn i {
  font-size: 16px;
  margin-right: 8px;
}

/* Animation for text and download child */
.details-about-product .child.text,
.details-about-product .child.download {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .details-about-product .child {
    height: 400px;
  }
}

@media (max-width: 992px) {


  .details-about-product .child.text,
  .details-about-product .child.download {
    padding: 20px 10px;
  }

  .details-about-product .child.text h2,
  .details-about-product .child.download h3 {
    font-size: 20px;
  }

  .details-about-product .child.text p,
  .details-about-product .child.download .file-card .file-info span {
    font-size: 14px;
  }

  .details-about-product .child.download .file-card .download-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .details-about-product {
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
  }

  .details-about-product .child {
    height: 400px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .details-about-product .child.download .file-card {
    width: 96%;
  }
}

@media (max-width: 576px) {
  .details-about-product .child {
    height: 350px;
  }
}

@media (max-width: 400px) {


  .details-about-product {
    margin: 30px auto;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* timeline routine   */
.routine-section {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.timeline-routine {
  text-align: left;
  width: 100%;
  max-width: 96%;
  margin: 0 auto;
}

.timeline-routine h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
  color: var(--first-color);
}

.timeline-container-routine {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin: 0 auto;
}

.timeline-container-routine::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-gary);
  z-index: 1;
}

.timeline-step-content {
  margin-bottom: 15px;
}

.timeline-step-routine {
  position: relative;
  flex: 1;
  text-align: left;
  z-index: 2;
}

.circle-routine {
  width: 10px;
  height: 10px;
  background-color: var(--text-gary);
  border-radius: 50%;
  margin: 0;
  transition: var(--transition);
}

.timeline-step-routine.active .circle-routine {
  background-color: var(--banner-color);
}

.timeline-step-routine a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.timeline-step-routine p {
  padding-top: 10px;
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.timeline-step-routine p strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--first-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-container-routine {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container-routine::before {
    width: 2px;
    height: 100%;
    top: 0;
    transform: translateX(-50%);
  }

  .timeline-step-routine {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    display: flex;
    align-items: baseline;
    text-align: left;
    gap: 10px;
  }

  .circle-routine {
    margin: 0 20px 0 0;
  }

  .timeline-step-routine p {
    flex: 1;
  }

  .timeline-routine h2 {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .timeline-routine h2 {
    font-size: 18px;
  }

  .timeline-step-routine p strong {
    font-size: 14px;
  }

  .timeline-step-routine p {
    font-size: 12px;
    padding: 10px 0;
  }

  .circle-routine {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 390px) {
  .timeline-step-routine {
    max-width: 260px;
  }
}


/* section how-it-works */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 5px;
  margin: 50px auto;
  background-color: var(--bg-color);
  color: var(--text-color);
  animation: fadeInUp 0.8s ease-in-out;
}

.how-it-works .text-section {
  flex: 1 1 50%;
  padding: 20px;
}

.how-it-works .text-section .section-title {
  color: var(--primary-color);
  font-size: 25px;
  margin-bottom: 10px;
}

.how-it-works .text-section .subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.how-it-works .text-section .steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-it-works .text-section .steps .step {
  border-bottom: 1px solid var(--text-gary);
  padding: 10px 0;
  cursor: pointer;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, background-color 0.3s ease;
  border-radius: var(--border-radius-sm);
}

.how-it-works .text-section .steps .step:nth-last-child(1) {
  border-bottom: none;
}


.steps .step .step-number {
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

.steps .step .step-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.steps .step .step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  margin-top: 10px;
  color: var(--text-light);
}

.steps .step.active .step-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.steps .step.active .step-content p {
  margin: .5rem 0;
}

.steps .step.active .step-content .view-details {
  font-size: 14px;
  color: var(--text-inverse);
  cursor: pointer;
  transition: 0.3s ease;
  background-color: var(--primary-color);
}

.steps .step.active .step-content .view-details:hover {
  color: var(--text-inverse);
  background-color: var(--text-color);
}


.how-it-works .image-section {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  border-radius: var(--border-radius-md);
  animation: fadeInRight 1s ease-in-out;
}

.how-it-works .image-section .image-card {
  width: 80%;
  height: 550px;
  display: none;
  padding: 0;
  border-radius: 10px;
}

.how-it-works .image-section .image-card.active {
  display: block;
  width: 90%;
  object-fit: cover;
  padding: 0;
  border-radius: 10px;
}

/* Responsive Layout */
@media screen and (max-width: 1200px) {
  .how-it-works {
    padding: 5px;
    margin: 30px auto;
  }

  .how-it-works .image-section {
    border-radius: var(--border-radius-sm);
  }
}

@media screen and (max-width: 768px) {
  .how-it-works {
    flex-direction: column-reverse;
    margin: 5px auto;
  }

  .steps .step .step-title {
    font-size: 20px;
  }

  .how-it-works .text-section,
  .how-it-works .image-section {
    flex: 1 1 100%;
  }

  .how-it-works .image-section .image-card,
  .how-it-works .image-section .image-card.active {
    width: 90%;
    height: auto;
    padding: 0;
    border-radius: 10px;
  }
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- FAQ Section --- */
.faq-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  position: sticky;
  top: 100px;
  /* Sticks 100px from top, below testimonial */
  width: 100%;
  height: fit-content;
  z-index: 5;
}

.faq-section .col-md-6 {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.faq-container {
  /* background-color: var(--white); */
  border-radius: var(--border-radius-md);
  /* box-shadow: var(--shadow-md); */
  padding: clamp(1rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1.5rem);
  border: var(--accordion-border);
  width: 100%;
}

.main-heading {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  letter-spacing: 1.2px;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid var(--border-stripe-1);
  padding: 15px 0;
  transition: all var(--transition);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition), color var(--transition), box-shadow 0.6s ease;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  text-align: left;
}

.faq-question[aria-expanded="true"] {
  color: var(--primary-color);
}

.faq-answer {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 10px;
  padding: 0 1rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, max-height 0.6s ease, transform 0.6s ease, padding 0.6s ease;
}

.faq-answer.show {
  opacity: 1;
  max-height: 12rem;
  transform: translateY(0);
  padding: 0.5rem 1rem;
}

.faq-answer p {
  margin: 0;
}

.faq-item .toggle-icon {
  width: clamp(20px, 3vw, 28px);
  height: clamp(20px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: bold;
  color: var(--text-color);
  transition: transform 0.6s ease, color 0.6s ease, opacity 0.6s ease;
  position: relative;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-item .toggle-icon::before,
.faq-item .toggle-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.faq-item .toggle-icon::before {
  width: clamp(10px, 2vw, 14px);
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item .toggle-icon::after {
  width: 2px;
  height: clamp(10px, 2vw, 14px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.faq-item .toggle-icon.active::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item .toggle-icon.active::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-question:hover .toggle-icon {
  color: var(--accent-color);
  transform: scale(1.15);
}

.faq-question[aria-expanded="true"] .toggle-icon {
  color: var(--primary-color);
}

.learn-more-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.learn-more-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.logo {
  width: 160px;
  height: 50px;
  object-fit: cover;
}
/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .testimonial-faq-container {
    padding: 15px;
  }

  .content-row {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .content-row {
    flex-direction: column;
    align-items: center;
  }

  .section-testimonial,
  .faq-section {
    max-width: 100%;
    width: 100%;
    position: static;
    /* Remove sticky on smaller screens for better UX */
  }
}

@media (max-width: 768px) {
  .testimonial-faq-container {
    padding: 10px;
  }

  .content-row {
    gap: 20px;
  }

  .section-testimonial,
  .faq-section {
    padding: 10px;
  }

  .testimonial {
    padding: 10px 15px;
  }

  .testimonial-text {
    max-width: 100%;
  }

  .indicator-dots .dot {
    margin: 0 5px;
  }

  .faq-container {
    padding: 1.5rem 1rem;
  }

  .faq-answer.show {
    max-height: 15rem;
  }
}

@media (max-width: 480px) {
  .testimonial-faq-container {
    padding: 5px;
  }

  .content-row {
    gap: 15px;
  }

  .section-testimonial,
  .faq-section {
    padding: 10px 5px;
    min-width: unset;
  }

  .testimonial {
    padding: 0px;
  }

  .testimonial-header {
    padding: 5px;
  }

  .testimonial-img {
    border-width: 3px;
  }

  .faq-container {
    padding: 1rem 0.75rem;
  }

  .faq-item {
    padding: 10px 0;
  }

  .faq-answer.show {
    padding: 0.5rem;
  }

  .indicator-dots .dot {
    margin: 0 4px;
  }
  .logo {
    width: 130px;
    height: 50px;
    object-fit: cover;
  }
}

@media (max-width: 350px) {
  .testimonial-img {
    border-width: 2px;
  }

  .faq-container {
    padding: 0.75rem 0.5rem;
  }

  .faq-question {
    padding: 0.25rem 0;
  }

  .faq-answer.show {
    padding: 0.25rem;
  }
}

/*
---------------------------------------------
Contact Page
---------------------------------------------
*/

/* Hero Section */
.hero-container {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-hero {
  background-image: url(../image/contact.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container .banner-text {
  text-align: center;
  position: relative;
  max-width: 90%;
  padding: 0 5%;
  z-index: 3;
}

.hero-container .banner-text h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-inverse);
  /* Using --text-inverse (#ffffff) for white text */
  margin-bottom: 0.1em;
  line-height: 1.2;
  font-weight: 700;

}

.hero-container .banner-text p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-inverse);
  /* Using --text-inverse (#ffffff) for white text */
  margin-bottom: 1em;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto;
}

.hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--image-overlay);
  /* Using --image-overlay (rgba(0, 0, 0, 0.3)) */
  z-index: 2;
}

.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Contact Page Section */
.contact-page {
  margin: 60px 0;
}

.contact-page .left-text {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  padding: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.contact-page .left-text .section-heading {
  margin-bottom: 50px;
  color: var(--text-color);
}

.contact-page .left-text p {
  margin-bottom: 50px;
  color: var(--text-light);
}

.contact-page .left-text ul li {
  display: block;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 30px;
}

.contact-page .left-text ul li:last-child {
  margin-bottom: 0;
}

.contact-page .left-text ul li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-page .left-text ul li a {
  color: var(--text-light);
  transition: var(--transition);
}

.contact-page .left-text ul li a:hover {
  color: var(--primary-color);
}

.contact-page .right-content {
  margin-left: 50px;
}

.contact-page .right-content #map {
  margin-bottom: 60px;
}

.contact-page .right-content form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background-color: var(--bg-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 30px;
  border: 1px solid var(--border-stripe-1);
  border-radius: 25px;
}

.contact-page .right-content form textarea {
  width: 100%;
  height: 130px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  padding: 20px;
  background-color: var(--bg-color);
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 30px;
  border-radius: 25px;
  border: 1px solid var(--border-stripe-1);

}

.contact-page .right-content form button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: var(--primary-color);
  color: var(--text-inverse);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 25px;
  border: none;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.contact-page .right-content form button:hover {
  background-color: var(--navbar-scroll);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    min-height: 50vh;
  }

  .banner-text {
    max-width: 95%;
    padding: 0 3%;
  }

  .banner-text h3 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }

  .banner-text p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }

  .contact-page .right-content {
    margin-left: 0;
    margin-top: 45px;
  }

  .contact-page .left-text {
    padding: 40px 25px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    min-height: 40vh;
  }

  .banner-text {
    padding: 0 5%;
  }

  .banner-text h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .banner-text p {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  .contact-page .left-text {
    padding: 30px 20px;
  }

  .contact-page .left-text .section-heading {
    margin-bottom: 30px;
  }

  .contact-page .left-text p {
    margin-bottom: 30px;
  }

  .contact-page .left-text ul li {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-page .right-content form input,
  .contact-page .right-content form textarea {
    font-size: 13px;
  }

  .contact-page .right-content form button {
    font-size: 14px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    min-height: 35vh;
  }

  .banner-text h3 {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
  }

  .banner-text p {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  }

  .contact-page {
    margin: 30px 0;
  }

  .contact-page .left-text {
    padding: 20px 15px;
  }

  .contact-page .left-text ul li {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .contact-page .left-text ul li span {
    font-size: 12px;
  }

  .contact-page .right-content #map {
    margin-bottom: 30px;
  }

  .contact-page .right-content form input,
  .contact-page .right-content form textarea {
    margin-bottom: 20px;
  }

  .contact-page .right-content form button {
    font-size: 13px;
    height: 45px;
    line-height: 45px;
  }
}


/* page all products */

/* Filter Product Section - Enhanced */
.main-products {
  margin-bottom: 2rem;
  /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
  min-height: 100vh;
  padding: 20px 0;
}

.filter_product {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 2rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-controls {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter_product .sort,
.filter-dropdown,
.price-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.filter_product .sort label,
.filter-dropdown label,
.price-filter label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
}

.sort-select,
.category-select,
.price-select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  background: white;
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.sort-select:hover,
.category-select:hover,
.price-select:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 171, 223, 0.15);
}

.sort-select:focus,
.category-select:focus,
.price-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(133, 171, 223, 0.1);
}


.products-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 2rem 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.results-count {
  font-weight: 600;
  color: var(--text-color);
  font-size: 16px;
}

.view-options {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  background: none;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

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

.view-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.new-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

/* Enhanced Product Grid - Parent First Structure */
.moisturizer-items-grid {
  transition: all 0.3s ease;
}

/* List View Layout */
.moisturizer-items-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Product Card Container */
.moisturizer-item-card {
  position: relative;
}

/* Product Badges Container */
.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Badge Styles */
.new-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.discount-badge {
  background: linear-gradient(45deg, #00c851, #00a843);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 200, 81, 0.3);
}

/* Product Description */
.product-description {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product Rating Container */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

/* Stars Container */
.product-rating .stars {
  display: flex;
  gap: 2px;
}

/* Individual Star */
.product-rating .stars i {
  color: #ffc107;
  font-size: 12px;
}

/* Rating Text */
.rating-text {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* Price Container */
.price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

/* Original Price (Crossed Out) */
.original-price {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 400;
}

/* Current Price */
.moisturizer-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

/* List View Specific Styles */
.moisturizer-items-grid.list-view .moisturizer-item-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-radius: 15px;
  /* background: white; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: none;
  width: 100%;
}

.moisturizer-items-grid.list-view .moisturizer-item-media {
  width: 150px;
  height: 150px;
  margin-right: 2rem;
  flex-shrink: 0;
}

.moisturizer-items-grid.list-view .moisturizer-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.moisturizer-items-grid.list-view .moisturizer-item-actions {
  margin-top: 1rem;
}

.moisturizer-items-grid.list-view .product-badges {
  top: 15px;
  left: 15px;
}

.moisturizer-items-grid.list-view .product-description {
  font-size: 14px;
  -webkit-line-clamp: 3;
}

.moisturizer-items-grid.list-view .product-rating {
  margin: 12px 0;
}

  .moisturizer-items-grid.list-view .price-container {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }

/* Enhanced Product Cards */
.moisturizer-item-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius:5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.moisturizer-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.moisturizer-item-media {
  position: relative;
  overflow: hidden;
}

.moisturizer-item-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.moisturizer-item-card:hover .moisturizer-item-media::before {
  opacity: 1;
}

/* Filter Summary */
.filter-summary {
  display: flex;
  align-items: center;
}

.filter-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Pagination Styles */
.pagination-container {
  margin: 3rem auto 2rem;
  max-width: 95%;
}

.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pagination-info {
  color: #64748b;
  font-size: 0.95rem;
}

.pagination-info strong {
  color: #374151;
  font-weight: 600;
}

.pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.page-item {
  border-radius: 12px;
  overflow: hidden;
}

.page-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.page-link:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #475569;
  transform: translateY(-1px);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-item.disabled .page-link {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.items-per-page {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.items-per-page label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.items-select {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.items-select option{
  color: #000;
}
.items-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

  .items-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
  }

/* Enhanced Responsive for Pagination */
@media (max-width: 768px) {
  .products-status {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .pagination-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .pagination {
    justify-content: center;
  }

  .pagination-container {
    margin: 2rem auto 1rem;
  }
}

@media (max-width: 480px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .pagination-wrapper {
    padding: 1rem;
  }

  .items-per-page {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-active {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Enhanced Responsive Design for New Filter Layout */
@media (max-width: 1024px) {
  .filter-main-row {
    flex-direction: column;
    gap: 2rem;
  }

  .filter-controls {
    justify-content: center;
    gap: 1.5rem;
  }

  .search {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .filter_product {
    padding: 1.5rem 2rem;
    margin: 1rem;
  }

  .filter-main-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .filter-controls {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
  }

  .filter-group {
    width: 100%;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
    min-width: auto;
  }

  .search {
    min-width: 100%;
    width: 100%;
  }

  .search-container {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .filter_product {
    padding: 1rem 1.5rem;
    margin: 0.5rem;
  }

  .filter-controls {
    gap: 1rem;
  }

  .filter-group label {
    font-size: 0.8rem;
  }

  .filter-select {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .search {
    padding: 0.6rem 1rem;
    min-width: auto;
  }

  .search input {
    font-size: 0.9rem;
  }

  .clear-search {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

  /* Loading Animation */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Animation for filtered products */
.moisturizer-item-card.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.moisturizer-item-card.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}

/* Animation Keyframes */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Enhanced Filter Design */
.filter_product {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 2rem 2.5rem;
  margin: 2rem auto;
  max-width: 95%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease-out;
}

.filter-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.filter-controls {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.filter-group label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* Enhanced Dropdown Styles with Modern Colors */
.filter-select {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
  min-width: 160px;
  outline: none;
}

.filter-select:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-select:focus {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}
.filter-select option{
  color: #000;
}
/* Individual Filter Colors */
.sort-select {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.sort-select:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.sort-select:focus {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.category-select {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.category-select:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
}

.category-select:focus {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.price-select {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.price-select:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.price-select:focus {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

/* Enhanced Search Container */
.search-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  min-width: 350px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search:focus-within {
  border-color: #ef4444;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  transform: translateY(-2px);
}

.search-icon {
  color: #64748b;
  margin-right: 0.75rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.search:focus-within .search-icon {
  color: #ef4444;
}

.search input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 500;
}

.search input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.clear-search {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.clear-search:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.clear-search:active {
  transform: scale(0.95);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .filter-controls {
    gap: 1.5rem;
  }

  .filter_product .sort,
  .filter-dropdown,
  .price-filter {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .filter_product {
    margin: 1rem;
    padding: 1.5rem;
  }

  .filter-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .filter_product .sort,
  .filter-dropdown,
  .price-filter {
    width: 100%;
    min-width: unset;
  }

  .search-container {
    width: 100%;
    min-width: unset;
  }

  .products-status {
    margin: 0 1rem 2rem;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .moisturizer-items-grid.list-view .moisturizer-item-card {
    flex-direction: column;
    text-align: center;
  }

  .moisturizer-items-grid.list-view .moisturizer-item-media {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .filter_product {
    margin: 0.5rem;
    padding: 1rem;
  }

  .sort-select,
  .category-select,
  .price-select {
    padding: 10px 12px;
    font-size: 13px;
  }

  .filter_product .search input {
    padding: 10px 12px 10px 40px;
    font-size: 13px;
  }

  .view-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .results-count {
    font-size: 14px;
  }

  .moisturizer-items-grid.list-view .moisturizer-item-media {
    height: 150px;
  }
}

/* page privacy  */

/* Heading Styles */
.container-privacy {
  width: 90%;
  margin: 0 auto;
}

.privacy-policy h2 {
  font-family: "Playfair Display", serif;
  /* Elegant, brand-aligned font */
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.privacy-policy p.text-center.mb-5 {
  font-size: 1rem;
  color: #6c757d;
  /* Muted gray for date */
  font-style: italic;
}

/* Subsection Headings */
.privacy-policy h3 {
  font-family: "Roboto", sans-serif;
  /* Clean, modern font */
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  /* Brand accent color */
  margin-bottom: 1rem;
  position: relative;
}

.privacy-policy h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 0.5rem;
}

/* Paragraphs */
.privacy-policy p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1rem;
}

/* Lists */
.privacy-policy ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.privacy-policy ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.privacy-policy ul li::before {
  content: "\f058";
  /* Font Awesome circle-check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Links */
.privacy-policy a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Animations */
.privacy-policy .mb-4 {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.2s * var(--animation-order, 1));
}

.privacy-policy .mb-4:nth-child(1) {
  --animation-order: 1;
}

.privacy-policy .mb-4:nth-child(2) {
  --animation-order: 2;
}

.privacy-policy .mb-4:nth-child(3) {
  --animation-order: 3;
}

.privacy-policy .mb-4:nth-child(4) {
  --animation-order: 4;
}

.privacy-policy .mb-4:nth-child(5) {
  --animation-order: 5;
}

.privacy-policy .mb-4:nth-child(6) {
  --animation-order: 6;
}

.privacy-policy .mb-4:nth-child(7) {
  --animation-order: 7;
}

.privacy-policy .mb-4:nth-child(8) {
  --animation-order: 8;
}

.privacy-policy .mb-4:nth-child(9) {
  --animation-order: 9;
}

.privacy-policy .mb-4:nth-child(10) {
  --animation-order: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container-privacy {
    width: 90%;
  }

  .privacy-policy h2 {
    font-size: 2rem;
  }

  .privacy-policy h3 {
    font-size: 1.5rem;
  }

  .privacy-policy p,
  .privacy-policy ul li {
    font-size: 1rem;
  }

  .privacy-policy .col-lg-8 {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-policy {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .privacy-policy h2 {
    font-size: 1.75rem;
  }

  .privacy-policy .col-lg-8 {
    padding: 1rem;
  }
}

/* End of Privacy Policy */

/* PAGE ABOUT US  */
.banner-about {
  background-image: url(../image/about.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Parent container for the About Us section */
.about-us {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Child: Main heading */
.about-us .heading h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

/* Child: Subheading */
.about-us .heading p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Child: Content container */
.about-us .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

/* Child: Image */
.about-us .content .about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Child: Text container */
.about-us .content .text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
}

/* Child: Paragraphs within text */
.about-us .content .text p {
  margin-bottom: 1rem;
}

/* Child: List within text */
.about-us .content .text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

/* Child: List items */
.about-us .content .text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Add checkmark before list items */
.about-us .content .text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Small screen enhancements */
@media (max-width: 767.98px) {
  .about-us {
    padding: 2rem 0rem;
  }

  .about-us .heading h1 {
    font-size: 1.75rem;
  }

  .about-us .heading p {
    font-size: 1rem;
  }

  .about-us .content .about-image {
    margin-bottom: 1.5rem;
    max-height: 400px;
  }

  .about-us .content .text ul li {
    text-align: left;
  }
}

/* Medium and larger screens */
@media (min-width: 768px) {
  .about-us .heading h1 {
    font-size: 2.75rem;
  }

  .about-us .heading p {
    font-size: 1.25rem;
  }

  .about-us .content .text {
    padding-left: 1.5rem;
  }
}

/* banner */

.about-banner {
  height: 75vh;
  width: 100%;
  background-image: url("../image/banner-about-section.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 20px;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay for contrast */
  z-index: 1;
}

.about-banner .container {
  position: relative;
  z-index: 2;
}

.about-banner-content {
  max-width: 600px;
  color: var(--text-inverse);
}

.about-banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-banner-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-banner {
    height: 35vh;
  }

  .about-banner {
    text-align: center;
    padding: 0 15px;
  }

  .about-banner-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-banner-content h2 {
    font-size: 2rem;
  }

  .about-banner-content p {
    font-size: 1rem;
  }
}

/* main section */
/* Vision Section */
.vision-section {
  padding: 20px 0 10px;
  text-align: center;
}

.vision-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.vision-text {
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Product Gallery */
.product-gallery-about {
  margin: 10px 0;
  padding: 0 20px;
}

.gallery-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* Updated to 5 columns */
  gap: 10px;
  padding: 10px 0;
}

.product-image-about {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image-about img,
.product-image-about video {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.product-image-about video {
  object-fit: cover;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Slider */
@media (max-width: 767px) {
  .vision-section {
    padding: 10px 0 10px;
    text-align: left;
  }

  .vision-heading {
    font-size: 2rem;
  }

  .vision-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 0 10px 20px;
    scrollbar-width: none;
  }

  .gallery-slider::-webkit-scrollbar {
    display: none;
  }

  .product-image-about {
    flex: 0 0 70%;
    height: 220px;
    scroll-snap-align: start;
  }

  .wave-image {
    height: 220px;
  }
}

/* Tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  .gallery-slider {
    grid-template-columns: repeat(5, 1fr);
    /* 3 columns for tablets */
  }

  .product-image-about {
    height: 150px;
  }
}

/* values in css */

.values-section {
  padding: 2rem 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.values-section .values-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.values-section .value-card {
  height: 100%;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}

.values-section .value-card .value-image {
  width: 100%;
  height: 400px;
  margin-bottom: 1rem;
  border-radius: 7px;
}

.values-section .value-card .value-heading {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 1.5rem;
  margin: .5rem 0;
}

.values-section .value-card .value-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-light);
}

@media (max-width: 767px) {
  .values-section .values-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .values-section .value-card {
    margin-bottom: 3rem;
  }

  .values-section .value-card .value-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1rem;
  }
}

/* page technology  */
.banner-shop {
  background-image: url(../image/banner-about-section.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-technology {
  background-image: url(../image/banner-tech.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-technology {
  padding: 2rem 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-technology .technology-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.tech-cards-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Default layout: image on left, content on right */
.tech-card .image-container {
  flex: 1;
  order: 1;
}

.tech-card .content-container {
  flex: 1;
  order: 2;
}

/* Reverse layout for odd cards: content on left, image on right */
.tech-card.reverse .image-container {
  order: 2;
}

.tech-card.reverse .content-container {
  order: 1;
}

.tech-info {
  padding: 1rem;
  border-radius: 7px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-info h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.tech-info p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-view-details {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-view-details:hover {
  background-color: var(--secondary-color);
  color: var(--text-inverse);
  transform: translateY(-2px);
  text-decoration: none;
}

.tech-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tech-image:hover {
  transform: scale(1.02);
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .section-technology .technology-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .tech-cards-container {
    gap: 0.5rem;
    padding: 0 10px;
  }

  .tech-card {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* On mobile, always show image first */
  .tech-card .image-container,
  .tech-card.reverse .image-container {
    order: 1;
    width: 100%;
  }

  .tech-card .content-container,
  .tech-card.reverse .content-container {
    order: 2;
    width: 100%;
  }

  .tech-info {
    padding: 1.5rem;
  }

  .tech-info h2 {
    font-size: 1.5rem;
  }

  .tech-info p {
    font-size: 0.95rem;
  }

  .btn-view-details {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }


}

@media screen and (max-width: 480px) {
  .section-technology {
    padding: 1rem 0;
  }

  .tech-info {
    padding: 1rem;
  }

  .tech-info h2 {
    font-size: 1.3rem;
  }

  .tech-image {
    height: 300px;
  }
}

/* page technology  */

/* page technology data */
/* Hero Container */
.hero-container-technology {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video */
.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Enhanced Overlay with Gradient */
.overlay-technlogy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 20, 40, 0.8) 0%,
      rgba(0, 40, 80, 0.6) 50%,
      rgba(20, 60, 100, 0.4) 100%);
  z-index: 2;
}

/* Additional animated overlay for dynamic effect */
.overlay-technlogy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%,
      rgba(133, 171, 223, 0.3) 0%,
      transparent 50%);
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

/* Hero Content */
.hero-content-technlogy {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Typography */
.hero-content-technlogy h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Glowing text effect */
.hero-content-technlogy h1::after {
  content: "Technology Behind";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 20px rgba(133, 171, 223, 0.5);
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(133, 171, 223, 0.5);
  }

  to {
    text-shadow: 0 0 30px rgba(133, 171, 223, 0.8);
  }
}

.hero-content-technlogy p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* Enhanced Button Group */
.button-group-technlogy {
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Premium Button Design */
.view-technlogy {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* Button hover effects */
.view-technlogy::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.6s;
}

.view-technlogy:hover::before {
  left: 100%;
}

.view-technlogy:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 20px rgba(133, 171, 223, 0.4);
}

.view-technlogy:active {
  transform: translateY(-1px);
}

/* Floating particles effect */
.hero-container-technology::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px),
    radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  z-index: 2;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}



/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-technlogy {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .hero-container-technology {
    min-height: 500px;
    height: 70vh;
  }

  .hero-content-technlogy {
    padding: 0 15px;
    max-width: 90%;
  }

  .hero-content-technlogy h1 {
    margin-bottom: 1rem;
  }

  .hero-content-technlogy p {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .view-technlogy {
    padding: 14px 30px;
    font-size: 1rem;
  }

  /* Adjust overlay for mobile */
  .overlay-technlogy {
    background: linear-gradient(135deg,
        rgba(0, 20, 40, 0.85) 0%,
        rgba(0, 40, 80, 0.7) 50%,
        rgba(20, 60, 100, 0.5) 100%);
  }
}

@media (max-width: 480px) {
  .hero-container-technology {
    min-height: 450px;
  }

  .hero-content-technlogy h1 {
    font-size: 2.2rem;
  }

  .hero-content-technlogy p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .view-technlogy {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .hero-content-technlogy {
    max-width: 1200px;
  }

  .hero-content-technlogy h1 {
    font-size: 4.5rem;
  }

  .hero-content-technlogy p {
    font-size: 1.4rem;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .hero-content-technlogy h1 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

  .hero-content-technlogy,
  .hero-content-technlogy h1,
  .hero-content-technlogy p,
  .button-group-technlogy,
  .overlay-technlogy::before,
  .hero-container-technology::after,
  .view-technlogy {
    animation: none;
  }
}

/* Print styles */
@media print {
  .hero-container-technology {
    height: auto;
    min-height: auto;
    background: #f8f9fa;
    color: #333;
  }

  .background-clip,
  .overlay-technlogy {
    display: none;
  }

  .hero-content-technlogy {
    color: #333;
  }
}

/* nav tabs section */

.tech-tabs-main-container {
  margin: 50px 0;
}

.tech-tabs-main-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color),
      var(--accent-color));
}

/* Enhanced Tab Navigation */
.tech-tabs-nav-wrapper {
  position: relative;

  padding: 1.5rem;
  overflow: hidden;
}

.tech-tabs-nav-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.tech-tabs-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Enhanced Navigation Arrows */
.tech-tabs-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  font-size: 1.2rem;
}

.tech-tabs-nav-arrow.tech-tabs-nav-left {
  left: 15px;
}

.tech-tabs-nav-arrow.tech-tabs-nav-right {
  right: 15px;
}

/* Enhanced Tab Menu with Smooth Scrolling */
.tech-tabs-menu-list {
  display: flex;
  list-style: none;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 60px;
  /* Adjust padding to make space for arrows */
  margin: 0;
  position: relative;
}

.tech-tabs-menu-list::-webkit-scrollbar {
  display: none;
}

/* Enhanced Tab Buttons */
.tech-tabs-menu-item {
  white-space: nowrap;
  padding: 14px 28px;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  min-width: fit-content;
}

.tech-tabs-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}

.tech-tabs-menu-item:hover::before {
  left: 100%;
}

.tech-tabs-menu-item.tech-tabs-active {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--bg-color);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.tech-tabs-menu-item.tech-tabs-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Enhanced Content Container */
.tech-tabs-content-wrapper {
  padding: 1rem 3rem;
  position: relative;
  min-height: 500px;
}

.tech-tabs-content-panel {
  display: none;
  animation: tech-tabs-fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tech-tabs-content-panel.tech-tabs-active {
  display: block;
}

@keyframes tech-tabs-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Grid Layout */
.tech-tabs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* Enhanced Info Cards */
.tech-tabs-info-card {
  background: linear-gradient(135deg,
      var(--lighter-pink) 0%,
      rgba(255, 255, 255, 0.8) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(133, 171, 223, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tech-tabs-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
}

.tech-tabs-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      var(--lighter-pink) 100%);
}

.tech-tabs-info-title {
  color: var(--primary-color);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.tech-tabs-info-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 2px;
}

.tech-tabs-info-description p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.tech-tabs-info-list {
  list-style: none;
  padding: 0;
}

.tech-tabs-info-list li {
  margin-bottom: 1.8rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.tech-tabs-info-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

/* Enhanced Cell Health Section */
.tech-tabs-cell-section {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.tech-tabs-cell-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tech-tabs-cell-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent-color),
      var(--secondary-color));
}

.tech-tabs-cell-text h2 {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tech-tabs-cell-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.tech-tabs-cell-image {
  text-align: center;
  position: relative;
}

.tech-tabs-cell-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* Enhanced Results Grid */
.tech-tabs-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.tech-tabs-result-card {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tech-tabs-result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  border-radius: 0 0 4px 4px;
}

.tech-tabs-result-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.tech-tabs-result-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--banner-bg) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-inverse);
  font-size: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.tech-tabs-result-title {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.tech-tabs-result-text {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Enhanced Chart Container */
.tech-tabs-chart-wrapper {
  background: var(--bg-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.tech-tabs-chart-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg,
      var(--lighter-pink) 0%,
      rgba(133, 171, 223, 0.1) 100%);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  border: 2px dashed var(--primary-color);
}

/* Enhanced Section Header */
.tech-tabs-section-header {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg,
      rgba(133, 171, 223, 0.1),
      rgba(255, 143, 163, 0.1));
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(133, 171, 223, 0.2);
  position: relative;
}

.tech-tabs-section-header::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--secondary-color),
      var(--accent-color));
  border-radius: 0 0 4px 4px;
}

/* Mobile Optimizations */
@media (max-width: 1200px) {
  .tech-tabs-main-container {
    margin: 1rem;
  }

  .tech-tabs-menu-list {
    padding: 0 50px;
  }
}

@media (max-width: 992px) {
  .tech-tabs-menu-item {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .tech-tabs-content-grid {
    gap: 2rem;
  }

  .tech-tabs-cell-container {
    gap: 2rem;
    padding: 2rem;
  }

  .tech-tabs-info-title {
    font-size: 1.7rem;
  }

  .tech-tabs-section-header {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {


  .tech-tabs-main-container {
    margin: 0.5rem;
    border-radius: var(--border-radius-md);
  }

  .tech-tabs-nav-wrapper {
    padding: 1rem;
  }

  .tech-tabs-menu-list {
    padding: 0 45px;
    gap: 8px;
  }

  .tech-tabs-menu-item {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .tech-tabs-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .tech-tabs-nav-arrow.tech-tabs-nav-left {
    left: 10px;
  }

  .tech-tabs-nav-arrow.tech-tabs-nav-right {
    right: 10px;
  }

  .tech-tabs-content-wrapper {
    padding: 2rem 0.5rem;
  }

  .tech-tabs-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tech-tabs-cell-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .tech-tabs-info-card {
    padding: 2rem 1rem;
  }

  .tech-tabs-info-title {
    font-size: 1.5rem;
  }

  .tech-tabs-section-header {
    font-size: 1.8rem;
    padding: 1.2rem;
  }

  .tech-tabs-results-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-tabs-result-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .tech-tabs-chart-wrapper {
    padding: 2rem;
    min-height: 350px;
  }

  .tech-tabs-chart-placeholder {
    height: 300px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .tech-tabs-nav-wrapper {
    padding: 0.8rem;
  }

  .tech-tabs-menu-list {
    padding: 0 40px;
    gap: 6px;
  }

  .tech-tabs-menu-item {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .tech-tabs-nav-arrow {
    width: 35px;
    height: 35px;
  }

  .tech-tabs-nav-arrow.tech-tabs-nav-left {
    left: 5px;
  }

  .tech-tabs-nav-arrow.tech-tabs-nav-right {
    right: 5px;
  }

  .tech-tabs-content-wrapper {
    padding: 1.5rem 0rem;
  }

  .tech-tabs-info-card {
    padding: 1.5rem 0.5rem;
  }

  .tech-tabs-cell-container {
    padding: 1.5rem;
  }

  .tech-tabs-info-title {
    font-size: 1.3rem;
  }

  .tech-tabs-section-header {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .tech-tabs-cell-text h2 {
    font-size: 1.4rem;
  }

  .tech-tabs-result-title {
    font-size: 1.2rem;
  }

  .tech-tabs-chart-wrapper {
    padding: 1.5rem;
    min-height: 300px;
  }

  .tech-tabs-chart-placeholder {
    height: 250px;
    font-size: 1rem;
  }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {

  .tech-tabs-content-panel,
  .tech-tabs-menu-item,
  .tech-tabs-info-card,
  .tech-tabs-cell-container {
    animation: none;
    transition: none;
  }
}

/* Focus States for Accessibility */
.tech-tabs-menu-item:focus,
.tech-tabs-nav-arrow:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .tech-tabs-nav-wrapper {
    background: #f8f9fa;
    color: #333;
  }

  .tech-tabs-menu-item {
    border: 1px solid #ccc;
    color: #333;
  }

  .tech-tabs-main-container {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* page technology data */

/* page ingredients data */
.banner_product_list {
  background-color: var(--banner-bg);
  background-size: cover;
  background-position: center;
  height: 65vh;
  color: var(--text-white);
}

.section_product_list {
  background-color: var(--bg-color);
}

.container_product_list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.container_product_list .row {
  padding: 50px 0;
}

.container_product_list .row .product-image {
  position: relative;
}

.container_product_list .row .details-box {
  border-left: 3px solid var(--primary-color);
  padding-left: 10px;
}

.product-image-ingredient img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.container_product_list .row .details-box .card {
  border: none;
  background-color: #f0fcff;
}

.details-box .card img {
  height: 200px;
  object-fit: cover;
}

.details-box .card span {
  font-weight: bold;
  color: var(--primary-color);
  /* Using accent-color for red */
}

.details-box .card h4 {
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  color: var(--first-color);
}

.details-box .card .card-body a {
  font-size: 14px;
  color: var(--primary-color);
  /* Using accent-color for red */
  font-weight: 500;
  text-decoration: none;
}

.details-box .card .card-body a:hover {
  color: var(--primary-color);
}

.container_product_list .row .box h2 {
  color: var(--primary-color);
  /* Using accent-color for red */
  margin-top: 25px;
  margin-bottom: 10px;
}

.container_product_list .row .box .text {
  font-size: 1.1rem;
  color: var(--text-light);
}

.learn-more-link {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: background-color 0.3s ease;
}

.learn-more-link:hover {
  background-color: var(--secondary-color);
  color: var(--text-inverse);
  text-decoration: none;
}

@media (max-width: 768px) {
  .section-Differentiators .slider-wrapper {
    margin: 0 10px 40px;
  }

  .section-Differentiators .slider-wrapper .swiper-slide-button {
    display: none;
  }

  .section-Differentiators .slider-wrapper {
    margin: 0 35px 35px;
  }

  .reverse-colum {
    display: flex;
    flex-direction: column-reverse;
  }

  .container_product_list .row .details-box {
    border-left: none;
    border-top: 3px solid var(--primary-color);
    /* Using accent-color for red */
    padding: 10px 5px;
  }

  .container_product_list .row .box .text {
    font-size: 1rem;
  }

  .container_product_list .row {
    padding: 10px 0;
  }

  .product-image-ingredient img {
    height: 250px;
  }

  .container_product_list {
    padding: 15px 10px;
  }
}

/* page ingredients data */

/* page ingredient data  */

/* Enhanced Ingredients Page Styling */
.section_product_list {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.container_product_list {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 99;
}

/* Left Content Area */
.ingredient-data {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ingredient-data::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
      90deg,
      var(--primary-color),
      #667eea,
      var(--primary-color)
  );
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
      transform: translateX(-100%);
  }
  50% {
      transform: translateX(100%);
  }
}

.ingredient-data:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.ingredient-data h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      #667eea 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.ingredient-data h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 35px 0 20px 0;
  position: relative;
  padding-left: 20px;
}

.ingredient-data h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(
      135deg,
      var(--primary-color),
      #667eea
  );
  border-radius: 2px;
}

.ingredient-data p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
  transition: color 0.3s ease;
}

.ingredient-data p:hover {
  color: var(--text-dark);
}

.ingredient-data ul {
  padding-left: 0;
  list-style: none;
}

.ingredient-data ul li {
  position: relative;
  padding: 15px 0 15px 30px;
  margin-bottom: 15px;
  background: rgba(var(--primary-color-rgb), 0.05);
  border-radius: 10px;
  padding: 20px 20px 20px 50px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.ingredient-data ul li:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.ingredient-data ul li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.ingredient-data ul li strong {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ingredient-data {
      padding: 30px;
  }

  .ingredient-data h1 {
      font-size: 2.2rem;
  }

  .ingredient-data h2 {
      font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .container_product_list {
      padding: 0 15px;
  }

  .ingredient-data {
      padding: 25px;
      margin-bottom: 30px;
  }

  .ingredient-data h1 {
      font-size: 1.9rem;
      margin-bottom: 20px;
  }

  .ingredient-data h2 {
      font-size: 1.4rem;
      margin: 25px 0 15px 0;
  }

  .ingredient-data p {
      font-size: 1rem;
      line-height: 1.7;
  }

  .ingredient-data ul li {
      padding: 15px 15px 15px 40px;
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .ingredient-data h1 {
      font-size: 1.6rem;
  }

  .ingredient-data h2 {
      font-size: 1.2rem;
  }

  .ingredient-data {
      padding: 20px 10px;
  }

  .details-box {
      padding: 20px;
  }

  .ingredient-data ul li {
      padding: 12px 12px 12px 35px;
  }

  .ingredient-data ul li::before {
      left: 15px;
      font-size: 1rem;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.ingredient-data {
  animation: fadeInUp 0.8s ease-out;
}

.details-box {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Enhanced text selection */
.ingredient-data ::selection {
  background: rgba(var(--primary-color-rgb), 0.2);
  color: var(--text-dark);
}

.ingredient-data ::-moz-selection {
  background: rgba(var(--primary-color-rgb), 0.2);
  color: var(--text-dark);
}

/* Enhanced Author Info */
.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(var(--primary-color-rgb), 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
      135deg,
      var(--primary-color),
      #667eea
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-details p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  border: none;
  padding: 0;
}

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

/* Quick Facts Section */
.ingredient-summary {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(var(--primary-color-rgb), 0.03);
  border-radius: 12px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.ingredient-summary h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fact-item:last-child {
  border-bottom: none;
}

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

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

/* Enhanced Card Styling */
.details-box .card-body .article-category {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.08);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 12px;
}

.article-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.reading-time,
.article-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Enhanced Responsiveness for New Elements */
@media (max-width: 768px) {
  .author-info {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }

  .author-avatar {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
  }

  .fact-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
  }

  .fact-value {
      text-align: left;
  }

  .article-stats {
      flex-direction: column;
      gap: 8px;
  }

  .topic-tags {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .ingredient-summary,
  .related-topics {
      padding: 15px;
  }

  .author-info {
      padding: 12px;
  }

  .topic-tag {
      font-size: 0.8rem;
      padding: 5px 10px;
  }
}
