/* ============================================================
   NEW.CSS - Merged Styles
   Contains: my-style.css + unique styles from style.css
   ============================================================ */

/* ==================== CSS Variables ==================== */
/* ==================== CSS Variables - Vibrant Blues + Coral Accent ==================== */
:root {
  /* Vibrant Blue Palette */
  --blue-light: #a8d4e6;
  --blue-medium: #3a9fbf;
  --blue-dark: #073249cc;
  --blue-accent: #2e8f8f;

  /* NEW: Vibrant Coral/Gold Accent - Complementary warm tone */
  --coral-accent: #fac020;
  /* principal – chaud & premium */
  --coral-light: #ffeb66;
  /* plus clair, brillante et douce */
  --coral-dark: #ffd13b;
  /* éclatante, effet shiny */
  --coral-soft: #f7c95c;
  /* alternative douce et élégante */

  /* White variants */
  --white-light: #ffffff;
  --white-medium: rgba(240, 240, 240, 0.945);

  /* Semantic Tokens */
  --background: #ffffff;
  --foreground: #1e3d4a;
  --card: #d0e8f0;
  --card-foreground: #1e3d4a;
  --primary: #1a3a4a;
  --primary-foreground: #ffffff;
  --secondary: #c5e0eb;
  --secondary-foreground: #1e3d4a;
  --thirdly-foreground: #ffffff;
  --muted: #d5e8f0;
  --muted-foreground: #4a8a9f;
  --accent: #255161;
  --accent-foreground: #ffffff;
  --highlight: #F4A261;
  --highlight-foreground: #1a3a4a;
  --border: #5ab0c8;
  --input: #d0e8f0;
  --ring: #3a9fbf;
  --radius: 0.5rem;

  /* Gradients */
  --gradient-hero: linear-gradient(to right, rgba(4, 112, 175, 0.432), rgba(23, 55, 66, 0.39), rgba(10, 113, 173, 0.096));
  --gradient-overlay: linear-gradient(to top, #1a3a4a, rgba(30, 60, 75, 0.5), transparent);
  --gradient-card: linear-gradient(135deg, #3a9fbf, #1a3a4a);
  --gradient-coral: linear-gradient(135deg,
      #ffbb00 0%,
      #ffd700 40%,
      #fddb1b 50%,
      #ffd700 60%,
      #ffbb00 100%);

  /* ==> REVANA Brand Colors (from style.css) */
  --primary-gold: #d4af37;
  --secondary-gold: #f1c40f;
  --dark-gold: #b8941f;
  --charcoal: #2c3e50;
  --dark-charcoal: #1a252f;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --white: #ffffff;
  --black: #000000;

  /* Typography (from style.css) */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Inter", sans-serif;

  /* Spacing (from style.css) */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Transitions (from style.css) */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  /* Shadows (from style.css) */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ==================== Utilities ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-coral);
  color: var(--secondary-foreground);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px -3px rgba(244, 162, 97, 0.4);
}

.btn-accent:hover {
  box-shadow: 0 10px 25px -5px rgba(244, 162, 97, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.card-hover {
  transition: all 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.25);
}

/* ==================== Header ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Logo responsive sizing - s'adapte avec les autres composants */
.imgLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Taille responsive avec clamp: min 40px, préféré 8vw, max 80px */
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.imgLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Ajustements responsive pour différentes tailles d'écran */
@media (max-width: 480px) {
  .imgLogo {
    width: 140px;
    height: 100px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .imgLogo {
    width: 145px;
    height: 105px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .imgLogo {
    width: 155px;
    height: 115px;
  }
}

@media (min-width: 1025px) {
  .imgLogo {
    width: 205px;
    height: 185px;
  }
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--foreground);
  opacity: 0.85;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--coral-accent);
  opacity: 1;
}

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

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--primary);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('./../img/background/pierre-apatite-bleue-univers-mineral-398.webp') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--primary-foreground);
  padding-top: 5rem;
}

