    :root {
      /* Nouvelle palette de couleurs premium */
      --champagne: #FDF7F0;
      --charcoal: #1C1C1E;
      --pearl-gray: #ECECEC;
      --deep-avocado: #75805b;
      --sandy-gold: #C6B38E;
      --light-khaki: #D9D3C9;
      --salmon: #FA8072;
      
      /* Variables CSS pour faciliter l'utilisation */
      --background: var(--champagne);
      --text-primary: var(--charcoal);
      --background-alt: var(--pearl-gray);
      --accent-primary: var(--deep-avocado);
      --accent-secondary: var(--sandy-gold);
      --hover-color: var(--light-khaki);
      
      /* Autres variables utiles */
      --card-shadow: 0 4px 12px rgba(28, 28, 30, 0.08);
      --card-shadow-hover: 0 8px 24px rgba(28, 28, 30, 0.12);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --header-height: 80px;
      --border-radius: 12px;
      --border-radius-small: 8px;
      --border-radius-large: 20px;
    }
    
    /* Base Styles */
    html { 
      scroll-behavior: smooth; 
      font-size: 16px;
    }
    
    *, *::before, *::after { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    body {
      background: transparent;
      color: var(--text-primary); 
      font-family: 'Montserrat', sans-serif; 
      overflow-x: hidden;
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }
    
    /* Background video with white overlay */
    #bgVideo {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.25);
      z-index: -1;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Spreadshirt shop container */
  #myShop {
      width: 100%;
      max-width: none;
      background-color: var(--background);
      border-radius: 0;
      overflow: hidden;
    }

    /* Semi-transparent backgrounds for readability */
    .hero,
    .page-header,
    .harmonized-section,
    .philosophy-section,
    .newsletter {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    
    /* Header avec nouveau style premium */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(253, 247, 240, 0.95); 
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 0; 
      z-index: 100; 
      transition: var(--transition);
      box-shadow: 0 1px 0 rgba(28, 28, 30, 0.1);
      height: var(--header-height);
    }

    header .container {
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    header.scrolled {
      background: rgba(253, 247, 240, 0.98);
      box-shadow: 0 2px 8px rgba(28, 28, 30, 0.08);
    }
    
    nav {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    nav > a {
      margin-right: 40px;
    }
    
    nav img {
      height: 75px;
      transition: var(--transition);
    }
    
    nav img:hover {
      transform: scale(1.05);
      opacity: 0.8;
    }
    
    .nav-links { 
      display: flex; 
      height: 100%;
      align-items: center;
    }
    
    .nav-links a {
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      margin-left: 32px;
      position: relative;
      padding: 0 5px;
      letter-spacing: -0.01em;
      font-size: 1.1rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      height: 100%;
      font-family: 'Montserrat', sans-serif;
    }
    
    .nav-links a i {
      margin-right: 8px;
      font-size: 1rem;
      color: var(--accent-secondary);
    }
    
    .nav-links a::after { 
      content: ''; 
      position: absolute; 
      bottom: -2px; 
      left: 5px; 
      right: 5px;
      height: 2px; 
      background: var(--accent-primary); 
      transform: scaleX(0);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    }
    
    .nav-links a:hover {
      color: var(--accent-primary);
    }
    
    .nav-links a:hover i {
      color: var(--accent-primary);
    }
    
    .nav-links a:hover::after { 
      transform: scaleX(1);
    }
    
    /* Mobile menu - style épuré */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
      width: 40px;
      height: 40px;
      padding: 0;
      transition: var(--transition);
    }

    .mobile-menu-btn:hover {
      transform: translateY(-3px);
    }
    
    .hamburger-icon {
      width: 20px;
      height: 16px;
      position: relative;
      margin: 0 auto;
    }
    
    .hamburger-icon span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: var(--text-primary);
      border-radius: 2px;
      opacity: 1;
      left: 0;
      transition: .25s ease-in-out;
    }
    
    .hamburger-icon span:nth-child(1) {
      top: 0px;
    }
    
    .hamburger-icon span:nth-child(2) {
      top: 7px;
    }
    
    .hamburger-icon span:nth-child(3) {
      top: 14px;
    }
    
    .hamburger-icon.open span:nth-child(1) {
      top: 7px;
      transform: rotate(135deg);
    }
    
    .hamburger-icon.open span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }
    
    .hamburger-icon.open span:nth-child(3) {
      top: 7px;
      transform: rotate(-135deg);
    }
    
    /* Hero Section - Style premium épuré */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: calc(var(--header-height) + 40px) 0 40px;
      background: rgba(255, 255, 255, 0.5);
    }
    
    .hero-content { 
      z-index: 1; 
      display: flex; 
      flex-direction: column; 
      align-items: center; 
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
      width: 100%;
    }
    
    .hero-content.visible { 
      opacity: 1;
      transform: translateY(0);
    }
    
