/*==================================================
  OMEGA V - DESIGN ENHANCEMENTS
  Modern, Premium & Engaging Design System
==================================================*/

/* ========== ENHANCED COLOR PALETTE ========== */
:root {
  /* Primary Colors - Vibrant & Modern */
  --primary-green: #008136;
  --primary-green-light: #00a847;
  --primary-green-dark: #005f28;
  --accent-gold: #ffc53c;
  --accent-gold-light: #ffd76b;
  --accent-gold-dark: #e6a800;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00a847 0%, #008136 100%);
  --gradient-accent: linear-gradient(135deg, #ffd76b 0%, #ffc53c 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 129, 54, 0.95) 0%, rgba(0, 95, 40, 0.98) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-600: #757575;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
  --shadow-glow: 0 0 40px rgba(255, 197, 60, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== ENHANCED HERO SECTION ========== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 197, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 168, 71, 0.15) 0%, transparent 50%);
  animation: pulseBackground 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseBackground {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text .btn {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  box-shadow: 0 8px 24px rgba(255, 197, 60, 0.4);
  transition: all var(--transition-base);
}

.hero-text .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 197, 60, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Image Enhancements */
.hero-img {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-img figure {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== ENHANCED BUTTONS ========== */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.95);
}

/* ========== PLANT-BASED SECTION ENHANCEMENTS ========== */
.plant-based {
  padding: 2rem 1rem;
  border-radius: 16px;
  background: var(--white);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plant-based::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.plant-based:hover::before {
  transform: scaleX(1);
}

.plant-based:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.plant-based img {
  transition: all var(--transition-base);
  filter: grayscale(0.3);
}

.plant-based:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
}

.plant-based a {
  font-weight: 600;
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

.plant-based:hover a {
  color: var(--primary-green);
}

/* ========== HEADING ENHANCEMENTS ========== */
.heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.heading h6 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.heading p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== PRODUCTS SECTION ENHANCEMENTS ========== */
.products {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.products:hover::before {
  opacity: 0.05;
}

.products:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.products img {
  transition: all var(--transition-slow);
  border-radius: 12px;
}

.products:hover img {
  transform: scale(1.1) rotate(3deg);
}

.products a {
  position: relative;
  z-index: 1;
  transition: all var(--transition-fast);
}

.products .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
  margin: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  display: inline-block;
  width: auto;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.products .btn::before {
  z-index: -1;
}

.products:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

.products .btn:first-of-type {
  background: var(--gradient-primary);
  color: var(--white);
  margin-right: 0.5rem;
  border: 2px solid transparent;
}

.products .btn:first-of-type:hover {
  background: var(--common-colour);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 129, 54, 0.3);
}

.products .btn:last-of-type {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.products .btn:last-of-type:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 129, 54, 0.3);
}

.products .btn-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

/* Star Rating Enhancement */
.star {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 1rem 0;
}

.star li i {
  color: var(--accent-gold);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.star li.star-empty i {
  color: var(--gray-300);
}

.products:hover .star li i {
  transform: scale(1.2);
}

/* ========== SUSTAINABILITY CARDS ========== */
.sustainability {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.sustainability:hover::before {
  opacity: 0.08;
}

.sustainability:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.sustainability i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  transition: all var(--transition-bounce);
  display: inline-block;
}

.sustainability:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-gold);
}

.sustainability h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.sustainability h5 a {
  color: inherit;
  transition: color var(--transition-fast);
}

/* .sustainability:hover h5 a {
  color: var(--primary-green);
} */

.sustainability p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* ========== TESTIMONIALS ENHANCEMENTS ========== */
.clients-reviews {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clients-reviews::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 8rem;
  color: var(--gray-100);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.clients-reviews:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.clients-reviews img {
  border: 4px solid var(--accent-gold);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.clients-reviews:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.clients-reviews-text {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.clients-reviews-text h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.clients-reviews-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.clients-reviews-text h6 {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1rem;
}

/* ========== MONEY-BACK / CTA SECTION ========== */
.money-back {
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}

.money-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.95;
  z-index: 1;
}

.money-back>* {
  position: relative;
  z-index: 2;
}

.money-back h4 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.money-back p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

/* ========== BLOG SECTION ENHANCEMENTS ========== */
.blog {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.blog:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.blog h3 a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.blog:hover h3 a {
  color: var(--primary-green);
}

.blog h4 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.blog h4 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #edeef1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.blog-img figure {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.blog-img figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.blog-img:hover figure::before {
  opacity: 1;
}

.blog-img img {
  transition: transform var(--transition-slow);
}

.blog-img:hover img {
  transform: scale(1.1);
}

/* ========== CBD OIL DROPPER SECTION ========== */
.cbd-oil-dropper {
  border-radius: 24px;
  padding: 4rem 3rem;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.cbd-oil-dropper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.cbd-oil-dropper>* {
  position: relative;
  z-index: 2;
}

.cbd-oil-dropper-text h6 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: all var(--transition-base);
}

.cbd-oil-dropper-text h6:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateX(8px);
}

.cbd-oil-dropper-text h6 i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  transition: transform var(--transition-base);
}

.cbd-oil-dropper-text h6:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--white);
}