.hero-subtitle {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-content {
    margin-top: 100px;
  }
}

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

  .hero-subtitle {
    color: var(--blue-medium);
  }

  .hero-content {
    margin-top: 100px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .hero-content {
    margin-top: 100px;
  }
}

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

  .hero-content {
    margin-top: 100px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title span {
  display: block;
  color: var(--blue-medium);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--blue-light);
  opacity: 0.95;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero-stat-number {
    font-size: 2.5rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--white-light);
  opacity: 0.75;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

/* ==================== About Section ==================== */
.about {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text.lead {
  font-size: 1.125rem;
  color: var(--foreground);
  opacity: 0.9;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.about-feature span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
  color: var(--white);
  padding: 40px 30px 30px;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.about-image:hover .image-overlay {
  transform: translateY(0);
}

/* ==================== Values Section ==================== */
.values {
  padding: 5rem 0;
  background: linear-gradient(90deg, rgba(128, 212, 237, 1) 0%, rgba(148, 218, 247, 1) 50%, rgba(81, 158, 189, 1) 100%);
}

@media (min-width: 1024px) {
  .values {
    padding: 7rem 0;
  }
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.value-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  opacity: 0.1;
  transition: left 0.5s ease;
}

.value-card:hover::before {
  left: 0;
}

.value-card:hover {
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.25);
  transform: translateY(-10px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.value-card:hover .value-icon {
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ==================== Categories Section ==================== */
.categories {
  padding: 5rem 0;
  background-color: var(--background);
  display: none;
}

@media (min-width: 1024px) {
  .categories {
    padding: 7rem 0;
  }
}

.categories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.categories-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.categories-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.category-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.2);
  cursor: pointer;
  background: var(--white);
  transition: var(--transition-smooth);
}

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

.category-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

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

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), rgba(26, 58, 74, 0.5), transparent);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 0.92;
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-coral);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--highlight-foreground);
}

.category-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-content p {
  font-size: 0.875rem;
  color: var(--blue-light);
  opacity: 0.85;
  line-height: 1.5;
}

.category-count {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==================== Gallery Carousel Section ==================== */
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.2);
  cursor: pointer;
}

.gallery-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-image-card:hover img {
  transform: scale(1.1);
}

.gallery-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 74, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-image-card:hover .gallery-image-overlay {
  opacity: 1;
}

.gallery-image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--primary-foreground);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-image-card:hover .gallery-image-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-image-info .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-coral);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--highlight-foreground);
}

.gallery-image-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-image-info p {
  font-size: 0.85rem;
  color: var(--blue-light);
  opacity: 0.9;
}

/* ==================== Products Section ==================== */
.products {
  padding: 5rem 0;
  background-color: rgba(197, 224, 235, 0.5);
  display: none;
}

@media (min-width: 1024px) {
  .products {
    padding: 7rem 0;
  }
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.product-card {
  background-color: var(--background);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.25);
  transform: translateY(-5px);
}

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

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

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-badge.new {
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
}

.product-badge.certified {
  background-color: var(--coral-accent);
  color: var(--highlight-foreground);
}

.product-badge.rare {
  background-color: var(--blue-dark);
  color: var(--primary-foreground);
}

.product-badge.premium {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.product-badge.nouveau {
  background: #27ae60;
  color: var(--white);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-content .origin,
.product-content .weight {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 1rem 0;
}

.product-content .price {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.product-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -3px rgba(244, 162, 97, 0.35);
  justify-content: center;
}

.product-btn:hover {
  background: var(--gradient-coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(244, 162, 97, 0.5);
}

/* ==================== Why Choose Section ==================== */
.why-choose {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .why-choose {
    padding: 7rem 0;
  }
}

.why-choose-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-label {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .why-choose-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .why-choose-title {
    font-size: 3rem;
  }
}

.why-choose-subtitle {
  font-size: 1.125rem;
  color: var(--blue-light);
  opacity: 0.85;
  max-width: 42rem;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-choose-item {
  text-align: center;
}

.why-choose-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
  background: var(--coral-dark);
  border-color: var(--coral-accent);
  color: var(--highlight-foreground);
  transform: scale(1.1);
}

.why-choose-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-choose-item p {
  font-size: 0.875rem;
  color: var(--blue-light);
  opacity: 0.75;
  line-height: 1.6;
}

/* ==================== Certifications Section ==================== */
.certifications {
  padding: 5rem 0;
  background-color: rgba(197, 224, 235, 0.35);
  position: relative;
}

@media (min-width: 1024px) {
  .certifications {
    padding: 7rem 0;
  }
}

.certifications-header {
  text-align: center;
  margin-bottom: 4rem;
}

.certifications-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.certifications-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.cert-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: var(--blue-medium);
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.2);
  transform: translateY(-5px);
}

.cert-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.cert-icon img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.cert-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.cert-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cert-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--coral-accent);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 7rem 0;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--primary-gold);
  font-family: var(--font-primary);
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.2);
  transform: translateY(-5px);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--secondary);
  font-size: 2.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--coral-accent);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: var(--secondary-gold);
  font-size: 1.1rem;
}

.testimonial-content {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-medium);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
}

.testimonial-info h4 {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-info .location {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.author-info span {
  display: block;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.author-info .location {
  color: var(--primary-gold);
  font-weight: 500;
}

/* ==================== Contact Section ==================== */
.contact {
  padding: 5rem 0;
  background-color: rgba(168, 212, 230, 0.25);
}

@media (min-width: 1024px) {
  .contact {
    padding: 7rem 0;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }
}

.contact-form {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-secondary);
  transition: var(--transition-smooth);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-medium);
  box-shadow: 0 0 0 3px rgba(58, 159, 191, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 30px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary-gold);
  width: 20px;
  margin-top: 2px;
}

.info-item p {
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.5;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
}

.contact-hours span:last-child {
  font-weight: 500;
  color: var(--foreground);
}

.schedule p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

.schedule span {
  font-weight: 600;
  color: var(--charcoal);
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(244, 162, 97, 0.12);
  border: 1px solid rgba(244, 162, 97, 0.35);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.response-time i {
  color: var(--primary-gold);
}

.response-time p {
  margin: 0;
  font-weight: 500;
  color: var(--charcoal);
}

/* ==================== Newsletter Section ==================== */
.newsletter {
  padding: 4rem 0;
  background-color: var(--primary);
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .newsletter-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.newsletter-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .newsletter-text {
    text-align: left;
  }
}

.newsletter-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .newsletter-text h2 {
    font-size: 1.875rem;
  }
}

.newsletter-text p {
  color: var(--blue-light);
  opacity: 0.85;
}

.newsletter-form {
  width: 100%;
}

@media (min-width: 1024px) {
  .newsletter-form {
    width: auto;
  }
}

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

@media (min-width: 640px) {
  .newsletter-form form {
    flex-direction: row;
  }
}

.newsletter-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--primary-foreground);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .newsletter-input {
    width: 20rem;
  }
}

.newsletter-input::placeholder {
  color: var(--blue-light);
  opacity: 0.6;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--blue-medium);
  box-shadow: 0 0 0 3px rgba(58, 159, 191, 0.25);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--blue-light);
  opacity: 0.65;
  margin-top: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .newsletter-note {
    text-align: left;
  }
}

.newsletter-privacy {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
  text-align: center;
}

/* ==================== Footer ==================== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.footer-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background-image: url("assets/images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
  border-radius: 7px;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
}

.footer-logo-text span {
  font-size: 0.75rem;
  color: var(--blue-light);
  opacity: 0.75;
  letter-spacing: 0.15em;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--blue-light);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--blue-accent);
  border-color: var(--blue-accent);
  transform: translateY(-3px);
}

.footer-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-gold);
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gradient-coral);
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.75;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--gradient-coral);
  opacity: 1;
  padding-left: 0.25rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--blue-light);
  opacity: 0.65;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.social-links a:hover {
  border-color: var(--white);
  transform: translateY(-3px);
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==================== Conditions Section ==================== */
.conditions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.conditions-content {
  margin: 0 auto;
}

.condition-item {
  background: white;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-color);
}

.condition-item h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.condition-item p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.condition-item ul {
  margin: 15px 0;
  padding-left: 20px;
}

.condition-item li {
  margin-bottom: 8px;
  color: #555;
}