.hero-logo-wrapper {
  display: inline-block;
  padding: 10px;
  border-radius: var(--border-radius-large);
  transition: var(--transition);
}

/* Remove hover effects on the hero logo */
.hero-logo-wrapper:hover {
  box-shadow: none;
  transform: none;
}

.hero-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.logo-salmon,
.logo-white {
  /* Ensure logos keep their original colors */
  filter: none;
}

.hero-logo-wrapper:hover .hero-logo {
  transform: none;
  opacity: 1;
}

    .hero .btn {
      font-size: 0.81rem;
      padding: 13.5px 31.5px;
    }
    
    .hero-category-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin: 20px 0 50px;
    }
    .hero-layout {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    .hero-left, .hero-right {
      flex: 1;
      min-width: 300px;
    }
    .hero-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      justify-content: center;
    }
    .tagline {
      font-size: 2.5rem;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: var(--text-primary);
      margin-top: 20px;
      text-align: left;
    }
    
.hero-content.horizontal-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
}

@media (min-width: 769px) {
  .hero-content.horizontal-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 100px 60px;
  }
  .hero-left,
  .hero-right {
    flex: 1;
    min-width: 300px;
  }
}

.hero-left {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-tagline {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-button {
  background-color: var(--accent-primary);
  color: white;
  border-radius: 12px;
  padding: 16px 26px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.hero-button:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-3px);
}

.hero-button i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-cta {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
    .hero-mini-card {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: calc(var(--delay) * 0.15s);
      text-decoration: none;
    }
    
    .hero-mini-card:nth-child(1) {
      --delay: 1;
    }
    
    .hero-mini-card:nth-child(2) {
      --delay: 2;
    }
    
    .hero-mini-card:nth-child(3) {
      --delay: 3;
    }
    
    .hero-mini-card:nth-child(4) {
      --delay: 4;
    }
    
    .rect-wrapper.square {
      position: relative;
      width: 180px;
      height: 180px;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      background: var(--pearl-gray);
    }
    
    .rect-wrapper.square::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-20deg);
      transition: all 0.75s ease;
      z-index: 2;
    }
    
    .rect-wrapper.square:hover::before {
      left: 125%;
    }
    
    .rect-wrapper.square:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .rect-wrapper.square img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s ease;
      filter: brightness(0.9);
    }
    
    .rect-wrapper.square:hover img {
      filter: brightness(1.1);
      transform: scale(1.1);
    }
    
    .label-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 40px 0 15px;
      text-align: center;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 5px rgba(0,0,0,0.7);
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      transition: var(--transition);
      z-index: 1;
      font-family: 'Montserrat', sans-serif;
    }
    
    .rect-wrapper.square:hover .label-overlay {
      padding-bottom: 20px;
      background: linear-gradient(to top, rgba(75, 103, 76, 0.8), transparent);
    }
    
    /* Boutons style premium avec effets originaux */
    .btn { 
      padding: 15px 35px; 
      background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary)); 
      color: white; 
      border-radius: 50px; 
      text-decoration: none; 
      font-weight: 600; 
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 0.9rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      border: none;
      cursor: pointer;
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
    }
    
    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }
    
    .btn:hover { 
      box-shadow: 0 12px 30px rgba(0,0,0,0.4);
      transform: translateY(-3px) scale(1.02);
      background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    }
    
    .btn:hover::after {
      left: 100%;
    }
    
    .btn:active {
      transform: translateY(-1px) scale(0.98);
    }
    
    /* Boutons secondaires */
    .btn-secondary {
      background: transparent;
      border: 2px solid var(--accent-secondary);
      color: var(--accent-secondary);
      padding: 12px 28px;
    }
    
    .btn-secondary:hover {
      background: var(--accent-secondary);
      color: white;
      box-shadow: 0 4px 8px rgba(198, 179, 142, 0.3);
    }
    
    /* Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    /* Section Styling */
    section {
      padding: 80px 0;
      position: relative;
      background: rgba(255, 255, 255, 0.5);
    }

    section:nth-child(even) {
      background: rgba(255, 255, 255, 0.5);
    }
    
    .section-title {
      text-align: center;
      font-size: 2.3rem;
      margin-bottom: 20px;
      color: var(--accent-primary);
      font-weight: 700;
      position: relative;
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background: var(--accent-secondary);
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      margin-bottom: 50px;
      color: var(--text-primary);
      opacity: 0.7;
      font-weight: 400;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      font-family: 'Montserrat', sans-serif;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    /* Banner Section */
    #banner-section {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 0;
      position: relative;
      overflow: hidden;
      background: transparent;
    }
    
    #banner-section img {
      width: 100%;
      max-width: 1200px;
      max-height: 400px;
      object-fit: cover;
      display: block;
      border-radius: var(--border-radius-large);
      box-shadow: var(--card-shadow);
    }

    /* Page Header */
    .page-header {
      min-height: 40vh;
      padding: calc(var(--header-height) + 40px) 0 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: rgba(255, 255, 255, 0.5);
    }

    .page-header .container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-header .breadcrumb {
      font-size: 0.9rem;
      margin-bottom: 10px;
      color: var(--text-primary);
      opacity: 0.7;
    }

    .page-title {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .page-subtitle {
      font-size: 1.1rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.8;
      font-family: 'Montserrat', sans-serif;
    }
    
    /* Harmonized Sections - Style premium */
    .harmonized-section {
      padding: 80px 0;
      transition: opacity 0.8s ease-in-out;
      opacity: 0;
      animation: fadeIn 1.2s ease-in-out forwards;
    }
    
    .bg-dark {
      background-color: rgba(255, 255, 255, 0.5);
    }

    .bg-light {
      background-color: rgba(255, 255, 255, 0.5);
    }
    
    /* Blog Section */
    #blog {
      position: relative;
      background: rgba(255, 255, 255, 0.5);
    }
    
    .blog-filter {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 50px;
    }

    .news-flex {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 30px;
    }

    .news-image {
      flex: 0 0 380px;
      display: flex;
      justify-content: center;
    }

    .news-content {
      flex: 1;
    }

    .news-image img {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .news-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .news-subtitle {
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 20px;
      color: var(--text-primary);
      opacity: 0.8;
    }

.news-carousel {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      scroll-snap-type: x mandatory;
      padding-bottom: 20px;
      scrollbar-width: thin;
      scrollbar-color: var(--accent-secondary) var(--light-khaki);
      -webkit-overflow-scrolling: touch;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

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

    .news-grid .news-item {
      flex: none;
      width: 100%;
    }

    .news-carousel::-webkit-scrollbar {
      height: 8px;
    }

    .news-carousel::-webkit-scrollbar-track {
      background: var(--light-khaki);
      border-radius: 10px;
    }

    .news-carousel::-webkit-scrollbar-thumb {
      background-color: var(--accent-secondary);
      border-radius: 10px;
    }

    .news-item {
      flex: 0 0 220px;
      background: white;
      border: 1px solid var(--accent-primary);
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
      padding: 20px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: var(--transition);
    }

    .news-item:hover {
      box-shadow: var(--card-shadow-hover);
      transform: translateY(-4px);
    }

    .news-category {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      text-transform: uppercase;
      background: var(--light-khaki);
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 10px;
      align-self: flex-start;
      font-weight: 600;
    }

    .news-item-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      color: var(--text-primary);
      line-height: 1.3;
    }

    .news-thumb img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: var(--border-radius);
      margin-bottom: 10px;
    }

    .news-item-excerpt {
      font-size: 0.9rem;
      color: var(--text-primary);
      opacity: 0.7;
      line-height: 1.4;
      margin: 10px 0;
      flex-grow: 1;
    }

    .read-more-btn {
      align-self: flex-start;
      padding: 6px 16px;
      background: var(--accent-primary);
      color: #fff;
      border: none;
      border-radius: 30px;
      font-size: 0.8rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
    }

    .read-more-btn:hover {
      background: var(--accent-secondary);
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--light-khaki);
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .carousel-dot.active {
      background: var(--accent-primary);
    }

    .news-button {
      text-align: center;
      margin-top: 15px;
    }

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

  .news-image {
    order: -1;
    width: 100%;
  }

  .news-carousel {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 20px;
    align-items: center;
  }

  .news-item,
  .news3-page .news-item,
  .news3-page .news-grid .news-item {
    flex: 0 0 100%;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .news-thumb img,
  .news3-page .news-thumb img {
    height: 160px;
  }
}

    
    /* Filtres style premium */
    .filter-btn, .spot-tab {
      padding: 10px 24px;
      background-color: transparent;
      border: 2px solid var(--accent-primary);
      color: var(--accent-primary);
      border-radius: 50px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
      font-family: 'Montserrat', sans-serif;
    }
    
    .filter-btn.active,
    .filter-btn:hover,
    .spot-tab.active,
    .spot-tab:hover {
      background-color: var(--accent-primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(117, 128, 91, 0.2);
    }
    
.blog-grid,
.all-articles-grid,
.all-spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    gap: 30px;
    margin-bottom: 50px;
    -webkit-overflow-scrolling: touch;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.pagination button {
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.pagination button:hover,
.pagination button.active {
    background-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(117, 128, 91, 0.2);
}

.pagination span {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--text-primary);
}
    
    .blog-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out forwards;
      animation-delay: calc(var(--card-index) * 0.15s);
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(28, 28, 30, 0.06);
    }
    
    .blog-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      background: var(--light-khaki);
    }
    
    .blog-image {
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    
    .blog-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.2);
      transition: var(--transition);
    }
    
    .blog-card:hover .blog-image::before {
      background: rgba(0,0,0,0.1);
    }
    
    .blog-card.video .blog-image::after {
      content: "\f04b";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(75, 103, 76, 0.8);
      color: white;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .blog-card.video:hover .blog-image::after {
      background: var(--accent-primary);
      transform: translate(-50%, -50%) scale(1.1);
    }
    
    .blog-content {
      padding: 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .blog-category {
      display: inline-block;
      padding: 6px 16px;
      background-color: var(--light-khaki);
      color: var(--text-primary);
      font-size: 0.75rem;
      border-radius: 50px;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
    }
    
    .blog-title {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: var(--text-primary);
      line-height: 1.4;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .blog-card:hover .blog-title {
      color: var(--accent-primary);
    }
    
    .blog-excerpt {
      font-size: 0.95rem;
      color: var(--text-primary);
      opacity: 0.7;
      margin-bottom: 20px;
      line-height: 1.6;
      flex-grow: 1;
      font-family: 'Montserrat', sans-serif;
    }
    
    .blog-meta {
      font-size: 0.85rem;
      color: var(--text-primary);
      opacity: 0.6;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--pearl-gray);
      font-family: 'Montserrat', sans-serif;
    }
    
    /* Best Spots Section */
    #best-spots {
      position: relative;
      background: rgba(255, 255, 255, 0.5);
    }
    
    .spots-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 50px;
      gap: 12px;
      flex-wrap: wrap;
    }
    
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    -webkit-overflow-scrolling: touch;
}
    
    .spot-card {
      background-color: white;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out forwards;
      animation-delay: calc(var(--card-index) * 0.15s);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid rgba(28, 28, 30, 0.06);
    }
    
    .spot-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      background: var(--light-khaki);
    }
    
    .spot-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-20deg);
      transition: 0.75s;
      pointer-events: none;
      z-index: 1;
    }
    
    .spot-card:hover::before {
      left: 120%;
    }
    
    .spot-image {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
    }
    
    .spot-card:hover .spot-image {
      transform: scale(1.05);
    }
    
    .spot-rating {
      position: absolute;
      top: 16px;
      right: 16px;
      background-color: var(--accent-primary);
      color: white;
      padding: 6px 14px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.85rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      z-index: 1;
      font-family: 'Montserrat', sans-serif;
    }
    
    .spot-content {
      padding: 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .spot-title {
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: var(--text-primary);
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .spot-card:hover .spot-title {
      color: var(--accent-primary);
    }
    
    .spot-location {
      font-size: 0.95rem;
      color: var(--text-primary);
      opacity: 0.6;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      font-family: 'Montserrat', sans-serif;
    }
    
    .spot-location i {
      margin-right: 8px;
      color: var(--accent-secondary);
    }
    
    .spot-features {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: auto;
    }
    
    .spot-feature {
      background-color: rgba(236, 236, 236, 0.6);
      padding: 6px 14px;
      border-radius: 50px;
      color: var(--text-primary);
      font-size: 0.8rem;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .spot-card:hover .spot-feature {
      background-color: rgba(163, 187, 148, 0.2);
      color: var(--text-primary);
    }
    
    /* Services Section */
    #services {
      background-color: rgba(255, 255, 255, 0.5);
      position: relative;
    }
    
.services-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    -webkit-overflow-scrolling: touch;
}
    
    .service-card {
      background-color: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out forwards;
      animation-delay: calc(var(--card-index) * 0.15s);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid rgba(28, 28, 30, 0.06);
    }
    
    .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      background: var(--light-khaki);
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, var(--accent-primary) 0%, transparent 80%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }
    
    .service-card:hover::before {
      opacity: 0.15;
    }
    
    .service-icon {
      padding: 40px 0;
      background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    
    .service-icon::after {
      content: '';
      position: absolute;
      width: 200%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
      );
      top: 0;
      left: -200%;
      transform: skewX(-20deg);
      transition: all 0.6s ease;
    }
    
    .service-card:hover .service-icon::after {
      left: 100%;
    }
    
    .service-icon i {
      font-size: 3rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
      filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    }
    
    .service-card:hover .service-icon i {
      transform: scale(1.2) rotate(-5deg);
      color: var(--accent-warm);
    }
    
    .service-content {
      padding: 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }
    
    .service-title {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: var(--text-primary);
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .service-card:hover .service-title {
      color: var(--accent-primary);
    }
    
    .service-description {
      font-size: 0.95rem;
      color: var(--text-primary);
      opacity: 0.7;
      margin-bottom: 16px;
      line-height: 1.6;
      flex-grow: 1;
      font-family: 'Montserrat', sans-serif;
    }
    
    .providers-list {
      font-size: 0.85rem;
      color: var(--accent-primary);
      margin-bottom: 20px;
      font-style: italic;
      font-family: 'Montserrat', sans-serif;
    }
    
    .service-card .btn {
      align-self: flex-start;
      padding: 10px 20px;
      font-size: 0.85rem;
      margin-top: auto;
    }
    
    /* Shop Section */
    #shop {
      background-color: rgba(255, 255, 255, 0.5);
      position: relative;
    }
    
