:root{
  --headline:#304862;
  --hover:#de4640;
  --text:#4d647e;
  --muted:#6b869c;

  --card-bg:#f7f9fb;
  --border:#e0e6ec;
  --shadow:0 10px 26px rgba(48,72,98,.18);
}

.brand-inner{
  width:min(1240px,95%);
  margin:0 auto;
}

.brand-filters-section{ padding:.75rem 0 1rem; }
.brand-filters{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}

.brand-list-section{ padding:1rem 0 1.25rem; }

.brand-list-grid{
  display:grid;
  gap:1rem;

  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  justify-items: center;
}

.brand-list-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:360px;
  cursor:pointer;
  position:relative;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.brand-list-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(48,72,98,.22);
  border-color:rgba(48,72,98,.18);
  background:#ffffff;
}

.brand-list-card:focus-within{
  box-shadow:0 0 0 3px rgba(48,72,98,.25);
  border-color:rgba(48,72,98,.4);
}


.brand-list-media{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#e9eef4;
}

.brand-list-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.brand-list-card:hover .brand-list-media img,
.brand-list-media:hover img{
  transform:scale(1.04);
}

.brand-list-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.14));
  opacity:0; transition:.25s;
}

.brand-list-card:hover .brand-list-overlay,
.brand-list-media:hover .brand-list-overlay{
  opacity:1;
}

.brand-popularity-badge {
  position: absolute;
  top: .55rem;
  left: .55rem;
  z-index: 3;
  display: inline-flex;
  gap: .2rem;

  background: rgba(0,0,0,.75);
  padding: .32rem .55rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  cursor: help;
}

.star .icon-star {
  width: 14px;
  height: 14px;
}

.star.filled .icon-star path {
  fill: #f4c542 !important;
}

.star.empty .icon-star path {
  fill: #777 !important;
  opacity: .45;
}

.brand-list-body{
  padding:1rem;
  display:flex;
  flex-direction:column;
  gap:.75rem;
  text-align:center;
}

.brand-title-like{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.35rem;
}

.brand-list-title{
  margin:0;
  color:var(--headline);
  font-weight:700;
  font-size:1.2rem;
}

.brand-list-title-link{
  text-decoration:none;
  color:inherit;
}

.brand-list-title-link:hover .brand-list-title{
  color:var(--hover);
}

.brand-location{
  display:flex;
  justify-content:center;
}

.brand-list-cta{
  display:inline-flex;
  justify-content:center;
  margin:0 auto;
  padding:.55rem .9rem;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--card-bg);
  color:var(--headline);
  font-weight:700;
  text-decoration:none;
  letter-spacing:.2px;
  transition:.2s;
}

.brand-list-cta:hover{
  color:var(--hover);
  border-color:rgba(222,70,64,.35);
}

.brand-empty-section{ padding:1.25rem 0; }
.brand-empty{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:1rem;
  text-align:center;
}
.brand-empty-title{
  margin:0;
  color:var(--headline);
  font-weight:700;
  font-size: 1.125rem !important;
}
.brand-empty-text{
  color:var(--muted);
  margin-top:.35rem;
}

.brand-ads-section{ padding:1rem 0; }

.brand-filters-section {
  padding: 1.25rem 0 1.5rem;
  margin-bottom: 1.25rem;
}

.brand-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  align-items: flex-end;
}

.brand-filter-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .35rem;
  letter-spacing: .3px;
}

.brand-filter-select {
  width: 100%;
  padding: .7rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--headline);
  font-weight: 800;
  letter-spacing: .2px;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: all .2s ease;
  background-image: url("data:image/svg+xml,%3Csvg fill='%234d647e' height='10' width='10' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 12px;
}

.brand-filter-select:hover {
  border-color: rgba(48,72,98,.50);
}

.brand-filter-select:focus {
  border-color: var(--headline);
  box-shadow: none;
  outline: none;
}

@media (max-width: 480px) {
  .brand-filters-section {
    padding: .75rem 0 1rem;
  }
  .brand-filter-select {
    padding: .6rem .75rem;
  }
}

.continents-nav{
  padding:.75rem 0 0;
}

.continents-inner{
  display:flex;
  justify-content:center;
}

.continents-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  justify-content:center;
}

.continent-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.25rem .9rem;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.3px;
  text-decoration:none;
  color:var(--muted);
  cursor:pointer;
  transition:all .18s ease-out;
}

.continent-chip:hover{
  background:var(--card-bg);
  border-color:var(--border);
  color:var(--headline);
  box-shadow:0 6px 18px rgba(48,72,98,.12);
  transform:translateY(-1px);
}

.continent-chip.is-active{
  background:var(--headline);
  color:#fff;
  border-color:var(--headline);
  box-shadow:var(--shadow);
}

.continent-chip.is-active:hover{
  transform:translateY(-2px);
}

.brand-years{
  margin:.25rem 0 0;
  font-size:.9rem;
  color:var(--muted);
  font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
}

.brand-stars{
  margin-top:.35rem;
}

.brand-list-card .brand-stars{
  display:none;
}
