/* ============================================
   Héritage et Collection - Design Vintage
   Inspiré de vintage-family.fr
   ============================================ */

/* Fonts - Open Sans + Advent Pro (comme vintage-family.fr) */
/* Fonts locales (plus de dépendance Google) */
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/open-sans-300.ttf') format('truetype'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/open-sans-400.ttf') format('truetype'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/open-sans-500.ttf') format('truetype'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/open-sans-600.ttf') format('truetype'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/open-sans-700.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 100; font-display: swap; src: url('../fonts/advent-pro-100.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 200; font-display: swap; src: url('../fonts/advent-pro-200.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/advent-pro-300.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/advent-pro-400.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/advent-pro-500.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/advent-pro-600.ttf') format('truetype'); }
@font-face { font-family: 'Advent Pro'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/advent-pro-700.ttf') format('truetype'); }

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

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.7em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Liens */
a:link, a:visited {
  text-decoration: none;
  color: #2a2a2a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
}
a:hover {
  color: #61001c;
}
a:active {
  color: #efefef;
}

/* Titres */
h1 {
  font-family: 'Advent Pro', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
h2 {
  font-family: 'Advent Pro', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
h3 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}
h4 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
h5 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

/* Container principal */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER / MENU
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-logo {
  flex-shrink: 0;
}
.site-logo img {
  height: 70px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.site-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3d6d0;
  transition: width 0.3s ease;
}
.site-nav a:hover {
  color: #61001c;
}
.site-nav a:hover::after {
  width: 100%;
}

/* Mega-menu PRODUITS - categories with hover sub-panel */
.nav-dropdown {
  position: relative;
}
.nav-item {
  cursor: pointer;
}
.caret {
  font-size: 10px;
  margin-left: 4px;
}
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 720px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 8px 8px;
  border-top: 3px solid #f3d6d0;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .mega-menu {
  display: block;
}
.mega-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.mega-cat-row {
  position: relative;
}
.mega-cat-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333 !important;
  text-transform: none !important;
  letter-spacing: 0;
  padding: 8px 18px !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.mega-cat-name:hover {
  background: #f8f5ea;
  color: #61001c !important;
  border-left-color: #f3d6d0;
}
.mega-cat-name::after {
  display: none !important;
}
.cat-arrow {
  font-size: 10px;
  color: #999;
  margin-left: 8px;
}
/* Sub-panel appears on hover of category row */
.mega-sub-panel {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-left: 2px solid #f3d6d0;
  border-radius: 0 8px 8px 0;
  z-index: 210;
  padding: 8px 0;
}
.mega-cat-row:hover .mega-sub-panel,
.mega-cat-row.active .mega-sub-panel {
  display: block;
}
.mega-cat-row:hover .mega-cat-name,
.mega-cat-row.active .mega-cat-name {
  background: #f3d6d0;
  color: #fff !important;
  border-left-color: #61001c;
}
.mega-cat-row:hover .cat-arrow,
.mega-cat-row.active .cat-arrow {
  color: #fff;
}
.mega-sub-link {
  display: block;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #555 !important;
  text-transform: none !important;
  letter-spacing: 0;
  padding: 6px 18px !important;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.mega-sub-link:hover {
  color: #61001c !important;
  background: #faf6f0;
  border-left-color: #61001c;
}
.mega-sub-link::after {
  display: none !important;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.header-icon-link {
  font-size: 22px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  position: relative;
}
.header-icon-link:hover {
  color: #f3d6d0;
}
.header-total {
  font-family: 'Advent Pro', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #f3d6d0;
  background: rgba(97,0,28,0.3);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.header-sep {
  color: rgba(255,255,255,0.3);
  font-size: 18px;
}
.header-btn-deconnexion {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  background: #e4b9b2;
  transition: all 0.2s;
}
.header-btn-deconnexion:hover {
  background: #d4a8a0;
  border-color: rgba(0,0,0,0.3);
}

/* ============================================
   Barre de filtres produits
   ============================================ */
.produit-bandeau {
  width: 100%;
  margin-bottom: 0;
}
.produit-bandeau img {
  width: 100%;
  height: auto;
  display: block;
}
.filtre-bar {
  background: #e4b9b2;
  padding: 18px 20px;
  border-radius: 0 0 8px 8px;
}
.filtre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 12px;
}
.filtre-row:last-child {
  margin-bottom: 0;
}
.filtre-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filtre-field label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #5a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filtre-field select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #d4a8a0;
  border-radius: 6px;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 140px;
}
.filtre-field select:hover {
  border-color: #b87a70;
}
.filtre-field select:focus {
  outline: none;
  border-color: #61001c;
  box-shadow: 0 0 0 2px rgba(97,0,28,0.15);
}
.filtre-checks {
  gap: 24px;
  padding-top: 4px;
}
.filtre-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a2a2a;
  cursor: pointer;
  user-select: none;
}
.filtre-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #61001c;
  cursor: pointer;
}

/* ============================================
   Cartes produits
   ============================================ */
.produit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 20px 0;
}
.produit-card {
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.produit-card:hover {
  box-shadow: 0 6px 25px rgba(97,0,28,0.12);
  transform: translateY(-3px);
}
.produit-card.in-cart {
  border-color: #61001c;
  box-shadow: 0 0 0 2px rgba(97,0,28,0.15);
}
.produit-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.badge {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0.5px;
}
.badge-stock { background: #4a8c3a; }
.badge-soon { background: #d4942a; }
.badge-out { background: #999; }
.badge-new { background: #61001c; }
.badge-promo { background: #c0392b; }

.produit-card-img {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f4;
  padding: 10px;
}
.produit-card-img img {
  max-height: 210px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.produit-card-info {
  padding: 12px 14px 8px;
  text-align: center;
}
.produit-ref {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 500;
  margin-bottom: 2px;
}
.produit-titre {
  font-family: 'Advent Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 2px;
}
.produit-taille {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
}
.produit-prix {
  font-family: 'Advent Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #61001c;
  margin-top: 4px;
}
.produit-card-actions {
  padding: 8px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-favoris {
  font-size: 20px;
  color: #d4a8a0;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}
.btn-favoris.active {
  color: #61001c;
}
.produit-qt {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  padding: 4px 8px;
  border: 1px solid #d4a8a0;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  color: #333;
}
.btn-panier {
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  margin-left: 6px;
}
.check-select {
  font-size: 11px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.check-select input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #61001c;
}

/* Pagination */
.produit-pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}
.page-link {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s;
}
.page-link:hover {
  background: #f8f5ea;
  border-color: #b87a70;
}
.page-link.active {
  background: #e4b9b2;
  color: #000;
  border-color: #e4b9b2;
}
.page-link.dots {
  border: none;
  background: none;
  cursor: default;
}
.btn-add-selection {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #e4b9b2;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-add-selection:hover {
  background: #d4a8a0;
}

/* Responsive */
@media (max-width: 900px) {
  .produit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .produit-grid {
    grid-template-columns: 1fr;
  }
}

/* Barre de menu legacy (override) */
.AGLOBAL { color: #61001c; }
.AGLOBALGRAY { color: #444444; }
.AGLOBALGRAY:hover { color: #61001c; }
.AGLOBALWHITE { color: #ffffff; }
.AGLOBALWHITE:hover { color: #444444; }
.TEXTE { color: #444444; }
.MENUCLASS { color: #2a2a2a; }
.MENUCLASS:hover { color: #61001c; }

/* ============================================
   SLIDER / BANDEAU
   ============================================ */
.slider-container {
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
  position: relative;
  background: #f0ebe4;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
}

.slide-overlay h2 {
  color: #fff;
  font-family: 'Advent Pro', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.slide-overlay p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

/* Navigation slider */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #61001c;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.slider-btn:hover {
  background: #e4b9b2;
  color: #000;
  transform: scale(1.1);
}

/* Points du slider */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   CATALOGUE / CATÉGORIES
   ============================================ */
.catalogue-section {
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.catalogue-banner img {
  width: 100%;
  display: block;
}

.cat-block {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.cat-block h1 {
  color: #1a1a1a;
  font-family: 'Advent Pro', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;}

.cat-products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.product-card {
  width: 200px;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.product-card h2 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.product-card img {
  width: 180px;
  height: auto;
  border-radius: 4px;
}

/* ============================================
   FOOTER - design moderne avec dégradé
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, #f3d6d0 0%, #e8c4be 50%, #e0b0a8 100%);
  color: #5a2a2a;
  padding: 50px 20px 25px;
  margin-top: 40px;
  border-top: 3px solid #e0b0a8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-col h3 {
  color: #5a2a2a;
  font-family: 'Advent Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(90,42,42,0.3);
}
.footer-col p, .footer-col a {
  color: #5a2a2a;
  font-size: 15px;
  line-height: 1.8;
}
.footer-col a:hover {
  color: #5a2a2a;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(90,42,42,0.3);
  text-align: center;
  font-size: 13px;
  color: #5a2a2a;
}

/* ============================================
   BOUTONS
   ============================================ */
.monBouton {
  margin: 0 auto;
  display: block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e4b9b2;
  border-radius: 6px;
  width: 240px;
  padding: 12px 10px;
  color: #000;
  background: #e4b9b2;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.monBouton:hover {
  background: #d4a8a0;
  color: #000;
}

/* Catalogue CTA */
.catalogue-cta {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}
.catalogue-cta a {
  color: #61001c;
  font-weight: 500;
  font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    padding: 10px 15px;
  }
  .site-tagline {
    display: none;
  }
  .site-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .slider-container {
    margin-top: 100px;
  }
  .slide {
    height: 250px;
  }
  .product-card {
    width: 45%;
  }
  .product-card img {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
  }
}

/* Select styles legacy */
.select-style {
  padding: 0;
  margin: 0;
  border: 1px solid #6f0020;
  width: 40px;
  height: 25px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.select-style select {
  padding: 0;
  width: 100%;
  border: none;
  box-shadow: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-style select:focus {
  outline: none;
}
/* ============================================
   Catalogue Cards - Grille compacte 4 par ligne
   ============================================ */
.catalogue-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.catalogue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-color: #d0d0d0;
}

.catalogue-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #faf8f4;
  padding: 8px;
}

.catalogue-card-body {
  padding: 10px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalogue-card-title {
  font-family: 'Advent Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  flex: 1;
  text-align: center;
}

.catalogue-card-btn {
  display: block;
  background: #e4b9b2;
  color: #000;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 7px 0;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.catalogue-card-btn:hover {
  background: #d4a8a0;
  color: #000;
}

@media (max-width: 900px) {
  .catalogue-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .catalogue-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .catalogue-cards { grid-template-columns: 1fr; }
}
