.dish-options {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.dish-options label,
.dish-option-modal__fields label {
  display: grid;
  gap: 5px;
  color: #d9b458;
  font-size: 13px;
}

.dish-options select,
.dish-option-modal__fields select {
  width: min(100%, 320px);
  min-height: 40px;
  padding: 8px 34px 8px 12px;
  border: 1px solid rgba(217, 180, 88, .55);
  border-radius: 10px;
  background: #0a3a2e;
  color: #f7e9bf;
  font: 600 14px/1.2 Montserrat, sans-serif;
  cursor: inherit;
}

.dish-options select.is-invalid,
.dish-option-modal__fields select.is-invalid {
  border-color: #e7a09e;
  box-shadow: 0 0 0 2px rgba(231, 160, 158, .22);
}

.page-shell--menu .menu-section--card-pilot .dish > div > .dish-options,
.page-shell--menu .menu-section--card-pilot .dish .dish-add {
  display: none !important;
}

.dish-option-modal[hidden] { display: none; }

.dish-option-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.dish-option-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 19, 14, .76);
  backdrop-filter: blur(5px);
}

.dish-option-modal__dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(217, 180, 88, .7);
  border-radius: 26px;
  background: linear-gradient(145deg, #063a2d 0%, #082b24 54%, #6f2a20 125%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  color: #f7e9bf;
}

.dish-option-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #f1d27b;
  font: 32px/1 Georgia, serif;
}

.dish-option-modal__eyebrow {
  margin: 0 35px 5px 0;
  color: #d9b458;
  font: 600 13px/1.2 Montserrat, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dish-option-modal h2 {
  margin: 0 35px 20px 0;
  color: #f7e9bf;
  font: 600 27px/1.1 'Cormorant Infant', Georgia, serif;
}

.dish-option-modal__fields {
  display: grid;
  gap: 14px;
}

.dish-option-modal__fields .dish-options { margin: 0; }
.dish-option-modal__fields select { width: 100%; }

.dish-option-modal__fields .dish-native-select {
  display: none;
}

.dish-custom-select { position: relative; }

.dish-custom-select__button,
.dish-custom-select__option {
  width: 100%;
  border: 0;
  color: #f7e9bf;
  font: 600 14px/1.2 Montserrat, sans-serif;
  text-align: left;
}

.dish-custom-select__button {
  min-height: 48px;
  padding: 10px 42px 10px 18px;
  border: 1px solid rgba(217, 180, 88, .75);
  border-radius: 999px;
  background: #0a3a2e;
}

.dish-custom-select__button::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f7e9bf;
  border-bottom: 2px solid #f7e9bf;
  transform: rotate(45deg);
}

.dish-custom-select__list {
  position: absolute;
  z-index: 5;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 88, .55);
  border-radius: 12px;
  background: #0a3a2e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .38);
}

.dish-custom-select__list[hidden] { display: none; }

.dish-custom-select__option {
  display: block;
  padding: 10px 18px;
  background: #0a3a2e;
}

.dish-custom-select__option:hover,
.dish-custom-select__option:focus-visible {
  background: #8b1f28;
  outline: none;
}

.dish-custom-select.is-invalid .dish-custom-select__button {
  border-color: #e7a09e;
  box-shadow: 0 0 0 2px rgba(231, 160, 158, .22);
}

.dish-option-modal__confirm {
  width: 100%;
  margin-top: 22px;
  padding: 13px 18px;
  border: 1px solid #d9b458;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b1f28, #6d2024);
  color: #f8e8b5;
  font: 700 18px/1.1 'Cormorant Infant', Georgia, serif;
}

body.dish-option-is-open { overflow: hidden; }

@media (max-width: 700px) {
  .dish-option-modal { padding: 12px; }
  .dish-option-modal__dialog { padding: 26px 20px 22px; border-radius: 20px; }
  .dish-option-modal h2 { font-size: 23px; }
}

.cart-item__option {
  color: #f7e9bf !important;
  font-size: 13px;
}

.cart-fab-total {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 14%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  transform: translateX(-8px) rotate(3deg);
  transform-origin: center;
  color: #173b27;
  font: 700 17px/1 'Hottabych Eastern', Georgia, serif;
  text-align: center;
  letter-spacing: .01em;
  white-space: nowrap;
  text-shadow:
    .35px 0 currentColor,
    -.35px 0 currentColor,
    0 1px rgba(255, 237, 170, .35);
}

.cart-fab-total__amount,
.cart-fab-total__currency {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.cart-fab {
  top: 150px;
  right: 4px;
  bottom: auto;
  width: 144px;
  height: 165px;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: url('../images/optimized/branding/hottabych-cart-bag-320.webp') center/contain no-repeat;
  box-shadow: none;
  transition: transform .2s ease, filter .2s ease;
}

html[lang^="en"] .cart-fab {
  background-image: url('../images/optimized/branding/hottabych-cart-bag-en-320.webp');
}

.cart-fab:hover,
.cart-fab:focus-visible {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 8px 12px rgba(216, 179, 95, .28));
}

.cart-fab > span {
  display: none;
}

.cart-fab .cart-count {
  position: absolute;
  top: 14px;
  right: 16px;
  min-width: 27px;
  height: 27px;
  color: #f7d982;
  background: #721c24;
  border: 1px solid #d9b458;
  box-shadow: 0 3px 9px rgba(0, 0, 0, .25);
}

.dish-wine-note {
  max-width: 620px;
  margin-top: 8px !important;
  color: #f4d98c !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
}

.cart-clear {
  width: 76%;
  margin: 10px auto 0;
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(231, 160, 158, .68);
  border-radius: 14px;
  background: rgba(114, 28, 36, .18);
  color: #f0b0ad;
  font: 600 16px/1.15 'Cormorant Infant', Georgia, serif;
  cursor: inherit;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cart-clear:hover,
.cart-clear:focus-visible {
  border-color: #e7a09e;
  background: rgba(114, 28, 36, .48);
  color: #fff4d1;
}

.cart-clear:disabled {
  opacity: .42;
}

@media (max-width: 700px) {
  .cart-fab {
    position: fixed;
    top: 92px;
    right: 8px;
    bottom: auto;
    width: 80px;
    height: 92px;
  }

  .cart-fab-total {
    bottom: 14%;
    font-size: 11px;
  }

  .cart-fab .cart-count {
    top: 6px;
    right: 7px;
    min-width: 21px;
    height: 21px;
    font-size: 11px;
  }

  body.menu-category-view .cart-fab {
    top: 96px;
  }
}