.payment-table {
  overflow-x: auto;
  margin: 20px 0;
}

.payment-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-table th,
.payment-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.payment-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

.payment-process {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.payment-process h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.payment-process ul {
  list-style: none;
  padding: 0;
}

.payment-process li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  color: #555;
}

.payment-process li:last-child {
  border-bottom: none;
}

/* ============================================================
   UNIQUE STYLES FROM style.css NOT IN my-style.css
   ============================================================ */

/* ===== ANIMATED BACKGROUNDS ===== */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  opacity: 0.5;
  z-index: -1;
}

.animated-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

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

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

.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  z-index: -1;
}

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

  to {
    transform: rotate(360deg);
  }
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  z-index: -1;
  overflow: hidden;
}

.wave-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath d='M0,300 Q250,200 500,300 T1000,300 L1000,1000 L0,1000 Z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
  animation: wave 15s ease-in-out infinite;
}

@keyframes wave {

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

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

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(241, 196, 15, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  z-index: -1;
  animation: particles 25s ease-in-out infinite;
}

@keyframes particles {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hexagon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  z-index: -1;
}

.hexagon-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpolygon points='25,5 40,15 40,35 25,45 10,35 10,15'/%3E%3C/g%3E%3C/svg%3E");
  animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(248, 249, 250, 0.9) 0%,
      rgba(233, 236, 239, 0.9) 25%,
      rgba(248, 249, 250, 0.9) 50%,
      rgba(233, 236, 239, 0.9) 75%,
      rgba(248, 249, 250, 0.9) 100%);
  z-index: -1;
  animation: gradientShift 30s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ===== CTA BUTTONS (from style.css) ===== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

/* ===== HEADER SCROLLED STATE (from style.css) ===== */
.header.scrolled {
  background: rgba(74, 74, 74, 0.98);
  box-shadow: var(--shadow-light);
}

/* ===== NAVBAR (from style.css) ===== */
.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 5px 0;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SLIDER (from style.css) ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(26, 37, 47, 0.5));
}

.slide-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 800px;
  padding: var(--container-padding);
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

.slide-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, var(--white), var(--secondary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 3;
  transform: translateY(-50%);
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: var(--white);
  font-size: 1.5rem;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  width: 60px;
  height: 60px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.slider-nav button:hover {
  background: rgba(212, 175, 55, 0.8);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--primary-gold);
  border-color: var(--white);
  transform: scale(1.2);
}

/* ===== ABOUT REVANA SECTION (from style.css) ===== */
.about-revana {
  padding: var(--section-padding);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: var(--font-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary-gold);
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== VALUES SECTION (from style.css) ===== */
.values-section {
  padding: var(--section-padding);
  position: relative;
}

/* ===== CATEGORIES SECTION (from style.css) ===== */
.categories-section {
  padding: var(--section-padding);
  position: relative;
}

/* ===== FEATURED PRODUCTS (from style.css) ===== */
.featured-products {
  padding: var(--section-padding);
  position: relative;
}

.products-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== WHY CHOOSE REVANA (from style.css) ===== */
.why-choose-revana {
  padding: var(--section-padding);
  background: var(--charcoal);
  color: var(--white);
}

.why-choose-revana .section-title {
  color: var(--white);
}

.why-choose-revana .section-title::after {
  background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 1.3rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== TESTIMONIALS SLIDER (from style.css) ===== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* ===== CONTACT SECTION (from style.css) ===== */
.contact-section {
  padding: var(--section-padding);
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  height: 80px;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 40px;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--medium-gray);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--primary-gold);
  transform: scale(1.1);
}

