:root {
  --brm-bg: #10100e;
  --brm-card: #181713;
  --brm-card-2: #211f19;
  --brm-text: #f7f0df;
  --brm-muted: #bcb2a0;
  --brm-gold: #d5a64a;
  --brm-line: rgba(255,255,255,.11);
  --brm-radius: 18px;
  --brm-title-font: Georgia, serif;
  --brm-body-font: Inter, Arial, sans-serif;
  --brm-columns: 3;
}

.brm-menu {
  width: 100%;
  max-width: var(--brm-layout-max, 100%);
  margin-left: auto;
  margin-right: auto;
  background: var(--brm-bg);
  color: var(--brm-text);
  border-radius: var(--brm-card-radius, 18px);
  padding: var(--brm-section-py, 56px) var(--brm-section-px, 24px);
  font-family: var(--brm-body-font);
}

.brm-menu * { box-sizing: border-box; }

.brm-inner {
  max-width: var(--brm-content-max, 1200px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}



.brm-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.brm-kicker {
  color: var(--brm-gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.brm-header h1 {
  font-family: var(--brm-title-font);
  font-size: 46px;
  line-height: 1;
  margin: 10px 0 12px;
  color: var(--brm-text);
}

.brm-header p, .brm-cat-desc { color: var(--brm-muted); }

.brm-allergen-legend {
  max-width: var(--brm-layout-max, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto 28px;
  gap: 7px 9px;
  color: var(--brm-muted);
  font-size: 13px;
}

.brm-allergen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor: help;
}

.brm-search-wrap { max-width: 560px; margin: 0 auto 20px; }

.brm-search {
  width: 100%;
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
}

.brm-nav {
  max-width: var(--brm-layout-max, 100%);
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 36px;
}

.brm-nav a {
  background: var(--brm-card-2);
  color: var(--brm-text);
  border: 1px solid var(--brm-line);
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
}

.brm-nav a:hover {
  color: var(--brm-gold);
  border-color: var(--brm-gold);
}

.brm-section {
  width: 100%;
  margin: 38px auto;
}

.brm-section h2 {
  color: var(--brm-gold);
  font-family: var(--brm-title-font);
  font-size: 32px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brm-line);
}

.brm-grid {
  display: grid;
  grid-template-columns: repeat(var(--brm-columns), minmax(0, 1fr));
  gap: 16px;
}

.brm-card {
  overflow: hidden;
  background: var(--brm-card);
  border: 1px solid var(--brm-line);
  border-radius: var(--brm-radius);
  transition: transform .18s ease, border-color .18s ease;
}

.brm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213,166,74,.5);
}

.brm-photo img {
  width: 100%;
  height: var(--brm-card-img-h, 220px);
  object-fit: cover;
  display: block;
}

.brm-card-body { padding: 16px; }

.brm-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.brm-card h3 {
  color: var(--brm-text);
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 850;
}

.brm-price {
  color: var(--brm-gold);
  font-weight: 900;
  white-space: nowrap;
}

.brm-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 3px 0 8px;
}

.brm-flags span {
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
}

.brm-card-desc {
  color: var(--brm-muted);
  font-size: 14px;
  line-height: 1.5;
}

.brm-card-desc p { margin: 0; }

.brm-price-variants {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--brm-line);
}

.brm-price-variant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  color: var(--brm-muted);
  font-size: 14px;
  line-height: 1.25;
}

.brm-price-variant-label {
  min-width: 0;
}

.brm-price-variant-value {
  color: var(--brm-gold);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.brm-card-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.brm-empty {
  padding: 18px;
  background: #fff3cd;
  border-radius: 8px;
}

.brm-hidden { display: none !important; }

.brm-google-reviews {
  width: 100%;
  max-width: var(--brm-layout-max, 100%);
  margin-left: auto;
  margin-right: auto;
  background: var(--brm-bg);
  color: var(--brm-text);
  border-radius: var(--brm-card-radius, 18px);
  padding: var(--brm-section-py, 56px) var(--brm-section-px, 24px);
  font-family: var(--brm-body-font);
}

.brm-google-reviews * { box-sizing: border-box; }

.brm-google-reviews-inner {
  max-width: var(--brm-content-max, 1200px);
  margin: 0 auto;
}

.brm-google-reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.brm-google-reviews-header h2 {
  color: var(--brm-text);
  font-family: var(--brm-title-font);
  font-size: 42px;
  line-height: 1;
  margin: 10px 0 10px;
}

.brm-google-reviews-header p {
  color: var(--brm-muted);
  margin: 0;
}

.brm-google-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--brm-muted);
  font-size: 13px;
}

