:root {
  --bl-color-primary: #7A8F45;
  --bl-color-primary-dark: #5F7334;
  --bl-color-primary-soft: #AFC48A;
  --bl-color-sand: #E8D9B5;
  --bl-color-cream: #F7F2E8;
  --bl-color-white: #FFFFFF;
  --bl-color-text: #2F3A2F;
  --bl-color-text-soft: #66705F;
  --bl-color-warning: #E8A63A;
  --bl-color-warning-dark: #C98517;
  --bl-color-border: #E8DFCC;
  --bl-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --bl-shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1200px;
}

/* -------------------------------------------------------------------------- */
/* BASE                                                                       */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #faf6f1;
  color: var(--bl-color-text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: none !important;
  display: none !important;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--bl-color-text);
  margin-top: 0;
  overflow-wrap: break-word;
}

.container,
.nav-wrap,
.hero-grid,
.section > .container,
.page-hero > .container,
.site-footer > .container,
.search-sticky > .container,
.profile-grid,
.admin-grid,
.footer-grid {
  width: min(calc(100% - 32px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

main,
.site-main,
.page-content,
section,
header,
footer,
.page-hero,
.hero {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  display: block;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------------- */
/* HEADER                                                                     */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bl-color-border);
  margin: 0 !important;
  padding: 0 !important;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-wrap: nowrap;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bl-color-primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  font-size: 0.96rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
}

.main-nav a:hover,
.btn-link:hover {
  color: var(--bl-color-primary);
}

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

.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switch a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1eee5;
  color: #6c6a62;
  font-size: 0.83rem;
  white-space: nowrap;
}

.lang-switch a.active {
  background: var(--bl-color-primary);
  color: #fff;
}

/* -------------------------------------------------------------------------- */
/* BOUTONS                                                                    */
/* -------------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary,
input[type="submit"] {
  background: var(--bl-color-warning);
  color: #fff;
  box-shadow: var(--bl-shadow-card);
}

.btn-primary:hover,
input[type="submit"]:hover {
  background: var(--bl-color-warning-dark);
  color: #fff;
}

.btn-secondary,
input[type="reset"] {
  background: var(--bl-color-primary-dark);
  color: #fff;
}

.btn-secondary:hover,
input[type="reset"]:hover {
  background: #4d5f2a;
  color: #fff;
}

.btn-link {
  color: var(--bl-color-primary-dark);
  padding: 0;
  background: transparent;
  min-height: auto;
}

/* -------------------------------------------------------------------------- */
/* FIX EXPLICITE DES BOUTONS                                                  */
/* -------------------------------------------------------------------------- */
.hero-actions a[href*="education"],
.hero-actions a[href*="conseils"],
.hero-actions a:last-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #5F7334 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-actions a[href*="education"]:hover,
.hero-actions a[href*="conseils"]:hover,
.hero-actions a:last-child:hover {
  background: #4d5f2a !important;
  color: #FFFFFF !important;
}

.search-form button[type="reset"],
.search-form input[type="reset"],
button[type="reset"],
input[type="reset"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #5F7334 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border: none !important;
  opacity: 1 !important;
}

.search-form button[type="reset"]:hover,
.search-form input[type="reset"]:hover,
button[type="reset"]:hover,
input[type="reset"]:hover {
  background: #4d5f2a !important;
  color: #FFFFFF !important;
}

a[href*="admin_logout"],
a[href*="logout"],
.admin-logout {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #5F7334 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* -------------------------------------------------------------------------- */
/* HERO / ACCUEIL                                                             */
/* -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--bl-color-cream), #f9f2e3 70%, #efe5cf);
  padding: 52px 0;
  margin-top: 0 !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-grid.compact {
  grid-template-columns: 1fr 0.95fr;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero h1 span {
  color: var(--bl-color-primary);
}

.hero p,
.page-hero p,
.section-head p,
.text-block p {
  color: var(--bl-color-text-soft);
  font-size: 1.08rem;
}

.hero-media {
  max-width: 100%;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* -------------------------------------------------------------------------- */
/* SECTIONS                                                                   */
/* -------------------------------------------------------------------------- */
.section {
  padding: 56px 0;
}

.section.surface {
  background: #fff;
}

.section.small-pad {
  padding: 32px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head.center {
  display: block;
  text-align: center;
}

.section-head h2,
.breeder-box h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1eee5;
  color: #5f7334;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

/* -------------------------------------------------------------------------- */
/* GRILLES                                                                    */
/* -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* -------------------------------------------------------------------------- */
/* CARTES                                                                     */
/* -------------------------------------------------------------------------- */
.feature-card,
.article-card,
.breeder-card,
.breeder-box,
.text-block,
.join-box,
.trust-box,
.inline-ad-card,
.profile-panel,
.kpi-card,
.review-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--bl-shadow-card);
}

.feature-card {
  padding: 28px;
}

.feature-card.green {
  background: #edf5df;
}

.feature-card.sand {
  background: #f9efe1;
}

.feature-card.orange {
  background: #fff5e6;
}

.feature-card h3,
.article-card h3,
.breeder-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.article-card {
  overflow: hidden;
}

.article-card div {
  padding: 18px;
}

.article-card a {
  color: var(--bl-color-primary-dark);
  font-weight: 700;
}

.text-block,
.join-box,
.trust-box,
.profile-panel {
  padding: 24px;
}

.text-block.elevated {
  background: linear-gradient(180deg, #fff, #fcfaf5);
}

/* -------------------------------------------------------------------------- */
/* RECHERCHE                                                                  */
/* -------------------------------------------------------------------------- */
.breeder-box {
  padding: 28px;
  background: #f8f1e2;
}

.premium-search-box {
  background: linear-gradient(180deg, #f7f1e6, #fff);
}

.search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto auto;
  gap: 12px;
}

.search-form input,
.search-form select {
  min-height: 50px;
  border: 1px solid var(--bl-color-border);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  background: #fff;
}

/* -------------------------------------------------------------------------- */
/* PUB                                                                        */
/* -------------------------------------------------------------------------- */
.ad-slot {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 26px;
  min-height: 126px;
  border-radius: 24px;
  border: 1px dashed #d0c8b3;
  background: #f7f2e7;
  color: #8c856f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.ad-slot-home {
  margin-top: 28px;
}

/* -------------------------------------------------------------------------- */
/* PAGES INTERNES                                                             */
/* -------------------------------------------------------------------------- */
.page-hero {
  padding: 46px 0;
  background: #fff;
  margin-top: 0 !important;
}

.page-hero.dark {
  background: radial-gradient(circle at top right, rgba(232, 166, 58, 0.18), transparent 28%),
    linear-gradient(135deg, #506229, #5f7334 55%, #31401d);
  color: #fff;
}

.page-hero.dark h1,
.page-hero.dark .back-link {
  color: #fff;
}

.page-hero.dark p,
.page-hero.dark .checks {
  color: #ebddbf;
}

.page-hero.themed {
  background: linear-gradient(135deg, var(--bl-color-cream), #f9f2e3 70%, #efe5cf);
}

.page-hero.page-health {
  background: linear-gradient(135deg, #f5f8ef, #edf5df 70%, #e7efdc);
}

.page-hero.page-education {
  background: linear-gradient(135deg, #faf3e8, #f9efe1 70%, #f6e7d0);
}

.page-hero.page-adoption {
  background: linear-gradient(135deg, #fff6e8, #fff1d6 70%, #f8e4b7);
}

.page-hero.page-contact {
  background: linear-gradient(135deg, #f7f2e8, #efe6d7 70%, #e8dcc7);
}

.page-hero.themed .back-link {
  color: var(--bl-color-primary-dark);
}

.checks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.checks li {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
}

/* -------------------------------------------------------------------------- */
/* FILTRES                                                                    */
/* -------------------------------------------------------------------------- */
.search-sticky {
  position: sticky;
  top: 76px;
  background: #fff;
  border-bottom: 1px solid var(--bl-color-border);
  padding: 14px 0 16px;
  z-index: 40;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.filter-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3efe6;
  color: #5d584a;
  font-weight: 700;
  font-size: 0.92rem;
}

.filter-pill.active {
  background: var(--bl-color-primary);
  color: #fff;
}

/* -------------------------------------------------------------------------- */
/* CARTES ÉLEVEURS                                                            */
/* -------------------------------------------------------------------------- */
.breeder-grid-pro {
  display: grid;
  gap: 22px;
  align-items: start;
}

.breeder-card {
  padding: 22px;
  border: 2px solid transparent;
}

.breeder-card.premium {
  background: linear-gradient(180deg, #fff, #fdfbf8);
}

.breeder-card.recommended {
  border-color: #f1cc83;
  box-shadow: 0 18px 38px rgba(232, 166, 58, 0.14);
}

.breeder-card.verified {
  border-color: #cfe2b6;
}

.breeder-card.standard {
  border-color: #eee5d6;
}

.breeder-card__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.status-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f0e4;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5d5c54;
}

.family-badge {
  background: #f2e8d5;
  color: #6b5731;
}

.breeder-card.recommended .status-badge {
  background: #e8a63a;
  color: #fff;
}

.breeder-card.verified .status-badge {
  background: #7A8F45;
  color: #fff;
}

.muted {
  color: var(--bl-color-text-soft);
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.tag-list span {
  background: #f1eee7;
  color: #2f3a2f;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.premium-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 18px;
}

.premium-meta div {
  padding: 12px 14px;
  border-radius: 18px;
  background: #faf6ef;
  border: 1px solid #eee4d5;
}

.premium-meta small {
  display: block;
  color: var(--bl-color-text-soft);
  margin-bottom: 2px;
}

.premium-meta strong {
  font-size: 1rem;
}

.breeder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.breeder-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-links-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rating-box {
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff5e6;
  border: 1px solid #f4ddb0;
  text-align: center;
}

.rating-box strong {
  display: block;
  font-size: 1.2rem;
}

.inline-ad-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border: 1px dashed #d0c8b3;
  background: #f8f3ea;
  color: #8c856f;
  padding: 20px;
}

/* -------------------------------------------------------------------------- */
/* PROFIL ÉLEVEUR                                                             */
/* -------------------------------------------------------------------------- */
.profile-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
}

.profile-main,
.profile-side {
  display: grid;
  gap: 22px;
}

.map-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e7e0cf;
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-actions {
  margin-top: 16px;
}

.info-list div,
.mini-stats div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee5d6;
}

.info-list div:last-child,
.mini-stats div:last-child {
  border-bottom: 0;
}

.info-list small,
.mini-stats span {
  color: #7b7b6d;
}

.profile-badges {
  margin-bottom: 10px;
}

.light-link {
  color: #fff;
}

.top-gap {
  margin-top: 16px;
}

.back-link {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--bl-color-primary-dark);
  font-weight: 700;
}

.back-link.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* -------------------------------------------------------------------------- */
/* BLOCS COMPLÉMENTAIRES                                                      */
/* -------------------------------------------------------------------------- */
.split-callout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
}

.join-box {
  background: linear-gradient(180deg, #fff5e6, #fff);
  border: 1px solid #f0d9ad;
}

.trust-box {
  background: #fff;
}

.surface-soft {
  background: linear-gradient(180deg, #fff, #faf6ef);
}

/* -------------------------------------------------------------------------- */
/* COULEURS / AVIS / ADMIN                                                    */
/* -------------------------------------------------------------------------- */
.color-filter-box {
  grid-column: 1 / -1;
  background: #fff8ed;
  border: 1px solid #eed9b5;
  border-radius: 20px;
  padding: 18px 16px 18px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.color-filter-box strong {
  display: block;
  margin: 0 0 14px;
  text-align: left;
  width: 100%;
  line-height: 1.2;
  font-weight: 700;
  padding-left: 14px;
}

.color-filter-box legend {
  float: left;
  width: 100%;
  padding: 0 0 0 14px;
  margin: 0 0 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  background: transparent;
}

.color-filter-list {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  margin: 0;
  padding-left: 14px;
  width: 100%;
}

.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7d8bc;
  font-size: 0.92rem;
  min-height: 44px;
  margin: 0;
  white-space: nowrap;
}

.color-pill input {
  accent-color: #7A8F45;
  margin: 0;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.color-pill span {
  display: inline-block;
  line-height: 1;
}

.color-tag {
  background: #f7efe1;
  color: #2f3a2f;
}

.reviews-list {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 18px;
  border: 1px solid #eee5d6;
  background: #faf6ef;
}

.review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.small-text {
  font-size: 0.9rem;
}

.admin-grid {
  display: grid;
  gap: 24px;
}

.admin-login-card {
  max-width: 560px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 8px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  min-height: 48px;
  border: 1px solid var(--bl-color-border);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
}

.admin-error {
  color: #9d2f2f;
  font-weight: 700;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.kpi-card small {
  display: block;
  color: var(--bl-color-text-soft);
  margin-bottom: 8px;
}

.kpi-card strong {
  font-size: 1.9rem;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eee5d6;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f715e;
}

/* -------------------------------------------------------------------------- */
/* FOOTER                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: #fff;
  padding: 40px 0 52px;
  border-top: 1px solid var(--bl-color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 26px;
}

.footer-grid h4 {
  margin: 0 0 10px;
}

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

.footer-grid li {
  margin: 8px 0;
}

/* -------------------------------------------------------------------------- */
/* RESPONSIVE                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .footer-grid,
  .premium-meta,
  .split-callout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid.compact,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    gap: 14px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
  }

  .search-form .btn,
  .search-form button,
  .search-form input[type="submit"],
  .search-form input[type="reset"] {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .footer-grid,
  .search-form,
  .premium-meta,
  .split-callout,
  .profile-grid,
  .admin-kpis {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 12px 0;
  }

  .brand {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .lang-switch {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 42px 0;
  }

  .search-sticky {
    position: static;
  }

  .hero-media {
    order: -1;
  }

  .breeder-card__header {
    flex-direction: column;
  }

  .rating-box {
    min-width: 0;
  }

  .color-filter-list {
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding-left: 8px;
  }

  .color-filter-box strong,
  .color-filter-box legend {
    padding-left: 8px;
  }

  .color-pill {
    width: auto;
  }

  .color-filter-box {
    min-height: auto;
  }
}