/* ===== HERO SECTION (Page-specific from style.css) ===== */
.hero-section {
  position: relative;
  height: 60vh;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.gold-text {
  color: var(--primary-gold);
}

.white-text {
  color: var(--white);
}

.charcoal-text {
  color: var(--charcoal);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bg-logo {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-medium);
    padding: 30px 0;
    backdrop-filter: blur(20px);
  }

  .footer-section h3::after {
    content: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-link {
    color: var(--charcoal);
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .values-grid,
  .features-grid,
  .certifications-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .categories-grid,
  .products-slider,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .testimonial-content {
    min-height: 340px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-bg-logo {
    width: 200px;
    height: 200px;
  }

  .slider-nav {
    padding: 0 20px;
  }

  .slider-nav button {
    padding: 12px;
    font-size: 1.2rem;
  }

  /* Page Qui sommes-nous responsive */
  .hero-title {
    font-size: 2.5rem;
  }

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

  .condition-item {
    padding: 20px;
  }

  .payment-table {
    font-size: 0.9rem;
  }

  .payment-table th,
  .payment-table td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 0.9rem;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .values-grid,
  .features-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .feature-card,
  .cert-card {
    padding: 25px 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .newsletter-content {
    padding: 0 15px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .footer-bg-logo {
    width: 150px;
    height: 150px;
  }

  /* Page Qui sommes-nous mobile */
  .hero-title {
    font-size: 2rem;
  }

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

  .condition-item {
    padding: 15px;
  }

  .payment-table {
    font-size: 0.8rem;
  }

  .payment-table th,
  .payment-table td {
    padding: 8px;
  }
}

/* Modal gallery */
/* Modal Overlay */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 66, 168, 0.426);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

/* Modal Content Container - Fixed Size */
.modal-content {
  position: relative;
  width: 1400px;
  height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  overflow: hidden;
  /* Ajoute cette ligne */
}

/* Modal Image */
.modal-image {
  display: flex;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(71, 68, 68, 0.809);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.4s ease;
}

/* Modal Image */
.modal-image {
  min-width: 70px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(71, 68, 68, 0.809);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.4s ease;
}

.gallery-modal.active .modal-image {
  opacity: 1;
  transform: scale(1);
}

/* Slide Animations */
.modal-image.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.modal-image.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
}

.modal-image.slide-in-left {
  animation: slideInFromRight 0.5s ease forwards;
}

.modal-image.slide-in-right {
  animation: slideInFromLeft 0.5s ease forwards;
}

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

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

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

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

/* Close Button */
.modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Navigation Buttons */
.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Image Info */
.modal-info {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10001;
}

.modal-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.modal-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Counter */
.modal-counter {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  z-index: 10001;
}

/* Clickable Gallery Cards */
.gallery-image-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Loading State */
.modal-loading {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive Adjustments */
@media (max-width: 900px) {
  .modal-content {
    width: 90vw;
    height: auto;
    max-height: 80vh;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    height: auto;
    max-height: 75vh;
  }

  .modal-nav {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .modal-info h4 {
    font-size: 1.2rem;
  }

  .modal-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .modal-info {
    bottom: 20px;
    padding: 0 15px;
  }

  .modal-info h4 {
    font-size: 1rem;
  }
}

/* ==================== Mobile Drawer Menu ==================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #013752;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-header .imgLogo {
  width: 100px;
  height: 70px;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
  background: var(--coral-accent);
  transform: rotate(90deg);
}

.mobile-drawer-links {
  flex: 1;
  padding: 2rem 0;
  list-style: none;
  margin: 0;
}

.mobile-drawer-links li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.mobile-drawer.active .mobile-drawer-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.active .mobile-drawer-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-drawer.active .mobile-drawer-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-drawer.active .mobile-drawer-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-drawer.active .mobile-drawer-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-drawer.active .mobile-drawer-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-drawer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--coral-accent);
  color: var(--coral-accent);
  padding-left: 2rem;
}

.mobile-drawer-links a i {
  width: 24px;
  text-align: center;
  font-size: 1rem;
  opacity: 0.8;
}

.mobile-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer-footer .btn-accent {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

.mobile-drawer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mobile-drawer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.mobile-drawer-social a:hover {
  background: var(--coral-accent);
  transform: translateY(-3px);
}

/* Body lock when drawer is open */
body.drawer-open {
  overflow: hidden;
}

@media (min-width: 1024px) {

  .mobile-drawer,
  .mobile-drawer-overlay {
    display: none !important;
  }
}

/* ==================== Livraison et Export Section ==================== */
.delivery-section {
  padding: 5rem 0;
  background-color: var(--blue-light);
  position: relative;
}

@media (min-width: 1024px) {
  .delivery-section {
    padding: 7rem 0;
  }
}

.delivery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.delivery-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.delivery-content {
  max-width: 1100px;
  margin: 0 auto;
}

.delivery-intro {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
  border-left: 4px solid var(--coral-accent);
}

.delivery-intro-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-foreground);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.delivery-intro-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.delivery-intro-text p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(244, 162, 97, 0.1);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--accent);
  margin-top: 1rem;
}

.delivery-note i {
  color: var(--coral-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.delivery-note span {
  line-height: 1.6;
}

.delivery-options-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
  border-left: 4px solid var(--blue-medium);
}

.delivery-options-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .delivery-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.delivery-option-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.delivery-option-card:hover {
  box-shadow: 0 20px 40px -10px rgba(26, 58, 74, 0.25);
  transform: translateY(-5px);
}

.delivery-option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.delivery-option-badge.recommended {
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
}

.delivery-option-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.delivery-option-card:hover .delivery-option-icon {
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
  transform: scale(1.1);
}

.delivery-option-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.delivery-option-full {
  display: block;
  font-size: 0.875rem;
  color: var(--coral-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-option-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.delivery-option-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.delivery-option-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--foreground);
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
}

.delivery-option-features li:first-child {
  border-top: none;
}

.delivery-option-features li i {
  color: var(--coral-accent);
  font-size: 0.75rem;
}

.delivery-additional-notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(168, 212, 230, 0.25);
  border-radius: var(--radius);
}

.delivery-additional-notes .delivery-note {
  margin-top: 0;
  background-color: var(--background);
}

/* Responsive adjustments for delivery section */
@media (max-width: 768px) {

  .delivery-intro,
  .delivery-options-header {
    flex-direction: column;
    text-align: center;
  }

  .delivery-intro-icon {
    margin: 0 auto;
  }

  .delivery-intro-text h3,
  .delivery-intro-text p {
    text-align: center;
  }

  .delivery-note {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== Modalités de Paiement Section ==================== */
.payment-section {
  padding: 3rem 0 5rem;
  background-color: var(--white-medium);
}

.payment-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 1rem;
  border-left: 4px solid var(--primary-gold);
}

.payment-intro-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-foreground);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-intro-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.payment-intro-text p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.payment-table-wrapper {
  overflow-x: auto;
  background: var(--background);
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(26, 58, 74, 0.15);
  margin-bottom: 1.5rem;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.payment-table thead {
  background: var(--primary);
}

.payment-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--primary-gold);
}

.payment-table th .th-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

.payment-table th.service-col {
  background: var(--charcoal);
  min-width: 200px;
}

.payment-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: top;
}