.products-carousel {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 30px;
    margin-bottom: 50px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-secondary) var(--light-khaki);
    -webkit-overflow-scrolling: touch;
}

/* Carousel layout for the all-spots page */
.spots-carousel {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 30px;
    margin-bottom: 50px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-secondary) var(--light-khaki);
    -webkit-overflow-scrolling: touch;
}

.spots-carousel::-webkit-scrollbar {
    height: 8px;
}

.spots-carousel::-webkit-scrollbar-track {
    background: var(--light-khaki);
    border-radius: 10px;
}

.spots-carousel::-webkit-scrollbar-thumb {
    background-color: var(--accent-secondary);
    border-radius: 10px;
}

.spots-carousel .spot-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

    
    .products-carousel::-webkit-scrollbar {
      height: 8px;
    }
    
    .products-carousel::-webkit-scrollbar-track {
      background: var(--light-khaki);
      border-radius: 10px;
    }
    
    .products-carousel::-webkit-scrollbar-thumb {
      background-color: var(--accent-secondary);
      border-radius: 10px;
    }
    
    .product-card {
      min-width: 280px;
      background-color: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
      position: relative;
      opacity: 0;
      animation: fadeInRight 0.8s ease-out forwards;
      animation-delay: calc(var(--card-index) * 0.1s);
      box-shadow: var(--card-shadow);
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(28, 28, 30, 0.06);
    }
    
    @keyframes fadeInRight {
      0% { 
        opacity: 0; 
        transform: translateX(20px); 
      }
      100% { 
        opacity: 1; 
        transform: translateX(0); 
      }
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }
    
    .product-image {
      height: 280px;
      overflow: hidden;
      position: relative;
      background: var(--pearl-gray);
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.05);
    }
    
    .product-content {
      padding: 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .product-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--text-primary);
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .product-card:hover .product-title {
      color: var(--accent-primary);
    }
    
    .product-price {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent-secondary);
      margin-bottom: 20px;
      font-family: 'Montserrat', sans-serif;
    }
    
    .product-btn {
      background: var(--accent-primary);
      color: white;
      padding: 12px 0;
      font-size: 0.9rem;
      border: none;
      border-radius: var(--border-radius-small);
      display: block;
      width: 100%;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
      font-weight: 600;
      margin-top: auto;
      box-shadow: 0 2px 4px rgba(75, 103, 76, 0.2);
      font-family: 'Montserrat', sans-serif;
    }
    
    .product-btn:hover {
      background: #3d5a3e;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(75, 103, 76, 0.3);
    }
    
    .shop-cta {
      text-align: center;
      margin-top: 40px;
    }
    
    /* Philosophy Section */
    .philosophy-section {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.5);
      position: relative;
    }
    
    .philosophy-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .philosophy-image {
      flex: 1;
      min-width: 300px;
      max-width: 450px;
    }
    
    .philosophy-image img {
      width: 100%;
      border-radius: var(--border-radius-large);
      box-shadow: var(--card-shadow-hover);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    
    .philosophy-image:hover img {
      transform: scale(1.02);
      box-shadow: 0 20px 40px rgba(28, 28, 30, 0.15);
    }
    
    .philosophy-content {
      flex: 2;
      min-width: 300px;
    }
    
    .philosophy-section .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--accent-primary);
      text-align: left;
    }
    
    .philosophy-section .section-title::after {
      left: 0;
      transform: none;
    }
    
    .philosophy-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-primary);
      opacity: 0.8;
      font-family: 'Montserrat', sans-serif;
    }
    
    .philosophy-text p {
      margin-bottom: 20px;
    }
    
    .philosophy-text strong {
      color: var(--accent-primary);
      font-weight: 600;
    }
    
    /* Newsletter Section */
    .newsletter {
      background: rgba(255, 255, 255, 0.5);
      padding: 80px 20px;
      margin: 0;
      position: relative;
      overflow: hidden;
    }
    
    .newsletter::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      top: -150px;
      right: -150px;
    }
    
    .newsletter::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
      bottom: -100px;
      left: -100px;
    }
    
    .newsletter-container {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .newsletter-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--text-primary);
      font-family: 'Montserrat', sans-serif;
    }
    
    .newsletter-desc {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: var(--text-primary);
      opacity: 0.8;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      font-family: 'Montserrat', sans-serif;
    }
    
    .newsletter-form {
      display: flex;
      max-width: 450px;
      margin: 0 auto;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .newsletter-input {
      flex: 1;
      min-width: 280px;
      padding: 14px 24px;
      border-radius: 50px;
      border: 2px solid rgba(0, 0, 0, 0.2);
      background: rgba(0, 0, 0, 0.05);
      color: var(--text-primary);
      font-size: 1rem;
      outline: none;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .newsletter-input:focus {
      background: rgba(0, 0, 0, 0.1);
      border-color: var(--text-primary);
    }
    
    .newsletter-input::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }
    
    .newsletter-btn {
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      background: var(--sandy-gold);
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      font-family: 'Montserrat', sans-serif;
    }
    
    .newsletter-btn:hover {
      background: #b3a07a;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* Footer */
    footer {
      background: var(--charcoal);
      padding: 80px 20px 30px;
      width: 100%;
      color: white;
      position: relative;
      z-index: 5;
    }
    
    .footer-columns {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 1200px;
      margin: 0 auto;
      gap: 50px;
    }
    
    .footer-col {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .footer-col h4 {
      font-size: 0.9rem;
      color: var(--sandy-gold);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      position: relative;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }
    
    .footer-col h4::after {
      content: '';
      position: absolute;
      width: 30px;
      height: 2px;
      background: var(--sandy-gold);
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-col a {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      margin: 2px 0;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }
    
    .footer-col a:hover {
      color: var(--sandy-gold);
      transform: translateX(3px);
    }
    
    .footer-logo {
      max-height: 80px;
      margin-bottom: 24px;
      transition: var(--transition);
    }
    
    .footer-logo:hover {
      transform: scale(1.05);
      opacity: 0.8;
    }
    
    /* Social Media Links - Style épuré */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px 0;
    }
    
    .social-links a {
      font-size: 1.3rem;
      color: var(--sandy-gold);
      transition: transform 0.4s ease, color 0.3s ease;
      display: inline-block;
    }
    
    .social-links a:hover {
      transform: scale(1.2) translateY(-3px);
      color: white;
    }
    
    .subscribe-link {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin-top: 12px;
      transition: color 0.3s ease;
      padding: 8px 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
    }
    
    .subscribe-link:hover {
      color: var(--sandy-gold);
      border-color: var(--sandy-gold);
      transform: none;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 40px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      font-family: 'Montserrat', sans-serif;
    }
    
    /* Back To Top */
    #backToTop { 
      position: fixed; 
      bottom: 30px; 
      right: 30px; 
      background: var(--accent-secondary); 
      border: none; 
      border-radius: 50%; 
      width: 48px; 
      height: 48px; 
      font-size: 1.1rem; 
      color: white; 
      display: none; 
      align-items: center; 
      justify-content: center; 
      cursor: pointer; 
      z-index: 10; 
      box-shadow: 0 4px 12px rgba(198, 179, 142, 0.3);
      transition: var(--transition);
    }
    
    #backToTop:hover { 
      background: var(--accent-primary); 
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(75, 103, 76, 0.3);
    }
    
    /* Media Queries */
    @media (max-width: 1024px) {
      .section-title {
        font-size: 2.0rem;
      }
      
      .section-subtitle {
        font-size: 1rem;
      }
      
      .blog-grid, .all-articles-grid, .all-spots-grid, .spots-grid, .services-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
      
      .rect-wrapper.square {
        width: 140px;
        height: 140px;
      }
    }
    
    /* Version Mobile améliorée */
    @media (max-width: 768px) {
      :root {
        --header-height: 70px;
      }
      
      /* Style spécial pour la hero section sur mobile */
      .hero {
        padding-top: 0;
        height: 100dvh;
        justify-content: flex-end;
        position: relative;
      }
      
      .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(to top, var(--champagne), transparent);
        z-index: 0;
        pointer-events: none;
      }
      
      .hero-content {
        padding-bottom: 40px;
        position: relative;
        z-index: 1;
      }
      
      .hero-category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        margin-bottom: 30px;
      }
      
      .rect-wrapper.square {
        width: 100%;
        height: 130px;
        border-radius: var(--border-radius);
      }
      
      .label-overlay {
        padding: 25px 0 12px;
        font-size: 0.9rem;
      }
      
      /* Navigation mobile améliorée */
      header {
        padding: 10px 0;
        background: rgba(253, 247, 240, 0.98);
      }
      
      header .container {
        padding: 0 10px;
      }
      
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100dvh;
        width: 80%;
        background: var(--champagne);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 50px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
      }
      
      .nav-links.active {
        right: 0;
      }
      
      .nav-links a {
        margin: 2px 0;
        font-size: 1.2rem;
        width: 100%;
        color: var(--text-primary);
        padding: 6px 0;
        border-bottom: 1px solid var(--pearl-gray);
      }
      
      .nav-links a:last-child {
        border-bottom: none;
      }
      
      .nav-links a i {
        width: 30px;
        text-align: center;
        margin-right: 10px;
        font-size: 1.2rem;
      }
      
      /* Bouton menu mobile amélioré */
      .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
      }
      
      /* Conversion des grilles en défilement horizontal sur mobile */
      .blog-grid, .all-articles-grid, .all-spots-grid, .spots-grid, .services-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        margin: 0 -20px 40px;
        padding-left: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
      }

      .blog-grid::-webkit-scrollbar,
      .all-articles-grid::-webkit-scrollbar,
      .all-spots-grid::-webkit-scrollbar,
      .spots-grid::-webkit-scrollbar,
      .services-container::-webkit-scrollbar {
        display: none;
      }

      .blog-card, .spot-card, .service-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
        margin-right: 20px;
      }
      
      /* Modifications pour la section filosofie */
      .philosophy-container {
        flex-direction: column;
      }
      
      .philosophy-image {
        order: -1;
        max-width: 100%;
      }
      
      .philosophy-content {
        text-align: center;
      }
      
      .philosophy-section .section-title {
        text-align: center;
      }
      
      .philosophy-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      /* Footer adapté pour mobile */
      .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      #backToTop {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
      }
      
      /* Hide hero mini cards on mobile */
      .hero-category-grid {
        display: none !important;
      }
      
      /* Increased spacing and scaling in Hero section */
      .hero-logo-wrapper {
        margin-bottom: 160px !important;
        transform: scale(1.2);
      }
      
      .hero .btn {
        margin-top: 20px !important;
        width: 60% !important;
        max-width: 220px !important;
        font-size: 0.63rem;
        padding: 10.5px 24.5px;
        background: rgba(253, 247, 240, 0.3);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        color: var(--text-primary);
        opacity: 0.9;
      }

      .hero .btn:hover {
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        transform: translateY(-3px) scale(1.02);
      }
      

      
      .hide-banner-mobile {
        display: none !important;
      }
      
      header {
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }
      
      header nav a img {
        display: none !important;
      }
      
      .hide-on-mobile {
        display: none !important;
      }
      
      .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding-bottom: 20px;
      }
      
      .mobile-social-icons a img {
        width: 28px;
        height: 28px;
        filter: brightness(0) invert(1);
      }
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 1.6rem;
      }
      
      .hero-category-grid {
        gap: 15px;
      }
      
      .rect-wrapper.square {
        width: 140px;
        height: 140px;
      }
      
      .label-overlay {
        font-size: 0.9rem;
        padding: 35px 0 12px;
      }
      
      .blog-filter, .spots-tabs {
        gap: 8px;
      }
      
      .filter-btn, .spot-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
      }
      
      .blog-card, .spot-card, .service-card {
        flex: 0 0 260px;
      }

      .pagination button {
        padding: 8px 16px;
        font-size: 0.85rem;
      }

      .newsletter-title {
        font-size: 2rem;
      }
      
      .newsletter-desc {
        font-size: 0.95rem;
      }
    }
    