.brm-google-reviews-summary strong {
  color: var(--brm-gold);
  font-size: 20px;
}

.brm-google-reviews-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
}

.brm-google-reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 10px;
}

.brm-google-reviews-track::-webkit-scrollbar {
  display: none;
}

.brm-google-review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  background: var(--brm-card);
  border: 1px solid var(--brm-line);
  border-radius: var(--brm-radius);
  padding: 20px;
  position: relative;
  isolation: isolate;
  opacity: .78;
  transform: scale(.98);
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.brm-google-review-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 6px;
  z-index: -1;
  color: rgba(213,166,74,.12);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}

.brm-google-review-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(213,166,74,.55);
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
}

.brm-google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.brm-google-review-top img,
.brm-google-review-avatar {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brm-google-review-top img {
  object-fit: cover;
}

.brm-google-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brm-gold);
  color: #111;
  font-weight: 900;
}

.brm-google-review-card h3 {
  margin: 0 0 4px;
  color: var(--brm-text);
  font-size: 16px;
  line-height: 1.2;
}

.brm-google-review-stars {
  color: var(--brm-gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.brm-google-review-text {
  color: var(--brm-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.brm-google-review-date {
  margin-top: 14px;
  color: color-mix(in srgb, var(--brm-muted) 70%, transparent);
  font-size: 12px;
}

.brm-google-reviews-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--brm-line);
  border-radius: 50%;
  background: var(--brm-card-2);
  color: var(--brm-gold);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.brm-google-reviews-arrow:hover {
  border-color: var(--brm-gold);
}

.brm-google-reviews-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 680px;
  margin: 16px auto 0;
}

.brm-google-reviews-counter {
  color: var(--brm-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.brm-google-reviews-current {
  color: var(--brm-gold);
}

.brm-google-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.brm-google-reviews-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.brm-google-reviews-dot.is-active {
  width: 26px;
  background: var(--brm-gold);
}

.brm-google-reviews-progress {
  height: 2px;
  min-width: 120px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.brm-google-reviews-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brm-gold);
  transition: width .25s ease;
}

.brm-google-reviews-link {
  text-align: center;
  margin-top: 18px;
}

.brm-google-reviews-link a {
  color: var(--brm-gold);
  text-decoration: none;
  font-weight: 800;
}

.brm-google-reviews-link a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .brm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brm-google-review-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 720px) {
  .brm-menu {
    padding: 32px 12px;
    border-radius: 0;
  }

  .brm-header h1 { font-size: 34px; }

  .brm-grid { grid-template-columns: 1fr; }

  .brm-nav {
    position: relative;
    top: auto;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .brm-nav a { white-space: nowrap; }

  .brm-google-reviews {
    padding: 32px 14px;
    border-radius: 0;
  }

  .brm-google-reviews-header h2 {
    font-size: 32px;
  }

  .brm-google-reviews-shell {
    grid-template-columns: 1fr;
  }

  .brm-google-reviews-arrow {
    display: none;
  }

  .brm-google-review-card {
    flex-basis: 88%;
    padding: 16px;
  }

  .brm-google-reviews-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .brm-google-reviews-progress {
    width: 140px;
    margin: 0 auto;
  }
}

.brm-logo { max-width: 150px; max-height: 110px; object-fit: contain; display:block; margin:0 auto 14px; }


/* BRM v0.8 - Desktop and responsive typography controls */
.brm-section h2 {
  font-size: var(--brm-web-category-size, 32px);
}

.brm-card h3 {
  font-size: var(--brm-web-item-title-size, 18px);
}

.brm-card-desc {
  font-size: var(--brm-web-description-size, 14px);
}

.brm-price {
  font-size: var(--brm-web-price-size, 17px);
}

.brm-grid {
  gap: var(--brm-web-card-gap, 16px);
}

@media (max-width: 720px) {
  .brm-section h2 {
    font-size: var(--brm-mobile-category-size, 24px);
  }

  .brm-card h3 {
    font-size: var(--brm-mobile-item-title-size, 15px);
    margin-bottom: 5px;
  }

  .brm-card-desc {
    font-size: var(--brm-mobile-description-size, 12px);
    line-height: 1.38;
  }

  .brm-price {
    font-size: var(--brm-mobile-price-size, 15px);
  }

  .brm-allergen,
  .brm-flags span {
    font-size: var(--brm-mobile-badge-size, 10px);
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
  }

  .brm-grid {
    gap: var(--brm-mobile-card-gap, 10px);
  }

  .brm-card-body {
    padding: var(--brm-mobile-card-padding, 12px);
  }

  .brm-photo img {
    height: var(--brm-mobile-image-height, 150px);
  }

  .brm-card-top {
    gap: 8px;
  }

  .brm-section {
    margin: 24px auto;
  }

  .brm-mobile-compact .brm-header h1 {
    font-size: 28px;
  }

  .brm-mobile-compact .brm-header p {
    font-size: 12px;
  }

  .brm-mobile-compact .brm-nav a {
    font-size: 12px;
    padding: 7px 10px;
  }

  .brm-mobile-comfort .brm-card-desc {
    line-height: 1.55;
  }
}


/* BRM v0.9 - Mobile category filter without horizontal scrollbar */
@media (max-width: 720px) {
  .brm-nav {
    overflow-x: visible !important;
    overflow-y: visible !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 7px !important;
    padding-bottom: 0 !important;
  }

  .brm-nav a {
    white-space: normal !important;
    text-align: center;
    font-size: 11px !important;
    line-height: 1.15;
    padding: 8px 10px !important;
    max-width: 145px;
  }
}


/* BRM v1.0 - Panzerotti mobile polish */
html,
body {
  background-color: var(--brm-bg, #10100e);
}

.brm-menu {
  background-color: var(--brm-bg, #10100e);
}

.brm-card {
  height: auto !important;
}

@media (max-width: 720px) {
  html,
  body {
    background-color: var(--brm-bg, #10100e) !important;
  }

  .brm-menu {
    width: 100% !important;
    background-color: var(--brm-bg, #10100e) !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-top: 28px !important;
  }

  .brm-inner {
    max-width: 100% !important;
  }

  .brm-header {
    margin-bottom: 16px !important;
  }

  .brm-logo {
    max-width: 145px !important;
    max-height: 80px !important;
    margin-bottom: 12px !important;
  }

  .brm-kicker {
    font-size: 11px !important;
    letter-spacing: .16em !important;
  }

  .brm-header h1 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .brm-header p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
  }

  .brm-allergen-legend {
    margin-top: 14px !important;
    margin-bottom: 18px !important;
    gap: 7px 8px !important;
    font-size: 12px !important;
  }

  .brm-search-wrap {
    margin-bottom: 16px !important;
  }

  .brm-search {
    height: 42px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    border-radius: 3px !important;
  }

  .brm-nav {
    margin-bottom: 30px !important;
  }

  .brm-nav a {
    max-width: none !important;
    border-radius: 999px !important;
  }

  .brm-section {
    margin-top: 30px !important;
    margin-bottom: 28px !important;
  }

  .brm-section h2 {
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    line-height: 1.1 !important;
  }

  .brm-cat-desc {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
  }

  .brm-grid {
    gap: var(--brm-mobile-card-gap, 10px) !important;
  }

  .brm-card {
    width: 94% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 18px !important;
    height: auto !important;
  }

  .brm-card-body {
    padding: var(--brm-mobile-card-padding, 14px) !important;
  }

  .brm-card-top {
    align-items: flex-start !important;
  }

  .brm-card h3 {
    line-height: 1.15 !important;
    max-width: calc(100% - 75px);
  }

  .brm-price {
    min-width: 65px;
    text-align: right;
    line-height: 1.15 !important;
    padding-top: 1px;
  }

  .brm-card-desc {
    margin-top: 4px !important;
    line-height: 1.33 !important;
  }

  .brm-price-variants {
    gap: 6px !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  .brm-price-variant {
    font-size: 12px !important;
    gap: 10px !important;
  }

  .brm-card-allergens {
    margin-top: 10px !important;
    gap: 5px !important;
  }

  .brm-allergen,
  .brm-flags span {
    min-width: 24px !important;
    height: 24px !important;
    padding: 0 6px !important;
    line-height: 24px !important;
  }

  .brm-flags {
    margin-top: 3px !important;
    margin-bottom: 6px !important;
    gap: 5px !important;
  }

  .brm-photo img {
    height: var(--brm-mobile-image-height, 150px) !important;
  }
}


/* BRM v1.1 - better mobile title wrapping */
@media (max-width: 720px) {
  .brm-card h3 {
    max-width: calc(100% - 58px) !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .brm-card h3.brm-title-long {
    font-size: calc(var(--brm-mobile-item-title-size, 15px) - 1px) !important;
    letter-spacing: -0.01em;
  }

  .brm-card h3.brm-title-xlong {
    font-size: calc(var(--brm-mobile-item-title-size, 15px) - 2px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.015em;
  }

  .brm-price {
    min-width: 52px !important;
    font-size: calc(var(--brm-mobile-price-size, 15px) - 1px) !important;
  }

  .brm-card-top {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 8px !important;
  }

  .brm-card-top h3 {
    grid-column: 1;
  }

  .brm-card-top .brm-price {
    grid-column: 2;
  }
}


/* BRM v1.2 - Allergen icon + label mode */
.brm-allergen-with-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brm-muted);
  font-size: 12px;
  line-height: 1;
  margin-right: 6px;
  margin-bottom: 6px;
}

.brm-allergen-with-label .brm-allergen {
  flex: 0 0 auto;
}

.brm-allergen-label {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .brm-card-allergens {
    align-items: center;
  }

  .brm-allergen-with-label {
    font-size: 11px !important;
    gap: 5px;
    margin-right: 4px;
    margin-bottom: 4px;
  }

  .brm-allergen-label {
    max-width: 95px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* BRM v1.7.3 allergen legend fix */
.brm-allergen-legend-wrap {
  margin: 18px auto 28px;
  text-align: center;
}

.brm-allergen-legend-title {
  color: var(--brm-gold, #d5a64a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brm-allergen-legend-wrap .brm-allergen-legend {
  margin-top: 0 !important;
}


/* BRM v1.7.5 - allergen badges more discreet under dishes */
.brm-card-allergens {
  gap: 5px !important;
  margin-top: 9px !important;
}

.brm-card-allergens .brm-allergen {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.brm-card-allergens .brm-allergen-with-label .brm-allergen {
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  font-size: 10px !important;
}

@media (max-width: 720px) {
  .brm-card-allergens {
    gap: 4px !important;
    margin-top: 8px !important;
  }

  .brm-card-allergens .brm-allergen {
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
  }
}


/* BRM v1.7.6 - allergen SVG icons inside circles */
.brm-allergen-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brm-card-allergens .brm-allergen-icon svg {
  width: 13px;
  height: 13px;
}

.brm-allergen-legend .brm-allergen-icon svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 720px) {
  .brm-card-allergens .brm-allergen-icon svg {
    width: 12px;
    height: 12px;
  }
}


/* BRM v1.7.7 - allergen icons without circles, clearer rendering */
.brm-card-allergens {
  gap: 9px !important;
  align-items: center !important;
}

.brm-card-allergens .brm-allergen-icon {
  background: transparent !important;
  color: var(--brm-gold, #d5a64a) !important;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}

.brm-card-allergens .brm-allergen-icon svg {
  width: 21px !important;
  height: 21px !important;
  stroke-width: 2.15 !important;
}

.brm-card-allergens .brm-allergen-with-label {
  gap: 5px !important;
  color: var(--brm-muted, #bcb2a0) !important;
}

/* Keep legend readable but also icon-focused */
.brm-allergen-legend .brm-allergen-icon {
  background: transparent !important;
  color: var(--brm-gold, #d5a64a) !important;
  border: 1px solid rgba(213,166,74,.45) !important;
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
}

.brm-allergen-legend .brm-allergen-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.05 !important;
}

@media (max-width: 720px) {
  .brm-card-allergens {
    gap: 8px !important;
  }

  .brm-card-allergens .brm-allergen-icon {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
  }

  .brm-card-allergens .brm-allergen-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
}


/* BRM v1.8 - Panzerotti allergen modes: icon, icon + text, circle + letter */
.brm-card-allergens {
  align-items: center !important;
}

.brm-allergen-size-small .brm-card-allergens { gap: 7px !important; }
.brm-allergen-size-normal .brm-card-allergens { gap: 9px !important; }
.brm-allergen-size-large .brm-card-allergens { gap: 12px !important; }

.brm-allergen-spacing-small .brm-card-allergens { gap: 6px !important; }
.brm-allergen-spacing-medium .brm-card-allergens { gap: 9px !important; }
.brm-allergen-spacing-large .brm-card-allergens { gap: 13px !important; }

.brm-card-allergens .brm-allergen-pro-icon,
.brm-allergen-legend .brm-allergen-pro-icon {
  background: transparent !important;
  color: var(--brm-gold, #d5a64a) !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.brm-card-allergens .brm-allergen-pro-icon {
  width: 23px !important;
  min-width: 23px !important;
  height: 23px !important;
}

.brm-card-allergens .brm-allergen-pro-icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  fill: currentColor !important;
  stroke: none !important;
}

.brm-allergen-size-small .brm-card-allergens .brm-allergen-pro-icon {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
}

.brm-allergen-size-small .brm-card-allergens .brm-allergen-pro-icon svg {
  width: 19px !important;
  height: 19px !important;
}

.brm-allergen-size-large .brm-card-allergens .brm-allergen-pro-icon {
  width: 27px !important;
  min-width: 27px !important;
  height: 27px !important;
}

.brm-allergen-size-large .brm-card-allergens .brm-allergen-pro-icon svg {
  width: 26px !important;
  height: 26px !important;
}

.brm-card-allergens .brm-allergen-letter {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.brm-allergen-size-small .brm-card-allergens .brm-allergen-letter {
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  font-size: 10px !important;
}

.brm-allergen-size-large .brm-card-allergens .brm-allergen-letter {
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  font-size: 12px !important;
}

.brm-card-allergens .brm-allergen-with-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--brm-muted, #bcb2a0) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  margin-right: 4px !important;
}

.brm-card-allergens .brm-allergen-with-label .brm-allergen-label {
  white-space: nowrap !important;
}

.brm-allergen-legend .brm-allergen-pro-icon {
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
}

.brm-allergen-legend .brm-allergen-pro-icon svg {
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
  stroke: none !important;
}

@media (max-width: 720px) {
  .brm-card-allergens .brm-allergen-pro-icon {
    width: 21px !important;
    min-width: 21px !important;
    height: 21px !important;
  }

  .brm-card-allergens .brm-allergen-pro-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .brm-card-allergens .brm-allergen-with-label {
    font-size: 11px !important;
    gap: 5px !important;
  }

  .brm-card-allergens .brm-allergen-label {
    max-width: 95px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}


/* BRM v1.8.1 - circle + letter + text mode */
.brm-card-allergens .brm-allergen-letter-with-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: var(--brm-muted, #bcb2a0) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  margin-right: 6px !important;
}

.brm-card-allergens .brm-allergen-letter-with-label .brm-allergen-letter {
  flex: 0 0 auto !important;
}

.brm-allergen-size-small .brm-card-allergens .brm-allergen-letter-with-label {
  font-size: 11px !important;
  gap: 5px !important;
}

.brm-allergen-size-large .brm-card-allergens .brm-allergen-letter-with-label {
  font-size: 13px !important;
  gap: 8px !important;
}

@media (max-width: 720px) {
  .brm-card-allergens .brm-allergen-letter-with-label {
    font-size: 11px !important;
    gap: 5px !important;
  }

  .brm-card-allergens .brm-allergen-letter-with-label .brm-allergen-label {
    max-width: 92px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}