/* Video Play Button */
.video a {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.video a::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.video a:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-gold);
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations on scroll (requires JS) */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ========== RESPONSIVE ENHANCEMENTS ========== */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .heading h2 {
    font-size: 2rem;
  }

  .sustainability,
  .clients-reviews {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .money-back,
  .cbd-oil-dropper {
    padding: 2rem 1.5rem;
  }

  .products {
    padding: 1.5rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
  transition: transform var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* ========== PRELOADER ENHANCEMENT ========== */
#preloader {
  background: var(--gradient-hero);
}

#preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 197, 60, 0.3);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========== BANNER SECTION ENHANCEMENTS ========== */
.bannr-section {
  position: relative;
  padding: 10rem 0 5rem;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

/* ========== INTERNAL PAGE HERO (FIX HEADER OVERLAP) ========== */
.page-hero-area {
  padding-top: 220px;
}

@media (max-width: 991px) {
  .page-hero-area {
    padding-top: 170px;
  }
}

.bannr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 129, 54, 0.92) 0%, rgba(0, 95, 40, 0.95) 100%);
  z-index: 1;
}

.bannr-section>* {
  position: relative;
  z-index: 2;
}

.bannr-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 1rem;
  font-weight: 600;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.breadcrumb-item.active {
  color: var(--white);
}

/* ========== CONTACT PAGE ENHANCEMENTS ========== */
.contact-page .heading h2 {
  color: var(--gray-900);
}

.content-style {
  border-radius: 24px;
  padding: 3rem;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.content-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.content-style>* {
  position: relative;
  z-index: 2;
}

.content-style h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
}

.content-form input,
.content-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--white);
}

.content-form input:focus,
.content-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 129, 54, 0.1);
  transform: translateY(-2px);
}

.content-form textarea {
  min-height: 150px;
  resize: vertical;
}

.content-form .btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.content-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 129, 54, 0.4);
}

.social-media.two {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-media.two li a {
  width: 50px;
  height: 50px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
  transition: all var(--transition-base);
}

.social-media.two li a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.content-us {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.content-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.content-us:hover::before {
  transform: scaleX(1);
}

.content-us:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.content-us i {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
}

.content-us:hover i {
  transform: scale(1.2) rotate(10deg);
}

.content-us span {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.content-us a,
.content-us h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

.content-us:hover a,
.content-us:hover h6 {
  color: var(--primary-green);
}

/* ========== PRODUCTS LIST PAGE ENHANCEMENTS ========== */
.products-list {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-list h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

.sort-by {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sort-by span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
}

.sort-by select,
.sort-by .nice-select {
  min-width: 180px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: all var(--transition-base);
}

.sort-by select:hover,
.sort-by .nice-select:hover {
  border-color: var(--primary-green);
}

.trending-products {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.trending-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.trending-products:hover::before {
  opacity: 0.05;
}

.trending-products:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.trending-products-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  line-height: 0;
}

.trending-products-img img {
  transition: transform var(--transition-slow);
  display: block;
  width: 100%;
}

.trending-products:hover .trending-products-img img {
  transform: scale(1.1);
}

.trending-products-text {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.trending-products-text a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color var(--transition-fast);
  display: block;
  margin-bottom: 0.75rem;
}

.trending-products:hover .trending-products-text a {
  color: var(--primary-green);
}

.trending-products-text h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-top: 0.75rem;
}

.add-to-cart {
  display: block;
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
}

.trending-products:hover .add-to-cart {
  opacity: 1;
  transform: translateY(0);
}

.add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 129, 54, 0.4);
  color: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination li a {
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-700);
  font-weight: 600;
  transition: all var(--transition-base);
}

.pagination li a:hover,
.pagination li a.active {
  background: var(--gradient-primary);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== PRODUCT DETAILS PAGE ENHANCEMENTS ========== */
.product-info-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.product-info-img img {
  transition: transform var(--transition-slow);
  display: block;
  width: 100%;
}

.product-info-img:hover img {
  transform: scale(1.05);
}

.omv-thumb {
  transition: all var(--transition-base);
  opacity: 0.7;
}

.omv-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.product-info {
  padding: 2rem 0;
}

.product-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.product-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.product-info h6 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.product-info h6 span {
  color: var(--primary-green);
}

.product-info h6 i {
  color: var(--accent-gold);
}

.stock .price {
  display: block;
  margin: 2rem 0;
}

.stock .price ins {
  text-decoration: none;
}

.stock .price .woocommerce-Price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
}

.quantity {
  margin: 2rem 0;
}

.quantity h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.quantity input {
  width: 120px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-base);
}

.quantity input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 129, 54, 0.1);
}

.single_add_to_cart_button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 1.5rem;
}

.single_add_to_cart_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 129, 54, 0.4);
}

.tab-style {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-200);
  flex-wrap: wrap;
}

.tab-style .nav-link {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.tab-style .nav-link:hover {
  color: var(--primary-green);
}

.tab-style .nav-link.active {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
  background: rgba(0, 129, 54, 0.05);
}

.specification {
  list-style: none;
  padding: 0;
}

.specification li {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.specification li:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.specification li h6 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.comment ul {
  list-style: none;
  padding: 0;
}

.comment ul li {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.comment ul li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.comment ul li img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
}

.comment-data h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.comment-data span {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  display: block;
}

.comment-data p {
  color: var(--gray-700);
  line-height: 1.8;
}

.form-reviews {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.form-reviews h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.form-reviews input,
.form-reviews textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--white);
}

.form-reviews input:focus,
.form-reviews textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 129, 54, 0.1);
}

/* ========== CART PAGE ENHANCEMENTS ========== */
.shop_table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.shop_table thead {
  background: var(--gradient-primary);
}

.shop_table thead th {
  padding: 1.5rem 1rem;
  color: var(--white);
  font-weight: 700;
  text-align: left;
  font-size: 1rem;
}

.shop_table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.shop_table tbody tr:hover {
  background: var(--gray-50);
}

.shop_table tbody td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

.shop_table .product-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop_table .product-name img {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.shop_table .product-name span {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.125rem;
}


.shop_table .omv-qty {
  width: 80px;
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-base);
}

.shop_table .omv-qty:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 129, 54, 0.1);
}

.shop_table tfoot td {
  padding: 2rem 1rem;
  background: var(--gray-50);
}

.shop_table .update-cart {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  transition: all var(--transition-base);
}

.shop_table .update-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 129, 54, 0.4);
}

.cart_totals {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.cart_totals h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.shop_table_responsive {
  width: 100%;
}

.shop_table_responsive tr {
  border-bottom: 1px solid var(--gray-200);
}

.shop_table_responsive th {
  padding: 1rem 0;
  font-weight: 700;
  color: var(--gray-700);
  text-align: left;
}

.shop_table_responsive td {
  padding: 1rem 0;
  text-align: right;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.125rem;
}

.shop_table_responsive .Total td {
  font-size: 1.75rem;
  color: var(--primary-green);
  font-weight: 800;
}

.coupon-area {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.coupon-area h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.coupon input,
.coupon select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--white);
}

.coupon input:focus,
.coupon select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 129, 54, 0.1);
}

.coupon .btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.coupon .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 129, 54, 0.4);
}

#omv-order-msg {
  padding: 1rem;
  background: rgba(0, 129, 54, 0.1);
  border-radius: 12px;
  color: var(--primary-green);
  font-weight: 600;
  text-align: center;
}

/* ========== ADDITIONAL ANIMATIONS ========== */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-size: 1000px 100%;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--white);
}

/* ========== CART POPUP FIX ========== */
/* Corrige right:-103px du thème qui faisait déborder le popup hors de la page */
.cart-popup {
  right: 0 !important;
  left: auto !important;
  max-width: 340px;
  width: 340px;
}

/* Sur les petits écrans, coller au bord droit de la fenêtre */
@media (max-width: 480px) {
  .cart-popup {
    right: 0 !important;
    width: 300px;
    max-width: calc(100vw - 16px);
  }
}

/* ========== QUI SOMMES-NOUS - RESPONSIVE ========== */
/* Sur mobile : masquer le bloc images, le texte prend toute la largeur */
@media (max-width: 991.98px) {
  #qualite .col-lg-6:first-child {
    display: none !important;
  }
  #qualite .col-lg-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0 !important;
  }
}