@media (min-width: 769px) {
  header {
    background: rgba(253, 247, 240, 0.98) !important;
    box-shadow: 0 1px 0 rgba(28, 28, 30, 0.1) !important;
  }
  /* Larger hero logo on desktop */
  .hero-logo {
    max-width: 300px;
  }
}
    
    /* Cookie Consent Banner - Style premium */
    #cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      color: var(--text-primary);
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      z-index: 9999;
      transform: translateY(100%);
      transition: transform 0.5s ease-in-out;
      flex-wrap: wrap;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
      font-family: 'Montserrat', sans-serif;
    }
    
    #cookie-consent.show {
      transform: translateY(0);
    }
    
    #cookie-consent button {
      border: none;
      padding: 10px 24px;
      margin-left: 10px;
      border-radius: 50px;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
      font-family: 'Montserrat', sans-serif;
    }
    
    #cookie-consent button:first-of-type {
      background: var(--accent-primary);
      color: white;
    }
    
    #cookie-consent button:first-of-type:hover {
      background: #3d5a3e;
      transform: translateY(-2px);
    }
    
    #cookie-consent button:last-of-type {
      background: transparent;
      color: var(--text-primary);
      border: 2px solid var(--pearl-gray);
    }
    
    #cookie-consent button:last-of-type:hover {
      background: var(--pearl-gray);
    }
    
    #cookie-consent a {
      color: var(--accent-primary);
      text-decoration: underline;
      margin-left: 5px;
    }
    
    @media (max-width: 768px) {
      #cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
      }
      #cookie-consent button {
        margin-top: 12px;
        margin-left: 0;
      }
    }
