/** Shopify CDN: Minification failed

Line 12306:13 Expected ":"

**/
:root {
  --dominant-bg: #E6FCF5; /* very light mint/white */
  --secondary-bg: #234236; /* deep green */
  --accent-bg: #3BCEAC;   /* soft green accent */
  --primary-green: #16a34a;
  --secondary-green: #234236;
  --accent-green: #3BCEAC;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background: var(--dominant-bg);
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --text-dark: #1A1A1A;
}

/* Reset et base */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0 !important;
  padding: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dominant-bg) !important;
}

body, .main-content, .page-width, .shopify-section, .shopify-section-header, .shopify-section--main, .wrapper, .content, .container {
  background: transparent !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav a:hover {
  color: var(--primary-green);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Dropdown menus */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--background);
  color: var(--primary-green);
}

/* Header icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--background);
  color: var(--primary-green);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 4px 20px rgba(35,66,54,0.10);
  color: #222;
  padding: 0;
  overflow-y: auto;
  display: none;
}
.mobile-menu.active, .mobile-menu.open {
  display: block;
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active::before {
  content: 'DEBUG MENU DRAWER';
  display: block;
  background: #e00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 1px;
}
.mobile-menu-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #16a34a;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #374151;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: #234236;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f3f4f6;
  color: #16a34a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--background);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}

/* Hero section */
.hero, .hero-homepage, .main-hero {
  background: linear-gradient(135deg, var(--dominant-bg) 0%, var(--secondary-bg) 100%);
  color: var(--text-primary);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero-homepage::before, .main-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Product grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid.grid-view .product-card {
  width: 320px;
  max-width: 100%;
  margin: 0;
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
}

.product-grid.list-view {
  flex-direction: column;
  align-items: center;
}

.product-grid.list-view .product-card {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding: 1.5rem 2.5rem;
}

.product-grid.list-view .product-image {
  width: 180px;
  height: 180px;
  min-width: 140px;
  margin-right: 2rem;
}

.product-grid.list-view .product-info {
  flex: 1;
  margin-top: 0;
}

.view-toggle-bar {
  margin-bottom: 2rem;
  text-align: center;
}

.view-toggle-btn {
  background: #f3f3f3;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.6em 1.4em;
  margin: 0 0.3em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.15s;
  outline: none;
}

.view-toggle-btn.active, .view-toggle-btn:focus {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .product-grid {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .product-grid.grid-view .product-card {
    width: 98vw;
    max-width: 98vw;
    flex: 1 1 98vw;
  }
  .product-grid.list-view .product-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
    gap: 1rem;
  }
  .product-grid.list-view .product-image {
    width: 100%;
    height: 140px;
    margin-right: 0;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #16a34a;
    border-radius: 8px;
    padding: 8px;
    margin-right: 8px;
    z-index: 2100;
  }
  .header-nav {
    display: none !important;
  }
}

.product-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--background);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Collection filters */
.filters {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

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

.filter-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.pagination a {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.pagination a:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.pagination .current {
  background: var(--primary-green);
  color: white;
  border: 1px solid var(--primary-green);
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: var(--border-radius); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.bg-primary { background: var(--primary-green); }
.bg-secondary { background: var(--secondary-green); }
.bg-surface { background: var(--surface); }

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

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    z-index: 2100 !important;
    position: relative;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    z-index: 2100 !important;
    position: relative;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.icon-btn:focus,
nav a:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Loading states */
.btn[aria-busy="true"] {
  position: relative;
  color: transparent;
}

.btn[aria-busy="true"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.products-grid.is-loading, .product-grid.is-loading, .collection-products.is-loading {
  position: relative;
  opacity: 0.5;
  pointer-events: none;
}
.products-grid.is-loading::after, .product-grid.is-loading::after, .collection-products.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 5px solid #16a34a;
  border-top: 5px solid #e5e7eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 10;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  position: relative;
  max-height: 48px;
  transition: max-height 0.3s;
}
.filter-tabs.expanded {
  max-height: 500px;
  flex-wrap: wrap;
  overflow-x: visible;
}
.filter-tabs::-webkit-scrollbar {
  height: 6px;
}
.show-more-filters {
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.5em 1.2em;
  margin-left: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  cursor: pointer;
  transition: background 0.2s;
}
.show-more-filters:hover {
  background: #15803d;
}
@media (max-width: 900px) {
  .filter-tabs {
    gap: 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .filter-tabs {
    gap: 0.5rem;
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
    max-height: 48px;
  }
  .filter-tabs.expanded {
    max-height: 500px;
  }
  .filter-tabs button {
    min-width: 90px;
    font-size: 1rem;
    padding: 0.7em 0.8em;
  }
  .show-more-filters {
    width: 100%;
    margin: 0.5rem 0 0 0;
    display: block;
  }
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.5em 1.2em;
  margin-right: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s;
  z-index: 20;
}
.filter-toggle-btn svg {
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
}
.filter-toggle-btn.active, .filter-toggle-btn:focus {
  background: #16a34a;
  color: #fff;
}

.filters-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 2em 1.5em;
  display: none;
}
.filters-btn {
  border: 1px solid #4caf50;
  background: #fff;
  color: #4caf50;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  cursor: pointer;
}
.close-btn {
  background: none;
  border: none;
  color: #4caf50;
  font-size: 1.5em;
  position: absolute;
  top: 1em; right: 1em;
  cursor: pointer;
}

/* Masquer les labels 'Trier par :' et 'Vue :' */
.sort-options label,
.view-toggle span {
  display: none !important;
}

/* Correction bouton vue grille/liste */
.view-toggle {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
.view-btn {
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 8px;
  font-size: 1.3em;
  padding: 0.3em 0.7em;
  margin-left: 0.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.view-btn.active, .view-btn:focus {
  background: #16a34a;
  color: #fff;
}

/* Masquer les filtres sur la page principale, ne les afficher que dans le drawer */
.category-filters, .subcategory-filters, .price-filters {
  display: none !important;
}
.filters-drawer .category-filters,
.filters-drawer .subcategory-filters,
.filters-drawer .price-filters {
  display: block !important;
  margin-bottom: 2rem;
}

.sort-controls, .kits-sort-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.sort-controls .controls-wrapper, .kits-sort-controls .controls-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.filter-toggle-btn, .sort-controls select, .view-toggle .view-btn {
  height: 44px;
  min-width: 120px;
  border-radius: 999px;
  border: 2px solid #16a34a;
  background: #fff;
  color: #16a34a;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.5em 1.2em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.filter-toggle-btn.active, .sort-controls select:focus, .view-toggle .view-btn.active, .view-toggle .view-btn:focus {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.filter-toggle-btn:hover, .sort-controls select:hover, .view-toggle .view-btn:hover {
  background: #e6f9ee;
  color: #15803d;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px #16a34a33;
}
.view-toggle {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.filters-drawer .filter-group-label {
  display: inline-block;
  background: #e6f9ee;
  color: #16a34a;
  font-size: 0.95em;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.2em 1em;
  margin-bottom: 0.5em;
  margin-left: 0.2em;
}
.filters-drawer .filter-group {
  margin-bottom: 2.2rem;
  text-align: center;
}

/* Tooltip sur les boutons de vue */
.view-toggle .view-btn[title] {
  position: relative;
}
.view-toggle .view-btn[title]:hover::after,
.view-toggle .view-btn[title]:focus::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-size: 0.95em;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}

/* Barre de contrôles centrée et harmonisée */
.sort-controls .controls-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  padding: 0.7rem 0;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px rgba(22,163,74,0.06);
  max-width: 600px;
}

.sort-controls .filter-toggle-btn,
.sort-controls .sort-toggle-btn,
.sort-controls .view-toggle .view-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.3em;
  border: 1.5px solid var(--primary-green, #16a34a);
  background: #fff;
  color: var(--primary-green, #16a34a);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  min-width: 0;
  height: 44px;
  box-shadow: 0 2px 8px rgba(22,163,74,0.08);
  transition: background 0.15s, color 0.15s, border 0.15s;
}

.sort-controls .sort-toggle-btn {
  border-color: #e9ecef;
  color: var(--text-primary, #222);
  font-weight: 500;
}

.sort-controls .filter-toggle-btn.active,
.sort-controls .filter-toggle-btn:focus,
.sort-controls .filter-toggle-btn:hover,
.sort-controls .view-toggle .view-btn.active,
.sort-controls .view-toggle .view-btn:focus,
.sort-controls .view-toggle .view-btn:hover {
  background: var(--primary-green, #16a34a);
  color: #fff;
  border-color: var(--primary-green, #16a34a);
}

.sort-controls .sort-toggle-btn:focus,
.sort-controls .sort-toggle-btn:hover {
  background: #f3fef7;
  color: var(--primary-green, #16a34a);
  border-color: var(--primary-green, #16a34a);
}

.sort-controls .view-toggle .view-btn {
  background: #fff;
  color: var(--primary-green, #16a34a);
  border: 1.5px solid var(--primary-green, #16a34a);
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.sort-controls .view-toggle .view-btn svg {
  display: block;
}

.sort-controls .view-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-controls .sort-options {
  position: relative;
  display: flex;
  align-items: center;
}

.sort-controls .sort-options select {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 140px;
  z-index: 10;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  font-size: 1em;
  padding: 0.7em 1.2em;
  color: var(--text-primary, #222);
}

@media (max-width: 700px) {
  .sort-controls .controls-wrapper {
    max-width: 98vw;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
  }
  .sort-controls .filter-toggle-btn,
  .sort-controls .sort-toggle-btn,
  .sort-controls .view-toggle .view-btn {
    padding: 0.5em 0.7em;
    font-size: 0.98em;
    min-width: 36px;
    height: 38px;
  }
}

.cart-wrapper {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0 4rem 0;
  background: var(--background, #f9fafb);
}
.cart-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--text-primary, #1f2937);
  text-align: center;
}
.cart-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cart-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44,204,113,0.10), 0 1.5px 8px rgba(44,204,113,0.07);
  padding: 2rem 2rem 2rem 1.5rem;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
  position: relative;
  min-height: 160px;
  will-change: transform, box-shadow;
}
.cart-item--3d:hover, .cart-item--3d:focus {
  transform: scale(1.025) rotateY(2deg) translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,204,113,0.18), 0 2px 12px rgba(44,204,113,0.10);
  z-index: 2;
}
.cart-item__image {
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}
.cart-item__image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  background: #f3f3f3;
}
.cart-item__info {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-item__title {
  font-weight: 700;
  color: #222;
  text-decoration: none;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
  display: inline-block;
}
.cart-item__title:hover {
  color: #2ecc71;
}
.cart-item__variant {
  color: #888;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.cart-item__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #222;
}
.cart-item__unit-price {
  font-weight: 500;
  color: #059669;
}
.cart-item__line-price {
  font-weight: 700;
  color: #1f2937;
  margin-left: 0.5rem;
}
.cart-item__qty-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.cart-item__quantity-input {
  width: 54px;
  text-align: center;
  font-size: 1.08rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  background: #fff;
  font-weight: 600;
  transition: border 0.2s;
}
.cart-item__quantity-input:focus {
  border: 1.5px solid #2ecc71;
  outline: none;
}
.cart-btn {
  border: none;
  background: #eafaf1;
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 1px 4px rgba(44,204,113,0.07);
  outline: none;
}
.cart-btn:active {
  transform: scale(0.93);
}
.cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-btn--qty:hover, .cart-btn--qty:focus {
  background: #2ecc71;
  color: #fff;
}
.cart-btn--remove {
  background: #ffeaea;
  color: #e74c3c;
  border-radius: 8px;
  margin-left: 1rem;
  padding: 0.3rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(231,76,60,0.07);
}
.cart-btn--remove:hover, .cart-btn--remove:focus {
  background: #e74c3c;
  color: #fff;
}
.cart-footer {
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.cart-total-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}
.cart-total-label {
  color: #888;
  font-weight: 500;
}
.cart-total-value {
  color: #059669;
  font-weight: 800;
  font-size: 1.35rem;
}
.cart-checkout-btn {
  display: inline-block;
  background: linear-gradient(90deg, #16a34a 0%, #10b981 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  margin-top: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover, .cart-checkout-btn:focus {
  background: linear-gradient(90deg, #10b981 0%, #16a34a 100%);
  box-shadow: 0 4px 16px rgba(44,204,113,0.18);
  transform: scale(1.04);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(44,204,113,0.07);
  padding: 3rem 2rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .cart-list, .cart-footer {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
    min-height: unset;
  }
  .cart-item__image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .cart-footer {
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .cart-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .cart-item__image img {
    width: 70px;
    height: 70px;
  }
  .cart-item__title {
    font-size: 1rem;
  }
  .cart-checkout-btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.cart-item--fadeout {
  opacity: 0;
  transform: scale(0.95) translateY(30px) rotateY(8deg);
  transition: opacity 0.45s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.cart-count.cart-badge-pop {
  animation: cart-badge-pop 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes cart-badge-pop {
  0% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-8deg); }
  60% { transform: scale(0.92) rotate(6deg); }
  100% { transform: scale(1); }
}

.cart-checkout-btn--pop {
  animation: checkout-pop 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes checkout-pop {
  0% { transform: scale(1); box-shadow: 0 2px 8px rgba(44,204,113,0.10); }
  40% { transform: scale(1.07) rotate(-2deg); box-shadow: 0 8px 24px rgba(44,204,113,0.18); }
  100% { transform: scale(1); box-shadow: 0 2px 8px rgba(44,204,113,0.10); }
}

.cart-empty--modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 340px;
  max-width: 380px;
  margin: 3rem auto 0 auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(44,204,113,0.10), 0 1.5px 8px rgba(44,204,113,0.07);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  animation: cart-empty-fadein 0.7s cubic-bezier(.4,0,.2,1);
}
.cart-empty__illustration {
  font-size: 4.5rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(44,204,113,0.10));
  animation: cart-emoji-bounce 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes cart-emoji-bounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.08); }
}
.cart-empty__message {
  font-size: 1.25rem;
  color: #222;
  text-align: center;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.cart-empty__subtitle {
  display: block;
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
  margin-top: 0.5rem;
}
.cart-empty__cta {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  padding: 0.9rem 2.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cart-empty__cta:hover, .cart-empty__cta:focus {
  background: linear-gradient(90deg, #10b981 0%, #16a34a 100%);
  box-shadow: 0 4px 16px rgba(44,204,113,0.18);
  transform: scale(1.04);
  color: #fff;
}
@keyframes cart-empty-fadein {
  from { opacity: 0; transform: scale(0.97) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 600px) {
  .cart-empty--modern {
    min-width: 0;
    max-width: 98vw;
    padding: 2.2rem 0.7rem 1.5rem 0.7rem;
  }
  .cart-empty__illustration {
    font-size: 3rem;
  }
  .cart-empty__message {
    font-size: 1.05rem;
  }
}

.product-card-modern {
  position: relative;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,204,113,0.10);
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
  perspective: 800px;
  overflow: visible;
  animation: product-card-fadein 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes product-card-fadein {
  from { opacity: 0; transform: scale(0.97) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.product-card-modern:active {
  transform: scale(0.98);
}
.product-card-modern .product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 0.8rem;
}
.product-card__detail-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.7em 1.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: opacity 0.25s, transform 0.25s, background 0.2s, color 0.2s;
  z-index: 2;
  pointer-events: none;
}
.product-card-modern:hover .product-card__detail-btn,
.product-card-modern:focus-within .product-card__detail-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.product-card__detail-btn:hover, .product-card__detail-btn:focus {
  background: #16a34a;
  color: #fff;
}
.product-info {
  text-align: center;
  margin-top: 1.1rem;
  width: 100%;
}
.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  min-height: 2.2em;
}
.product-prices {
  margin-bottom: 0.7rem;
}
.product-price--compare {
  color: #888;
  text-decoration: line-through;
  font-size: 0.98em;
  margin-right: 0.5em;
}
.product-price {
  color: #16a34a;
  font-size: 1.15em;
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 0.7em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.7em;
}
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1em;
  border-radius: 999px;
  padding: 0.7em 1.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  margin: 0 0.1em;
}
.btn--add-to-cart {
  background: #16a34a;
  color: #fff;
}
.btn--add-to-cart:hover, .btn--add-to-cart:focus {
  background: #10b981;
  color: #fff;
  transform: scale(1.06);
}
.btn--buy-now {
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
}
.btn--buy-now:hover, .btn--buy-now:focus {
  background: #16a34a;
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .product-card-modern .product-image {
    height: 140px;
  }
  .product-info h3 {
    font-size: 1rem;
  }
}

/* --- NAVBAR GÉNÉRALE --- */
.header-wrapper,
.navbar {
  background: linear-gradient(90deg, #c9fff1, #b7e9ff);
  padding: 1.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom-left-radius: 40% 10%;
  border-bottom-right-radius: 40% 10%;
  position: relative;
  z-index: 20;
}

/* --- BOUTONS DE MENU --- */
.navbar .menu-link {
  background-color: #ffffff;
  color: #1B1B1B;
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar .menu-link:hover {
  background-color: #45c881;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- ICÔNES SHOP + COMPTE --- */
.navbar .icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.6);
  color: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.8rem;
  transition: all 0.3s ease;
}

.navbar .icon-button:hover {
  transform: scale(1.1);
  background-color: rgba(255,255,255,0.8);
}

/* --- MENU BURGER (Mobile) --- */
.burger-menu {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .burger-menu {
    display: none;
  }
}

/* JS burger menu (mobile) */
.navbar {
  display: none;
}
.navbar.open {
  display: flex;
  flex-direction: column;
}

/* NAVIGATION CENTRALE - Toujours au-dessus de la vague */
.nav-center {
  position: absolute;
  left: 50%;
  top: 62%; /* Ajuste pour centrer dans la vague, modifie si besoin */
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1.2rem;
  z-index: 50;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .nav-center {
    display: none !important;
  }
}

.nav-center a {
  border-radius: 9999px;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 1.7rem;
  background: #fff;
  color: #27A745;
  border: 2px solid #27A745;
  box-shadow: 0 2px 8px rgba(39,167,69,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  text-shadow: none;
  font-style: normal;
  white-space: nowrap;
  outline: none;
}
.nav-center a:hover,
.nav-center a:focus {
  background: #27A745;
  color: #fff;
  border-color: #27A745;
  box-shadow: 0 4px 16px rgba(39,167,69,0.13);
  transform: scale(1.05) translateY(-2px);
  text-decoration: none;
  outline: 2px solid #27A745;
  outline-offset: 2px;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: absolute;
  right: 4.5rem;
  top: 48px;
  z-index: 30;
}
@media (max-width: 767px) {
  .icon-group {
    right: 2rem;
    top: 44px;
  }
}
.icon-btn {
  background: #3BCEAC;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(44,204,113,0.13), 0 1.5px 8px rgba(0,0,0,0.10);
  position: relative;
  border: none;
  outline: none;
}
.icon-btn:hover, .icon-btn:focus {
  background: #21b18a;
  box-shadow: 0 6px 24px rgba(44,204,113,0.18), 0 2px 8px rgba(0,0,0,0.13);
  transform: scale(1.09);
}
.icon-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.mobile-menu-toggle {
  position: absolute;
  top: 18px;
  left: 1rem;
  z-index: 9999;
  display: none;
  background: none;
  border: none;
}
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .icon-group {
    right: 2rem;
  }
  .header,
  .header-bg-gradient,
  .mobile-menu,
  .logo-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
    border-top: none !important;
  }
}
.header-container {
  position: relative;
  z-index: 10;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-top: 32px;
}

.header-bg-gradient, .header-container {
  box-shadow: none !important;
  border: none !important;
  background: none !important;
  background-color: transparent !important;
}
.header-bg-gradient {
  background: linear-gradient(90deg, #ADEFD1FF 20%, var(--secondary-green) 80%) !important;
  width: 100vw;
  max-width: 100vw;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}
.logo-wrapper {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 120px;
}
@media (max-width: 767px) {
  .logo-wrapper {
    justify-content: flex-start;
    padding-left: 1rem;
  }
}

/* HERO - Raffinement pro */
.hero-section h1, .hero h1, .main-hero h1 {
  color: var(--secondary-green);
  text-shadow: 0 2px 12px rgba(35,66,54,0.08);
  font-size: 2.7rem;
  font-weight: 800;
}
.hero-section .button, .hero .button, .main-hero .button {
  background: linear-gradient(90deg, var(--accent-orange) 80%, var(--accent-beige));
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(249,168,37,0.10);
  padding: 0.9rem 2.2rem;
  font-size: 1.13rem;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  border: none;
  outline: none;
}
.hero-section .button:hover, .hero .button:hover, .main-hero .button:hover {
  background: var(--secondary-green);
  color: var(--accent-beige);
  box-shadow: 0 8px 32px rgba(35,66,54,0.13);
  transform: scale(1.06) translateY(-2px);
}
.hero-section .button:focus, .hero .button:focus, .main-hero .button:focus {
  box-shadow: 0 0 0 3px var(--accent-orange), 0 8px 32px rgba(249,168,37,0.13);
}

/* FOOTER - Raffinement pro */
.footer, .site-footer {
  background: var(--secondary-green);
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
}
.footer a, .site-footer a {
  color: var(--accent-beige);
  transition: color 0.2s, text-decoration 0.2s;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer a:hover, .site-footer a:hover, .footer a:focus, .site-footer a:focus {
  color: var(--accent-orange);
  border-bottom: 1.5px solid var(--accent-orange);
  text-decoration: underline wavy var(--accent-orange) 1.5px;
}

/* ACCESSIBILITÉ & TRANSITIONS */
.button, .btn-primary, .cta, .nav-center a, .footer a, .site-footer a {
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  outline: none;
}
.button:focus, .btn-primary:focus, .cta:focus, .nav-center a:focus {
  box-shadow: 0 0 0 3px var(--accent-orange);
}

/* BOUTONS PREMIUM GLOBAUX */
.button, .btn, .btn-primary, .cta, .shopify-payment-button__button, input[type="submit"], button[type="submit"] {
  background: #fff;
  color: var(--secondary-green);
  border: 2px solid var(--secondary-green);
  border-radius: 16px;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 2px 18px 0 rgba(35,66,54,0.10);
  letter-spacing: 0.01em;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  outline: none;
  position: relative;
  cursor: pointer;
}
.button:hover, .btn:hover, .btn-primary:hover, .cta:hover, .shopify-payment-button__button:hover, input[type="submit"]:hover, button[type="submit"]:hover,
.button:focus, .btn:focus, .btn-primary:focus, .cta:focus, .shopify-payment-button__button:focus, input[type="submit"]:focus, button[type="submit"]:focus {
  background: linear-gradient(90deg, #3BCEAC 80%, var(--accent-beige));
  color: #fff;
  border-color: #3BCEAC;
  box-shadow: 0 12px 36px rgba(59,206,172,0.18), 0 0 0 3px #3BCEAC;
  transform: scale(1.09) translateY(-3px);
  text-decoration: none;
}

@media (max-width: 767px) {
  .header,
  .header-bg-gradient,
  .mobile-menu,
  .logo-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
    border-top: none !important;
  }
}

/* Styles supplémentaires pour la page Accessoires */
.accessoires-product-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.accessoires-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

/* Amélioration des animations pour les cartes accessoires */
.accessoires-product-card .product-image__main {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-product-card:hover .product-image__main {
  transform: scale(1.1);
}

/* Styles pour les badges des accessoires */
.product-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--best-seller {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.badge--eco {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.badge--new {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.badge--sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Amélioration des filtres pour les accessoires */
.accessoires-filters .filter-option {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-filters .filter-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accessoires-filters .filter-option.active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.2);
}

/* Amélioration du hero pour les accessoires */
.accessoires-hero__background {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .accessoires-hero__background {
    background-attachment: scroll;
  }
}

/* Amélioration des boutons pour les accessoires */
.accessoires-product-card .btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-product-card .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation pour les recommandations */
.accessoires-recommendations .accessoires-product-card {
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.accessoires-recommendations .accessoires-product-card:nth-child(1) { animation-delay: 0.1s; }
.accessoires-recommendations .accessoires-product-card:nth-child(2) { animation-delay: 0.2s; }
.accessoires-recommendations .accessoires-product-card:nth-child(3) { animation-delay: 0.3s; }
.accessoires-recommendations .accessoires-product-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Amélioration de l'accessibilité */
.accessoires-product-card:focus-within {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.accessoires-product-card .product-title-link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Styles pour les états de chargement */
.accessoires-grid.is-loading {
  position: relative;
  min-height: 400px;
}

.accessoires-grid.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Amélioration de la pagination */
.accessoires-grid .pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.accessoires-grid .pagination-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-grid .pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive improvements */
@media (max-width: 480px) {
  .accessoires-product-card {
    margin-bottom: 1.5rem;
  }
  
  .accessoires-product-card:hover {
    transform: translateY(-4px);
  }
  
  .product-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

/* Styles supplémentaires pour la page Kits */
.kit-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  position: relative;
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-green);
}

/* Amélioration des badges pour les kits */
.kit-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--top-sales {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.badge--ultra-light {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.badge--eco {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.badge--new {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.badge--sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Amélioration des filtres pour les kits */
.kits-filters .filter-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kits-filters .filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kits-filters .filter-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.2);
}

/* Amélioration du hero pour les kits */
.kits-hero__background {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .kits-hero__background {
    background-attachment: scroll;
  }
}

/* Amélioration des cartes d'usage */
.usage-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Amélioration du comparateur */
.comparator-table {
  border-radius: 12px;
  overflow: hidden;
}

.comparator-header-cell {
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
}

.comparator-header-cell:first-child {
  background: var(--text-primary);
}

/* Animation pour les cartes de kits */
.kit-card {
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.kit-card:nth-child(1) { animation-delay: 0.1s; }
.kit-card:nth-child(2) { animation-delay: 0.2s; }
.kit-card:nth-child(3) { animation-delay: 0.3s; }
.kit-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Amélioration de l'accessibilité pour les kits */
.kit-card:focus-within {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.kit-card .kit-title:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Styles pour les états de chargement des kits */
.kits-grid.is-loading {
  position: relative;
  min-height: 400px;
}

.kits-grid.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Amélioration de la pagination pour les kits */
.kits-grid .pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.kits-grid .pagination-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kits-grid .pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive improvements pour les kits */
@media (max-width: 480px) {
  .kit-card {
    margin-bottom: 1.5rem;
  }
  
  .kit-card:hover {
    transform: translateY(-4px);
  }
  
  .kit-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .usage-card {
    padding: 1.5rem;
  }
  
  .comparator-table-wrapper {
    font-size: 0.8rem;
  }
}

/* Amélioration des statistiques des kits */
.kit-stat {
  transition: all 0.2s ease;
}

.kit-stat:hover {
  transform: scale(1.05);
}

.kit-stat.savings {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

/* Amélioration des produits dans les kits */
.kit-product {
  transition: all 0.2s ease;
}

.kit-product:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(4px);
}

/* Amélioration des actions des kits */
.kit-action-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-action-btn:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-1px);
}

/* Amélioration du CTA principal des kits */
.kit-cta-primary {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kits-hero, .accessoires-hero {
  margin-top: -60px !important;
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}
.header {
  background: transparent !important;
  position: relative;
  z-index: 10;
}

.header-wave-bg {
  position: relative;
  z-index: 10;
}

/* Suppression des marges/paddings qui masquent la vague */
.kits-hero, .accessoires-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
}

/* Debug visuel pour la vague */
.header-wave-debug {
  background: #ffeb3b;
  color: #222;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Fusion parfaite de la vague et de l'image hero */
.accessoires-hero__background-image,
.kits-hero .accessoires-hero__background-image {
  margin-top: -60px !important;
  display: block;
}

.kits-hero, .accessoires-hero {
  background: transparent !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.header, .header-wave-bg, .shopify-section-header {
  background: transparent !important;
}

body,
#shopify-section-header,
#MainContent,
main,
.shopify-section,
.header-wave-bg,
.header-container {
  background: transparent !important;
  background-color: transparent !important;
}

body.no-scroll {
  overflow: hidden !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  transform: translateX(-100%);
  box-shadow: 4px 0 24px rgba(35,66,54,0.10); /* ombre à gauche */
  color: #222;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #16a34a;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #374151;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: #234236;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f3f4f6;
  color: #16a34a;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 0.5rem;
    height: 56px;
    gap: 1rem;
  }
  .header-logo .logo-img {
    height: 32px;
    padding: 2px;
  }
  .header-nav {
    display: none;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
:root {
  --dominant-bg: #E6FCF5; /* very light mint/white */
  --secondary-bg: #234236; /* deep green */
  --accent-bg: #3BCEAC;   /* soft green accent */
  --primary-green: #16a34a;
  --secondary-green: #234236;
  --accent-green: #3BCEAC;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background: var(--dominant-bg);
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --text-dark: #1A1A1A;
}

/* Reset et base */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0 !important;
  padding: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dominant-bg) !important;
}

body, .main-content, .page-width, .shopify-section, .shopify-section-header, .shopify-section--main, .wrapper, .content, .container {
  background: transparent !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav a:hover {
  color: var(--primary-green);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Dropdown menus */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--background);
  color: var(--primary-green);
}

/* Header icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--background);
  color: var(--primary-green);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 4px 20px rgba(35,66,54,0.10);
  color: #222;
  padding: 0;
  overflow-y: auto;
  display: none;
}
.mobile-menu.active, .mobile-menu.open {
  display: block;
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active::before {
  content: 'DEBUG MENU DRAWER';
  display: block;
  background: #e00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 1px;
}
.mobile-menu-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #16a34a;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #374151;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: #234236;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f3f4f6;
  color: #16a34a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--background);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}

/* Hero section */
.hero, .hero-homepage, .main-hero {
  background: linear-gradient(135deg, var(--dominant-bg) 0%, var(--secondary-bg) 100%);
  color: var(--text-primary);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero-homepage::before, .main-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Product grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid.grid-view .product-card {
  width: 320px;
  max-width: 100%;
  margin: 0;
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
}

.product-grid.list-view {
  flex-direction: column;
  align-items: center;
}

.product-grid.list-view .product-card {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding: 1.5rem 2.5rem;
}

.product-grid.list-view .product-image {
  width: 180px;
  height: 180px;
  min-width: 140px;
  margin-right: 2rem;
}

.product-grid.list-view .product-info {
  flex: 1;
  margin-top: 0;
}

.view-toggle-bar {
  margin-bottom: 2rem;
  text-align: center;
}

.view-toggle-btn {
  background: #f3f3f3;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.6em 1.4em;
  margin: 0 0.3em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.15s;
  outline: none;
}

.view-toggle-btn.active, .view-toggle-btn:focus {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .product-grid {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .product-grid.grid-view .product-card {
    width: 98vw;
    max-width: 98vw;
    flex: 1 1 98vw;
  }
  .product-grid.list-view .product-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
    gap: 1rem;
  }
  .product-grid.list-view .product-image {
    width: 100%;
    height: 140px;
    margin-right: 0;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #16a34a;
    border-radius: 8px;
    padding: 8px;
    margin-right: 8px;
    z-index: 2100;
  }
  .header-nav {
    display: none !important;
  }
}

.product-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--background);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Collection filters */
.filters {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

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

.filter-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.pagination a {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.pagination a:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.pagination .current {
  background: var(--primary-green);
  color: white;
  border: 1px solid var(--primary-green);
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: var(--border-radius); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.bg-primary { background: var(--primary-green); }
.bg-secondary { background: var(--secondary-green); }
.bg-surface { background: var(--surface); }

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

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    z-index: 2100 !important;
    position: relative;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    z-index: 2100 !important;
    position: relative;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.icon-btn:focus,
nav a:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Loading states */
.btn[aria-busy="true"] {
  position: relative;
  color: transparent;
}

.btn[aria-busy="true"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.products-grid.is-loading, .product-grid.is-loading, .collection-products.is-loading {
  position: relative;
  opacity: 0.5;
  pointer-events: none;
}
.products-grid.is-loading::after, .product-grid.is-loading::after, .collection-products.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 5px solid #16a34a;
  border-top: 5px solid #e5e7eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 10;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  position: relative;
  max-height: 48px;
  transition: max-height 0.3s;
}
.filter-tabs.expanded {
  max-height: 500px;
  flex-wrap: wrap;
  overflow-x: visible;
}
.filter-tabs::-webkit-scrollbar {
  height: 6px;
}
.show-more-filters {
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.5em 1.2em;
  margin-left: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  cursor: pointer;
  transition: background 0.2s;
}
.show-more-filters:hover {
  background: #15803d;
}
@media (max-width: 900px) {
  .filter-tabs {
    gap: 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .filter-tabs {
    gap: 0.5rem;
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
    max-height: 48px;
  }
  .filter-tabs.expanded {
    max-height: 500px;
  }
  .filter-tabs button {
    min-width: 90px;
    font-size: 1rem;
    padding: 0.7em 0.8em;
  }
  .show-more-filters {
    width: 100%;
    margin: 0.5rem 0 0 0;
    display: block;
  }
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.5em 1.2em;
  margin-right: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s;
  z-index: 20;
}
.filter-toggle-btn svg {
  width: 1.3em;
  height: 1.3em;
  vertical-align: middle;
}
.filter-toggle-btn.active, .filter-toggle-btn:focus {
  background: #16a34a;
  color: #fff;
}

.filters-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 2em 1.5em;
  display: none;
}
.filters-btn {
  border: 1px solid #4caf50;
  background: #fff;
  color: #4caf50;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  cursor: pointer;
}
.close-btn {
  background: none;
  border: none;
  color: #4caf50;
  font-size: 1.5em;
  position: absolute;
  top: 1em; right: 1em;
  cursor: pointer;
}

/* Masquer les labels 'Trier par :' et 'Vue :' */
.sort-options label,
.view-toggle span {
  display: none !important;
}

/* Correction bouton vue grille/liste */
.view-toggle {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
}
.view-btn {
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 8px;
  font-size: 1.3em;
  padding: 0.3em 0.7em;
  margin-left: 0.2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.view-btn.active, .view-btn:focus {
  background: #16a34a;
  color: #fff;
}

/* Masquer les filtres sur la page principale, ne les afficher que dans le drawer */
.category-filters, .subcategory-filters, .price-filters {
  display: none !important;
}
.filters-drawer .category-filters,
.filters-drawer .subcategory-filters,
.filters-drawer .price-filters {
  display: block !important;
  margin-bottom: 2rem;
}

.sort-controls, .kits-sort-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.sort-controls .controls-wrapper, .kits-sort-controls .controls-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.filter-toggle-btn, .sort-controls select, .view-toggle .view-btn {
  height: 44px;
  min-width: 120px;
  border-radius: 999px;
  border: 2px solid #16a34a;
  background: #fff;
  color: #16a34a;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0.5em 1.2em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.filter-toggle-btn.active, .sort-controls select:focus, .view-toggle .view-btn.active, .view-toggle .view-btn:focus {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.filter-toggle-btn:hover, .sort-controls select:hover, .view-toggle .view-btn:hover {
  background: #e6f9ee;
  color: #15803d;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px #16a34a33;
}
.view-toggle {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.filters-drawer .filter-group-label {
  display: inline-block;
  background: #e6f9ee;
  color: #16a34a;
  font-size: 0.95em;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.2em 1em;
  margin-bottom: 0.5em;
  margin-left: 0.2em;
}
.filters-drawer .filter-group {
  margin-bottom: 2.2rem;
  text-align: center;
}

/* Tooltip sur les boutons de vue */
.view-toggle .view-btn[title] {
  position: relative;
}
.view-toggle .view-btn[title]:hover::after,
.view-toggle .view-btn[title]:focus::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-size: 0.95em;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}

/* Barre de contrôles centrée et harmonisée */
.sort-controls .controls-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  padding: 0.7rem 0;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px rgba(22,163,74,0.06);
  max-width: 600px;
}

.sort-controls .filter-toggle-btn,
.sort-controls .sort-toggle-btn,
.sort-controls .view-toggle .view-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1.3em;
  border: 1.5px solid var(--primary-green, #16a34a);
  background: #fff;
  color: var(--primary-green, #16a34a);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  min-width: 0;
  height: 44px;
  box-shadow: 0 2px 8px rgba(22,163,74,0.08);
  transition: background 0.15s, color 0.15s, border 0.15s;
}

.sort-controls .sort-toggle-btn {
  border-color: #e9ecef;
  color: var(--text-primary, #222);
  font-weight: 500;
}

.sort-controls .filter-toggle-btn.active,
.sort-controls .filter-toggle-btn:focus,
.sort-controls .filter-toggle-btn:hover,
.sort-controls .view-toggle .view-btn.active,
.sort-controls .view-toggle .view-btn:focus,
.sort-controls .view-toggle .view-btn:hover {
  background: var(--primary-green, #16a34a);
  color: #fff;
  border-color: var(--primary-green, #16a34a);
}

.sort-controls .sort-toggle-btn:focus,
.sort-controls .sort-toggle-btn:hover {
  background: #f3fef7;
  color: var(--primary-green, #16a34a);
  border-color: var(--primary-green, #16a34a);
}

.sort-controls .view-toggle .view-btn {
  background: #fff;
  color: var(--primary-green, #16a34a);
  border: 1.5px solid var(--primary-green, #16a34a);
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.sort-controls .view-toggle .view-btn svg {
  display: block;
}

.sort-controls .view-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-controls .sort-options {
  position: relative;
  display: flex;
  align-items: center;
}

.sort-controls .sort-options select {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 140px;
  z-index: 10;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  font-size: 1em;
  padding: 0.7em 1.2em;
  color: var(--text-primary, #222);
}

@media (max-width: 700px) {
  .sort-controls .controls-wrapper {
    max-width: 98vw;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
  }
  .sort-controls .filter-toggle-btn,
  .sort-controls .sort-toggle-btn,
  .sort-controls .view-toggle .view-btn {
    padding: 0.5em 0.7em;
    font-size: 0.98em;
    min-width: 36px;
    height: 38px;
  }
}

.cart-wrapper {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0 4rem 0;
  background: var(--background, #f9fafb);
}
.cart-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: var(--text-primary, #1f2937);
  text-align: center;
}
.cart-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cart-item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44,204,113,0.10), 0 1.5px 8px rgba(44,204,113,0.07);
  padding: 2rem 2rem 2rem 1.5rem;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
  position: relative;
  min-height: 160px;
  will-change: transform, box-shadow;
}
.cart-item--3d:hover, .cart-item--3d:focus {
  transform: scale(1.025) rotateY(2deg) translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,204,113,0.18), 0 2px 12px rgba(44,204,113,0.10);
  z-index: 2;
}
.cart-item__image {
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}
.cart-item__image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  background: #f3f3f3;
}
.cart-item__info {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-item__title {
  font-weight: 700;
  color: #222;
  text-decoration: none;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
  display: inline-block;
}
.cart-item__title:hover {
  color: #2ecc71;
}
.cart-item__variant {
  color: #888;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.cart-item__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #222;
}
.cart-item__unit-price {
  font-weight: 500;
  color: #059669;
}
.cart-item__line-price {
  font-weight: 700;
  color: #1f2937;
  margin-left: 0.5rem;
}
.cart-item__qty-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.cart-item__quantity-input {
  width: 54px;
  text-align: center;
  font-size: 1.08rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  background: #fff;
  font-weight: 600;
  transition: border 0.2s;
}
.cart-item__quantity-input:focus {
  border: 1.5px solid #2ecc71;
  outline: none;
}
.cart-btn {
  border: none;
  background: #eafaf1;
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 1px 4px rgba(44,204,113,0.07);
  outline: none;
}
.cart-btn:active {
  transform: scale(0.93);
}
.cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-btn--qty:hover, .cart-btn--qty:focus {
  background: #2ecc71;
  color: #fff;
}
.cart-btn--remove {
  background: #ffeaea;
  color: #e74c3c;
  border-radius: 8px;
  margin-left: 1rem;
  padding: 0.3rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(231,76,60,0.07);
}
.cart-btn--remove:hover, .cart-btn--remove:focus {
  background: #e74c3c;
  color: #fff;
}
.cart-footer {
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.cart-total-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}
.cart-total-label {
  color: #888;
  font-weight: 500;
}
.cart-total-value {
  color: #059669;
  font-weight: 800;
  font-size: 1.35rem;
}
.cart-checkout-btn {
  display: inline-block;
  background: linear-gradient(90deg, #16a34a 0%, #10b981 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  margin-top: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cart-checkout-btn:hover, .cart-checkout-btn:focus {
  background: linear-gradient(90deg, #10b981 0%, #16a34a 100%);
  box-shadow: 0 4px 16px rgba(44,204,113,0.18);
  transform: scale(1.04);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(44,204,113,0.07);
  padding: 3rem 2rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .cart-list, .cart-footer {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0.7rem;
    min-height: unset;
  }
  .cart-item__image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .cart-footer {
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .cart-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .cart-item__image img {
    width: 70px;
    height: 70px;
  }
  .cart-item__title {
    font-size: 1rem;
  }
  .cart-checkout-btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.cart-item--fadeout {
  opacity: 0;
  transform: scale(0.95) translateY(30px) rotateY(8deg);
  transition: opacity 0.45s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.cart-count.cart-badge-pop {
  animation: cart-badge-pop 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes cart-badge-pop {
  0% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-8deg); }
  60% { transform: scale(0.92) rotate(6deg); }
  100% { transform: scale(1); }
}

.cart-checkout-btn--pop {
  animation: checkout-pop 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes checkout-pop {
  0% { transform: scale(1); box-shadow: 0 2px 8px rgba(44,204,113,0.10); }
  40% { transform: scale(1.07) rotate(-2deg); box-shadow: 0 8px 24px rgba(44,204,113,0.18); }
  100% { transform: scale(1); box-shadow: 0 2px 8px rgba(44,204,113,0.10); }
}

.cart-empty--modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 340px;
  max-width: 380px;
  margin: 3rem auto 0 auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(44,204,113,0.10), 0 1.5px 8px rgba(44,204,113,0.07);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  animation: cart-empty-fadein 0.7s cubic-bezier(.4,0,.2,1);
}
.cart-empty__illustration {
  font-size: 4.5rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(44,204,113,0.10));
  animation: cart-emoji-bounce 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes cart-emoji-bounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.08); }
}
.cart-empty__message {
  font-size: 1.25rem;
  color: #222;
  text-align: center;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.cart-empty__subtitle {
  display: block;
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
  margin-top: 0.5rem;
}
.cart-empty__cta {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  padding: 0.9rem 2.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(44,204,113,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cart-empty__cta:hover, .cart-empty__cta:focus {
  background: linear-gradient(90deg, #10b981 0%, #16a34a 100%);
  box-shadow: 0 4px 16px rgba(44,204,113,0.18);
  transform: scale(1.04);
  color: #fff;
}
@keyframes cart-empty-fadein {
  from { opacity: 0; transform: scale(0.97) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 600px) {
  .cart-empty--modern {
    min-width: 0;
    max-width: 98vw;
    padding: 2.2rem 0.7rem 1.5rem 0.7rem;
  }
  .cart-empty__illustration {
    font-size: 3rem;
  }
  .cart-empty__message {
    font-size: 1.05rem;
  }
}

.product-card-modern {
  position: relative;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,204,113,0.10);
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
  perspective: 800px;
  overflow: visible;
  animation: product-card-fadein 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes product-card-fadein {
  from { opacity: 0; transform: scale(0.97) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.product-card-modern:active {
  transform: scale(0.98);
}
.product-card-modern .product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 0.8rem;
}
.product-card__detail-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1em;
  padding: 0.7em 1.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: opacity 0.25s, transform 0.25s, background 0.2s, color 0.2s;
  z-index: 2;
  pointer-events: none;
}
.product-card-modern:hover .product-card__detail-btn,
.product-card-modern:focus-within .product-card__detail-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.product-card__detail-btn:hover, .product-card__detail-btn:focus {
  background: #16a34a;
  color: #fff;
}
.product-info {
  text-align: center;
  margin-top: 1.1rem;
  width: 100%;
}
.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  min-height: 2.2em;
}
.product-prices {
  margin-bottom: 0.7rem;
}
.product-price--compare {
  color: #888;
  text-decoration: line-through;
  font-size: 0.98em;
  margin-right: 0.5em;
}
.product-price {
  color: #16a34a;
  font-size: 1.15em;
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 0.7em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.7em;
}
.btn {
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1em;
  border-radius: 999px;
  padding: 0.7em 1.5em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  margin: 0 0.1em;
}
.btn--add-to-cart {
  background: #16a34a;
  color: #fff;
}
.btn--add-to-cart:hover, .btn--add-to-cart:focus {
  background: #10b981;
  color: #fff;
  transform: scale(1.06);
}
.btn--buy-now {
  background: #fff;
  color: #16a34a;
  border: 2px solid #16a34a;
}
.btn--buy-now:hover, .btn--buy-now:focus {
  background: #16a34a;
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .product-card-modern .product-image {
    height: 140px;
  }
  .product-info h3 {
    font-size: 1rem;
  }
}

/* --- NAVBAR GÉNÉRALE --- */
.header-wrapper,
.navbar {
  background: linear-gradient(90deg, #c9fff1, #b7e9ff);
  padding: 1.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom-left-radius: 40% 10%;
  border-bottom-right-radius: 40% 10%;
  position: relative;
  z-index: 20;
}

/* --- BOUTONS DE MENU --- */
.navbar .menu-link {
  background-color: #ffffff;
  color: #1B1B1B;
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar .menu-link:hover {
  background-color: #45c881;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- ICÔNES SHOP + COMPTE --- */
.navbar .icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.6);
  color: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.8rem;
  transition: all 0.3s ease;
}

.navbar .icon-button:hover {
  transform: scale(1.1);
  background-color: rgba(255,255,255,0.8);
}

/* --- MENU BURGER (Mobile) --- */
.burger-menu {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .burger-menu {
    display: none;
  }
}

/* JS burger menu (mobile) */
.navbar {
  display: none;
}
.navbar.open {
  display: flex;
  flex-direction: column;
}

/* NAVIGATION CENTRALE - Toujours au-dessus de la vague */
.nav-center {
  position: absolute;
  left: 50%;
  top: 62%; /* Ajuste pour centrer dans la vague, modifie si besoin */
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1.2rem;
  z-index: 50;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .nav-center {
    display: none !important;
  }
}

.nav-center a {
  border-radius: 9999px;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 1.7rem;
  background: #fff;
  color: #27A745;
  border: 2px solid #27A745;
  box-shadow: 0 2px 8px rgba(39,167,69,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  text-shadow: none;
  font-style: normal;
  white-space: nowrap;
  outline: none;
}
.nav-center a:hover,
.nav-center a:focus {
  background: #27A745;
  color: #fff;
  border-color: #27A745;
  box-shadow: 0 4px 16px rgba(39,167,69,0.13);
  transform: scale(1.05) translateY(-2px);
  text-decoration: none;
  outline: 2px solid #27A745;
  outline-offset: 2px;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: absolute;
  right: 4.5rem;
  top: 48px;
  z-index: 30;
}
@media (max-width: 767px) {
  .icon-group {
    right: 2rem;
    top: 44px;
  }
}
.icon-btn {
  background: #3BCEAC;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(44,204,113,0.13), 0 1.5px 8px rgba(0,0,0,0.10);
  position: relative;
  border: none;
  outline: none;
}
.icon-btn:hover, .icon-btn:focus {
  background: #21b18a;
  box-shadow: 0 6px 24px rgba(44,204,113,0.18), 0 2px 8px rgba(0,0,0,0.13);
  transform: scale(1.09);
}
.icon-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.mobile-menu-toggle {
  position: absolute;
  top: 18px;
  left: 1rem;
  z-index: 9999;
  display: none;
  background: none;
  border: none;
}
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .icon-group {
    right: 2rem;
  }
  .header,
  .header-bg-gradient,
  .mobile-menu,
  .logo-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
    border-top: none !important;
  }
}
.header-container {
  position: relative;
  z-index: 10;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-top: 32px;
}

.header-bg-gradient, .header-container {
  box-shadow: none !important;
  border: none !important;
  background: none !important;
  background-color: transparent !important;
}
.header-bg-gradient {
  background: linear-gradient(90deg, #ADEFD1FF 20%, var(--secondary-green) 80%) !important;
  width: 100vw;
  max-width: 100vw;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}
.logo-wrapper {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 120px;
}
@media (max-width: 767px) {
  .logo-wrapper {
    justify-content: flex-start;
    padding-left: 1rem;
  }
}

/* HERO - Raffinement pro */
.hero-section h1, .hero h1, .main-hero h1 {
  color: var(--secondary-green);
  text-shadow: 0 2px 12px rgba(35,66,54,0.08);
  font-size: 2.7rem;
  font-weight: 800;
}
.hero-section .button, .hero .button, .main-hero .button {
  background: linear-gradient(90deg, var(--accent-orange) 80%, var(--accent-beige));
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(249,168,37,0.10);
  padding: 0.9rem 2.2rem;
  font-size: 1.13rem;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  border: none;
  outline: none;
}
.hero-section .button:hover, .hero .button:hover, .main-hero .button:hover {
  background: var(--secondary-green);
  color: var(--accent-beige);
  box-shadow: 0 8px 32px rgba(35,66,54,0.13);
  transform: scale(1.06) translateY(-2px);
}
.hero-section .button:focus, .hero .button:focus, .main-hero .button:focus {
  box-shadow: 0 0 0 3px var(--accent-orange), 0 8px 32px rgba(249,168,37,0.13);
}

/* FOOTER - Raffinement pro */
.footer, .site-footer {
  background: var(--secondary-green);
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
}
.footer a, .site-footer a {
  color: var(--accent-beige);
  transition: color 0.2s, text-decoration 0.2s;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.footer a:hover, .site-footer a:hover, .footer a:focus, .site-footer a:focus {
  color: var(--accent-orange);
  border-bottom: 1.5px solid var(--accent-orange);
  text-decoration: underline wavy var(--accent-orange) 1.5px;
}

/* ACCESSIBILITÉ & TRANSITIONS */
.button, .btn-primary, .cta, .nav-center a, .footer a, .site-footer a {
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  outline: none;
}
.button:focus, .btn-primary:focus, .cta:focus, .nav-center a:focus {
  box-shadow: 0 0 0 3px var(--accent-orange);
}

/* BOUTONS PREMIUM GLOBAUX */
.button, .btn, .btn-primary, .cta, .shopify-payment-button__button, input[type="submit"], button[type="submit"] {
  background: #fff;
  color: var(--secondary-green);
  border: 2px solid var(--secondary-green);
  border-radius: 16px;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 2px 18px 0 rgba(35,66,54,0.10);
  letter-spacing: 0.01em;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  outline: none;
  position: relative;
  cursor: pointer;
}
.button:hover, .btn:hover, .btn-primary:hover, .cta:hover, .shopify-payment-button__button:hover, input[type="submit"]:hover, button[type="submit"]:hover,
.button:focus, .btn:focus, .btn-primary:focus, .cta:focus, .shopify-payment-button__button:focus, input[type="submit"]:focus, button[type="submit"]:focus {
  background: linear-gradient(90deg, #3BCEAC 80%, var(--accent-beige));
  color: #fff;
  border-color: #3BCEAC;
  box-shadow: 0 12px 36px rgba(59,206,172,0.18), 0 0 0 3px #3BCEAC;
  transform: scale(1.09) translateY(-3px);
  text-decoration: none;
}

@media (max-width: 767px) {
  .header,
  .header-bg-gradient,
  .mobile-menu,
  .logo-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
    left: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    top: 0 !important;
    border-top: none !important;
  }
}

/* Styles supplémentaires pour la page Accessoires */
.accessoires-product-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.accessoires-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

/* Amélioration des animations pour les cartes accessoires */
.accessoires-product-card .product-image__main {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-product-card:hover .product-image__main {
  transform: scale(1.1);
}

/* Styles pour les badges des accessoires */
.product-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--best-seller {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.badge--eco {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.badge--new {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.badge--sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Amélioration des filtres pour les accessoires */
.accessoires-filters .filter-option {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-filters .filter-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accessoires-filters .filter-option.active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.2);
}

/* Amélioration du hero pour les accessoires */
.accessoires-hero__background {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .accessoires-hero__background {
    background-attachment: scroll;
  }
}

/* Amélioration des boutons pour les accessoires */
.accessoires-product-card .btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-product-card .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animation pour les recommandations */
.accessoires-recommendations .accessoires-product-card {
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.accessoires-recommendations .accessoires-product-card:nth-child(1) { animation-delay: 0.1s; }
.accessoires-recommendations .accessoires-product-card:nth-child(2) { animation-delay: 0.2s; }
.accessoires-recommendations .accessoires-product-card:nth-child(3) { animation-delay: 0.3s; }
.accessoires-recommendations .accessoires-product-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Amélioration de l'accessibilité */
.accessoires-product-card:focus-within {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.accessoires-product-card .product-title-link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Styles pour les états de chargement */
.accessoires-grid.is-loading {
  position: relative;
  min-height: 400px;
}

.accessoires-grid.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Amélioration de la pagination */
.accessoires-grid .pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.accessoires-grid .pagination-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessoires-grid .pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive improvements */
@media (max-width: 480px) {
  .accessoires-product-card {
    margin-bottom: 1.5rem;
  }
  
  .accessoires-product-card:hover {
    transform: translateY(-4px);
  }
  
  .product-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

/* Styles supplémentaires pour la page Kits */
.kit-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  position: relative;
}

.kit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-green);
}

/* Amélioration des badges pour les kits */
.kit-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge--top-sales {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.badge--ultra-light {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.badge--eco {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.badge--new {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.badge--sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Amélioration des filtres pour les kits */
.kits-filters .filter-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kits-filters .filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kits-filters .filter-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.2);
}

/* Amélioration du hero pour les kits */
.kits-hero__background {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .kits-hero__background {
    background-attachment: scroll;
  }
}

/* Amélioration des cartes d'usage */
.usage-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Amélioration du comparateur */
.comparator-table {
  border-radius: 12px;
  overflow: hidden;
}

.comparator-header-cell {
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
}

.comparator-header-cell:first-child {
  background: var(--text-primary);
}

/* Animation pour les cartes de kits */
.kit-card {
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.kit-card:nth-child(1) { animation-delay: 0.1s; }
.kit-card:nth-child(2) { animation-delay: 0.2s; }
.kit-card:nth-child(3) { animation-delay: 0.3s; }
.kit-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Amélioration de l'accessibilité pour les kits */
.kit-card:focus-within {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.kit-card .kit-title:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Styles pour les états de chargement des kits */
.kits-grid.is-loading {
  position: relative;
  min-height: 400px;
}

.kits-grid.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Amélioration de la pagination pour les kits */
.kits-grid .pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.kits-grid .pagination-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kits-grid .pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive improvements pour les kits */
@media (max-width: 480px) {
  .kit-card {
    margin-bottom: 1.5rem;
  }
  
  .kit-card:hover {
    transform: translateY(-4px);
  }
  
  .kit-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .usage-card {
    padding: 1.5rem;
  }
  
  .comparator-table-wrapper {
    font-size: 0.8rem;
  }
}

/* Amélioration des statistiques des kits */
.kit-stat {
  transition: all 0.2s ease;
}

.kit-stat:hover {
  transform: scale(1.05);
}

.kit-stat.savings {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
}

/* Amélioration des produits dans les kits */
.kit-product {
  transition: all 0.2s ease;
}

.kit-product:hover {
  background: var(--primary-green);
  color: white;
  transform: translateX(4px);
}

/* Amélioration des actions des kits */
.kit-action-btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-action-btn:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-1px);
}

/* Amélioration du CTA principal des kits */
.kit-cta-primary {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.kits-hero, .accessoires-hero {
  margin-top: -60px !important;
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}
.header {
  background: transparent !important;
  position: relative;
  z-index: 10;
}

.header-wave-bg {
  position: relative;
  z-index: 10;
}

/* Suppression des marges/paddings qui masquent la vague */
.kits-hero, .accessoires-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
}

/* Debug visuel pour la vague */
.header-wave-debug {
  background: #ffeb3b;
  color: #222;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Fusion parfaite de la vague et de l'image hero */
.accessoires-hero__background-image,
.kits-hero .accessoires-hero__background-image {
  margin-top: -60px !important;
  display: block;
}

.kits-hero, .accessoires-hero {
  background: transparent !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.header, .header-wave-bg, .shopify-section-header {
  background: transparent !important;
}

body,
#shopify-section-header,
#MainContent,
main,
.shopify-section,
.header-wave-bg,
.header-container {
  background: transparent !important;
  background-color: transparent !important;
}

body.no-scroll {
  overflow: hidden !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  transform: translateX(-100%);
  box-shadow: 4px 0 24px rgba(35,66,54,0.10); /* ombre à gauche */
  color: #222;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mobile-menu-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #16a34a;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #374151;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: #234236;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f3f4f6;
  color: #16a34a;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 0.5rem;
    height: 56px;
    gap: 1rem;
  }
  .header-logo .logo-img {
    height: 32px;
    padding: 2px;
  }
  .header-nav {
    display: none;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-btn.burger-debug-active {
    background: #ffb3b3 !important;
    border-color: #e00 !important;
  }
  .accessoires-hero__content {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
  }
  .accessoires-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .accessoires-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .accessoires-hero__cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    min-width: 0;
    width: auto;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
  }
  .accessoires-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.2rem 1rem 1.2rem 1rem;
    max-width: 95vw;
    text-align: center;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 1.2rem;
    width: 32px;
    height: 32px;
    box-shadow: none;
  }
  .mobile-menu-btn:focus {
    outline: 2px solid #222;
  }
  .mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #86815c;
    margin: 0.22em 0;
    border-radius: 1px;
    transition: all 0.2s;
  }
  .mobile-menu-btn:hover .hamburger-line {
    background: #888;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform