/* AfroStocker Gallery CSS - v2 */
:root {
  --as-gold: #C8963E;
  --as-gold-dark: #A87830;
  --as-obsidian: #0A0A08;
  --as-ivory: #F5F0E8;
  --as-terra: #C0392B;
  --as-muted: #6B6560;
  --as-border: #E0D9D0;
  --as-tr: 0.18s ease;
}

/* ============ HERO ============ */
.as-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  max-width: 100vw !important;
  overflow: hidden;
  min-height: 340px;
  padding: 32px 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.as-hero-bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1s ease;
  transform: scale(1.05);
}
.as-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.52);
  z-index: 1;
}
.as-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.as-hero-eyebrow {
  display: block;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #C8963E;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin: 0 0 10px;
}
.as-hero-title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.as-hero-sub { display: none; }
.as-hero-cats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}
.as-hero-cats::-webkit-scrollbar { display: none; }
.as-hero-cats-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-right: 2px;
}
.as-hero-cat-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  background: rgba(60,60,60,0.65);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: background var(--as-tr);
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}
.as-hero-cat-pill:hover { background: rgba(200,150,62,0.7); }

/* ============ SEARCHBAR ============ */
.as-searchbar-wrap {
  width: 100%;
  max-width: min(680px, calc(100vw - 40px));
  position: relative;
  margin: 0 auto 20px;
  box-sizing: border-box;
}
.as-searchbar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 0 0 0 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  gap: 0;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  height: 52px;
}
.as-search-icon { color: #999; flex-shrink: 0; display: flex; align-items: center; opacity: 0.8; }
.as-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
  font-family: inherit;
  min-width: 0;
  padding: 0 8px;
}
.as-search-input::placeholder { color: #bbb; font-size: 14px; }
.as-search-btn {
  background: var(--as-gold);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--as-tr);
  font-family: inherit;
  height: 52px;
  flex-shrink: 0;
}
.as-search-btn:hover { background: var(--as-gold-dark); }
.as-search-clear {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  display: none;
  padding: 4px;
  flex-shrink: 0;
}
.as-search-clear.visible { display: flex; align-items: center; }

/* Autocomplete */
.as-autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 999;
  overflow: hidden;
  display: none;
}
.as-autocomplete.open { display: block; }
.as-ac-section { padding: 10px 0 4px; }
.as-ac-section-title { font-size: 10px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 1px; padding: 0 16px 6px; }
.as-ac-item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; cursor: pointer; transition: background var(--as-tr); }
.as-ac-item:hover { background: var(--as-ivory); }
.as-ac-thumb { width: 36px; height: 36px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.as-ac-name { font-size: 13px; color: var(--as-obsidian); font-weight: 500; }
.as-ac-meta { font-size: 11px; color: var(--as-muted); }

/* ============ STATS BAR ============ */
.as-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 24px;
  background: var(--as-obsidian);
  color: #fff;
}
.as-stat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.as-stat-n { font-size: 18px; font-weight: 800; color: var(--as-gold); }
.as-stat-l { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 1px; }
.as-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* ============ COLLECTIONS BAR ============ */
.as-collections-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid var(--as-border);
}
.as-collection-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--as-obsidian);
  text-decoration: none;
  transition: color var(--as-tr);
  white-space: nowrap;
}
.as-collection-link:hover { color: var(--as-gold-dark); }
.as-col-icon { font-size: 16px; }

/* ============ TRUST BAR ============ */
.as-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--as-ivory);
  border-bottom: 1px solid var(--as-border);
}
.as-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--as-border);
}
.as-trust-item:last-child { border-right: none; }
.as-trust-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.as-trust-title { display: block; font-size: 13px; font-weight: 700; color: var(--as-obsidian); }
.as-trust-sub { display: block; font-size: 11px; color: var(--as-muted); line-height: 1.4; margin-top: 2px; }

/* ============ AUDIENCE BAR ============ */
.as-audience-bar {
  padding: 24px 40px 28px;
  background: #F5F0E8;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.as-audience-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #8A8580;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.as-audience-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.as-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.as-audience-icon { font-size: 18px; line-height: 1.3; flex-shrink: 0; }
.as-audience-title { display: block; font-size: 13px; font-weight: 700; color: var(--as-obsidian); }
.as-audience-sub { display: block; font-size: 11px; color: #8A8580; line-height: 1.3; margin-top: 1px; }

/* ============ CATEGORY TABS ============ */
.as-cat-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 24px 0;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  border-bottom: 2px solid var(--as-border);
}
.as-cat-tabs::-webkit-scrollbar { display: none; }
.as-cat-tab {
  padding: 8px 18px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--as-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all var(--as-tr);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.as-cat-tab:hover { color: var(--as-obsidian); }
.as-cat-tab.active { color: var(--as-obsidian); border-bottom-color: var(--as-gold); background: rgba(200,150,62,0.08); }

/* ============ FILTERS ============ */
.as-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid var(--as-border);
  gap: 16px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.as-filters-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; flex: 1; min-width: 0; overflow: hidden; }
.as-results-count { font-size: 13px; color: var(--as-muted); font-weight: 500; white-space: nowrap; }
.as-tag-chips { display:flex!important; flex-wrap:nowrap!important; overflow-x:auto!important; overflow-y:hidden!important; -webkit-overflow-scrolling:touch!important; scrollbar-width:none!important; gap:6px!important; padding-bottom:2px!important; width:100%!important; }
.as-tag-chips::-webkit-scrollbar { display: none; }
.as-tag-chip { white-space:nowrap!important; flex-shrink:0!important; padding:5px 12px!important; border-radius:20px!important; border:1px solid #ddd!important; background:#f5f5f5!important; font-size:13px!important; cursor:pointer!important; font-family:inherit!important; transition:background .15s!important; }
.as-tag-chip:hover, .as-tag-chip.active { background: var(--as-gold); border-color: var(--as-gold); color: #fff; }
.as-sort-select {
  border: 1px solid var(--as-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--as-obsidian);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}
.as-active-filters { padding: 10px 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.as-active-filter {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--as-gold);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.as-active-filter button { background: none; border: none; color: #fff; cursor: pointer; padding: 0; font-size: 14px; line-height: 1; }

/* ============ MASONRY GRID ============ */
.as-masonry {
  columns: 4 200px;
  column-gap: 12px;
  padding: 16px 24px 24px;
  background: #fff;
}
.as-card {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--as-ivory);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow var(--as-tr), transform var(--as-tr);
}
.as-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.15); transform: translateY(-2px); }
.as-card img { display: block; width: 100%; height: auto; }
.as-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,8,0.7) 100%);
  opacity: 0;
  transition: opacity var(--as-tr);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.as-card:hover .as-card-overlay { opacity: 1; }
.as-card-price {
  display: inline-flex;
  align-items: center;
  background: var(--as-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Loading */
.as-loading { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 60px 24px; color: var(--as-muted); font-size: 14px; }
.as-spinner { width: 28px; height: 28px; border: 3px solid var(--as-border); border-top-color: var(--as-gold); border-radius: 50%; animation: as-spin 0.7s linear infinite; }
@keyframes as-spin { to { transform: rotate(360deg); } }
@keyframes as-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes as-scale-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Pagination */
.as-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 24px; }
.as-page-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--as-border);
  background: #fff;
  color: var(--as-obsidian);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--as-tr);
  font-family: inherit;
}
.as-page-btn:hover { background: var(--as-ivory); }
.as-page-btn.active { background: var(--as-gold); border-color: var(--as-gold); color: #fff; }
.as-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============ LIGHTBOX ============ */
.as-lightbox { position: fixed; inset: 0; z-index: 99999; display: flex !important; align-items: center; justify-content: center; padding: 20px; animation: as-fade-in 200ms ease; }
.as-lightbox[style*='display:none'], .as-lightbox[style*='display: none'] { display: none !important; animation: none; }
.as-lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,10,8,0.88); cursor: pointer; }
.as-lightbox-inner {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 360px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  animation: as-scale-in 200ms cubic-bezier(0.4,0,0.2,1);
}
.as-lightbox-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,10,8,0.6); border: none; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--as-tr);
}
.as-lightbox-close:hover { background: var(--as-terra); }
.as-lightbox-img-wrap { background: var(--as-obsidian); display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 300px; }
.as-lightbox-img-wrap img { width: 100%; height: 100%; object-fit: contain; max-height: 90vh; }
.as-lightbox-info { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; background: #fff; max-height: 90vh; }
#as-lightbox-title { font-size: 17px; font-weight: 700; color: #0A0A08; line-height: 1.3; margin: 0 0 4px; }
#as-lightbox-title a, #as-lightbox-title a:visited { color: #0A0A08 !important; text-decoration: none !important; }
.as-lightbox-details { display: flex; flex-wrap: wrap; gap: 6px; }
.as-detail-pill { background: var(--as-ivory); border: 1px solid var(--as-border); border-radius: 100px; font-size: 11px; padding: 3px 10px; color: var(--as-muted); font-weight: 500; }
.as-lightbox-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.as-lb-tag { font-size: 11px; color: var(--as-gold-dark); background: rgba(200,150,62,0.1); border-radius: 100px; padding: 3px 9px; cursor: pointer; transition: background var(--as-tr); }
.as-lb-tag:hover { background: rgba(200,150,62,0.25); }
.as-licence-selector { display: flex; flex-direction: column; gap: 8px; }
.as-licence-option { border: 1.5px solid var(--as-border); border-radius: 8px; padding: 12px 14px; cursor: pointer; transition: border-color var(--as-tr), background var(--as-tr); }
.as-licence-option:hover { border-color: var(--as-gold); background: #fdf8f0; }
.as-licence-option.active { border-color: var(--as-gold); background: #fdf8f0; }
.as-licence-name { font-size: 13px; font-weight: 700; color: var(--as-obsidian); margin-bottom: 2px; }
.as-licence-desc { font-size: 11px; color: var(--as-muted); margin-bottom: 4px; }
.as-licence-price { font-size: 15px; font-weight: 800; color: var(--as-gold-dark); }
.as-btn-buy { display: block; width: 100%; padding: 13px; background: var(--as-gold); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; font-family: inherit; transition: background var(--as-tr); margin-top: 4px; }
.as-btn-buy:hover { background: var(--as-gold-dark); }
.as-btn-view { display: block; width: 100%; padding: 10px; background: transparent; color: var(--as-muted); border: 1.5px solid var(--as-border); border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; font-family: inherit; transition: all var(--as-tr); }
.as-btn-view:hover { border-color: var(--as-obsidian); color: var(--as-obsidian); }
.as-lightbox-note { font-size: 11px; color: var(--as-muted); text-align: center; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .as-masonry { columns: 3 180px; }
  .as-audience-items { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 900px) {
  .as-masonry { columns: 3 150px; }
  .as-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .as-trust-item { border-bottom: 1px solid var(--as-border); }
  .as-lightbox-inner { grid-template-columns: 1fr 300px; }
  .as-audience-items { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 768px) {
  .as-hero { min-height: 220px; padding: 24px 16px 20px; }
  .as-hero-title { font-size: clamp(20px, 5vw, 28px); }
  .as-masonry { columns: 2 130px; column-gap: 8px; padding: 12px 12px 20px; }
  .as-lightbox-inner { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .as-stats-bar { gap: 0; padding: 10px 12px; }
  .as-stat { padding: 0 14px; }
  .as-stat-n { font-size: 15px; }
  .as-trust-bar { grid-template-columns: 1fr; }
  .as-filters-row { padding: 10px 12px; }
  .as-cat-tabs { padding: 12px 12px 0; }
  /* Audience : meme style que desktop, 2 colonnes */
  .as-audience-bar { padding: 18px 20px 22px; }
  .as-audience-items { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .as-audience-item { gap: 8px; }
  .as-audience-icon { font-size: 20px; }
  .as-audience-title { font-size: 13px; }
  .as-audience-sub { font-size: 11px; }
}
@media (max-width: 480px) {
  .as-masonry { columns: 1; column-gap: 0; padding: 10px 14px 18px; }
  .as-card { margin-bottom: 16px; border-radius: 10px; }
  .as-hero-title { font-size: 20px; }
  .as-searchbar { padding: 8px 8px 8px 14px; }
  .as-search-input { font-size: 14px; }
  .as-search-btn { padding: 8px 14px; font-size: 13px; }
  .as-stat { padding: 0 10px; }
  .as-stat-n { font-size: 14px; }
  /* Audience : 1 colonne sur tres petit */
  .as-audience-items { grid-template-columns: 1fr; gap: 12px; }
  .as-collections-bar { padding: 10px 12px; gap: 6px 12px; }
  .as-collection-link { font-size: 12px; }
}

/* ===== FIXES LIGHTBOX + HERO ===== */
#as-lightbox-title a, #as-lightbox-title a:visited, #as-lightbox-title a:hover { color: #0A0A08 !important; text-decoration: none !important; }
.as-lightbox-info { padding: 20px 24px 16px !important; gap: 12px !important; overflow-y: auto !important; max-height: 88vh !important; display: flex !important; flex-direction: column !important; }

/* Bouton voir fiche complete - toujours en bas */
.as-lightbox-actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}


/* ===== SEARCHBAR STYLE PIXABAY ===== */
.as-searchbar-wrap {
  max-width: min(680px, calc(100vw - 40px)) !important;
  margin: 0 auto 20px !important;
}
.as-searchbar {
  border-radius: 6px !important;
  padding: 0 0 0 16px !important;
  height: 52px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2) !important;
  overflow: hidden !important;
  background: #fff !important;
}
.as-search-input {
  font-size: 15px !important;
  padding: 0 8px !important;
  height: 52px !important;
}
.as-search-icon {
  flex-shrink: 0;
  color: #aaa;
}
.as-search-btn {
  border-radius: 0 !important;
  height: 52px !important;
  padding: 0 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  background: var(--as-gold) !important;
}
.as-search-btn:hover {
  background: var(--as-gold-dark) !important;
}
/* ===================================== */

/* ===== HERO SEARCHBAR CENTREE ===== */
.as-hero-inner {
  max-width: 900px !important;
  padding: 0 40px !important;
}
.as-searchbar-wrap {
  max-width: 660px !important;
  width: 100% !important;
  margin: 0 auto 20px !important;
}
.as-searchbar {
  border-radius: 4px !important;
  padding: 0 !important;
  height: 50px !important;
  overflow: hidden !important;
}
.as-search-icon {
  padding-left: 14px !important;
  flex-shrink: 0;
}
.as-search-input {
  height: 50px !important;
  padding: 0 10px !important;
  font-size: 15px !important;
}
.as-search-btn {
  border-radius: 0 !important;
  height: 50px !important;
  padding: 0 24px !important;
  font-size: 14px !important;
  min-width: 120px !important;
}
/* ===================================== */
/* === HERO HEIGHT PIXABAY === */
.as-hero { min-height: 340px !important; padding: 32px 20px 28px !important; }
@media(max-width:768px) { .as-hero { min-height: 220px !important; } }


/* ===== MOBILE OVERFLOW FIX ===== */
#as-gallery-root,
.as-gallery-page,
.as-hero,
.as-stats-bar,
.as-collections-bar,
.as-trust-bar,
.as-audience-bar,
.as-cat-tabs,
.as-filters-row,
.as-masonry {
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  /* Stats bar - compact */
  .as-stats-bar { padding: 10px 8px !important; gap: 0 !important; }
  .as-stat { padding: 0 10px !important; }
  .as-stat-n { font-size: 14px !important; }
  .as-stat-l { font-size: 10px !important; }

  /* Collections bar scroll */
  .as-collections-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    gap: 12px !important;
    scrollbar-width: none !important;
  }
  .as-collections-bar::-webkit-scrollbar { display: none !important; }
  .as-collection-link { white-space: nowrap !important; flex-shrink: 0 !important; }

  /* Filtres row */
  .as-filters-row { padding: 10px 12px !important; }

  /* Hero searchbar pleine largeur */
  .as-hero-inner { padding: 0 !important; }
  .as-searchbar-wrap { max-width: 100% !important; margin: 0 0 16px !important; }
  .as-searchbar { border-radius: 0 !important; }
}
/* ===================================== */
/* CLS fix - reserver espace images */
.as-card-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f0ede8;
  display: block;
}
.as-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.as-card {
  contain: layout;
}