.barking-news-section {
  background-color: #f9f7f3;
  padding: 60px 20px;
}

.barking-news-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

.dog-news-image img {
  width: 300px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.news-content {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 600px) {
  .news3-page .news-content {
    min-width: 0;
  }
}

.news-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.news-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.article-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 260px;
  scroll-snap-align: start;
  font-size: 1rem;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  background: #eee;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 5px;
}

.news-btn-wrapper {
  margin-top: 30px;
  text-align: left;
}

.news-btn-wrapper .btn {
  padding: 10px 22px;
  border: 1px solid #1d1d1d;
  background: transparent;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.news-btn-wrapper .btn:hover {
  background-color: #1d1d1d;
  color: white;
}

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

  .news-btn-wrapper {
    text-align: center;
  }

  .article-carousel {
    justify-content: center;
  }
}
.news3-page .news3-container {
  max-width: 1600px;
}
.news3-page .news3-photo {
  flex: 0 0 480px;
  display: flex;
  justify-content: center;
}
.news3-page .news3-photo img {
  box-shadow: none;
}
.news3-page .news-item {
  text-align: center;
  flex: 0 0 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(28, 28, 30, 0.06);
}

.news3-page .news-grid .news-item {
  flex: none;
}

.news3-page .news-grid .news-thumb img {
  height: 160px;
}