.payment-table tbody tr:hover {
  background-color: rgba(168, 212, 230, 0.15);
}

.payment-table .service-name {
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(168, 212, 230, 0.2);
}

.payment-table .service-name.highlight {
  background: var(--gradient-coral);
  color: var(--highlight-foreground);
}

.payment-table .seller {
  color: var(--accent);
  font-weight: 500;
}

.payment-table .buyer {
  color: var(--coral-dark);
  font-weight: 500;
}

.payment-table .special {
  color: var(--muted-foreground);
  font-style: italic;
  font-size: 0.85rem;
}

.payment-table .na {
  color: var(--muted-foreground);
  text-align: center;
}

.payment-table .separator-row td {
  padding: 0.5rem;
  background: var(--border);
  border: none;
}

.payment-table .payment-process-row {
  background-color: rgba(250, 192, 32, 0.08);
}

.payment-table .payment-details {
  font-size: 0.85rem;
  line-height: 1.6;
}

.payment-table .payment-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-table .payment-details li {
  padding: 0.25rem 0;
  color: var(--foreground);
}

.payment-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
}

.seller-color {
  background-color: var(--accent);
}

.buyer-color {
  background-color: var(--coral-dark);
}

@media (max-width: 768px) {
  .payment-header {
    flex-direction: column;
    text-align: center;
  }

  .payment-intro-icon {
    margin: 0 auto;
  }

  .payment-legend {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}