.news3-page .news-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: var(--light-khaki);
}

.news3-page .news-thumb img {
  height: 200px;
}
.news3-page .read-more-link {
  display: block;
  font-size: 0.75rem;
  margin-top: 6px;
  color: var(--accent-primary);
  font-style: italic;
}
.news3-page .news3-btn {
  padding: 6px 14px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .news3-page .news3-photo {
    flex: 0 0 100%;
  }
}

/* Override mobile layout to keep carousel on News page */
@media (max-width: 768px) {
  .news3-page .news-carousel {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
    align-items: stretch;
  }

  .news3-page .news-item {
    flex: 0 0 80%;
    max-width: 300px;
  }
}
/* Spot modal styles */

.rating-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
}

.star {
    color: #FFD700;
    margin-right: 4px;
}

.rating-number {
    color: #333;
}

.filters-container {
    text-align: center;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #75805b;
    background: white;
    color: #75805b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #75805b;
    color: white;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        flex: 1 1 calc(50% - 10px);
        width: auto;
    }
}

/* Flèches de navigation galerie */
.gallery-arrow,
.prev-arrow,
.next-arrow {
    background-color: #75805b !important;
    border-color: #75805b !important;
    color: white !important;
}

.gallery-arrow:hover,
.prev-arrow:hover,
.next-arrow:hover {
    background-color: #7a9f7a !important;
}

.listing-header {
    margin-bottom: 20px;
}

.listing-rating {
    font-size: 16px;
    margin-top: 8px;
}

.listing-rating .star {
    color: #75805b;
    margin-right: 6px;
}

.listing-rating .rating-number {
    font-weight: bold;
    margin-right: 8px;
}

.listing-rating .reviews-count {
    color: #666;
}

.location-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.coordinates {
    flex: 1;
    margin-right: 20px;
}

.mini-map {
    position: relative;
    width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #75805b;
}

.mini-map:hover {
    border-color: #7a9f7a;
}

.map-container {
    box-shadow: 0 2px 8px rgba(117, 128, 91, 0.15);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 4px 12px rgba(117, 128, 91, 0.25);
    transform: translateY(-1px);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    font-size: 10px;
    padding: 2px;
}

@media (max-width: 768px) {
    .location-section {
        flex-direction: column;
    }
    .mini-map {
        margin-top: 15px;
        align-self: center;
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .map-container {
        height: 180px !important;
        margin: 15px 0;
    }

    #mapOverlay > div {
        width: 95% !important;
        height: 85% !important;
    }

    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 10px !important;
    }

    button[style*="padding: 10px 20px"] {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 150px !important;
    }

    #mapOverlay > div {
        width: 98% !important;
        height: 90% !important;
    }
}

#map {
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius);
  margin-top: 20px;
}
