/* ===== Modern Restaurant Page Styles ===== */

.page-restaurant {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg);
}

/* Hero Section - Compact Design */
.restaurant-hero {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.rh-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  opacity: 0.4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  filter: grayscale(20%) brightness(1.05);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.rh-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rh-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rh-kicker {
  display: none;
}

.rh-name {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: #1f2937;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.rh-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rh-fav-btn {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rh-fav-btn svg {
  width: 20px;
  height: 20px;
}

.rh-fav-btn.is-active svg path {
  fill: var(--brand-red);
}

/* Location Card */
.rh-location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.rh-location-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.rh-location-label {
  display: none;
}

.rh-location-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
}

.rh-location-icon {
  flex-shrink: 0;
  color: #e53935;
  width: 14px;
  height: 14px;
}

.rh-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #e53935;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.rh-directions-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.rh-directions-btn:hover {
  background: #d32f2f;
  opacity: 0.9;
}

/* Info Grid */
.rh-info-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 4px;
}

.rh-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rh-info-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.rh-info-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
  font-family: 'Outfit', sans-serif;
}

.rh-info-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e53935;
  font-family: 'Outfit', sans-serif;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.rh-info-link:hover {
  opacity: 0.8;
}

.rh-eta-link {
  color: #e53935;
}

.rh-hours {
  position: relative;
}

.rh-hours-popover {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
  min-width: 240px;
  display: none;
}

.rh-hours-popover[aria-hidden="false"] {
  display: block;
}

.rh-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rh-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rh-hours-list li:last-child {
  border-bottom: none;
}

.rh-hours-day {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.9rem;
}

.rh-hours-time {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Hero Image - Hidden to focus on menu */
.rh-image {
  display: none;
}

/* Status Banners */
.orders-paused-banner,
.orders-closed-banner {
  margin: 0 20px 24px;
  padding: 16px 20px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  color: #92400e;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.orders-closed-banner {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

/* Featured section uses same styling as menu sections - no separate styles needed */

/* Menu Filter Bar */
.menu-filter-bar {
  padding: 16px 20px;
  background: var(--card);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-filter-search {
  flex: 1;
  min-width: 180px;
}

.menu-search-input {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  background: var(--bg-light-elevated);
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
  background: var(--card);
}

.menu-filter-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-light-elevated);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-filter-icon-btn:hover {
  background: var(--bg-light);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--brand-red);
}

.menu-filter-icon-btn.menu-filter-icon-btn--active {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: rgba(229, 57, 53, 0.08);
}

.menu-filter-icon-label {
  font-family: 'Outfit', sans-serif;
}

.category-filter-modal {
  z-index: var(--z-modal);
}

.category-filter-modal-inner {
  width: min(400px, 92vw);
  max-height: 80vh;
}

.category-filter-modal .modal-close-btn {
  font-size: 32px;
  line-height: 1;
}

.category-filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

.category-filter-list .menu-filter-btn {
  justify-content: flex-start;
  text-align: left;
}

.menu-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--bg-light-elevated);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.menu-filter-btn:hover {
  background: var(--bg-light);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--ink);
}

.menu-filter-btn.active {
  background: var(--gradient-brand);
  color: var(--text-white);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-button);
}

/* Menu Sections */
.menu-section {
  margin-bottom: 48px;
  padding: 0 20px;
}

.menu-section.hidden {
  display: none;
}

.menu-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}

.menu-category {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

.menu-slider-controls {
  display: flex;
  gap: 8px;
}

.menu-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.menu-slider-btn:hover:not(:disabled) {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.menu-slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Menu Slider - Horizontal Scroll */
.menu-slider {
  position: relative;
  overflow: hidden;
}

.menu-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  padding-bottom: 8px;
}

.menu-slider-track::-webkit-scrollbar {
  height: 6px;
}

.menu-slider-track::-webkit-scrollbar-track {
  background: transparent;
}

.menu-slider-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.menu-slider-track::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Menu Item Cards - Modern Design (for sliders) */
.menu-item-card {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 320px;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-brand);
  transform: scaleY(0);
  transition: transform var(--duration-fast) var(--ease-out);
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 0, 0, 0.1);
}

.menu-item-card:hover::before {
  transform: scaleY(1);
}

.menu-item-card:focus-visible {
  outline: 3px solid rgba(229, 57, 53, 0.3);
  outline-offset: 2px;
}

.mi-thumb {
  width: 100%;
  height: 180px;
  background: var(--bg-light);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
}

.menu-item-card:hover .mi-thumb {
  transform: scale(1.05);
}

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

.mi-info {
  padding: 16px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.mi-title {
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mi-price {
  font-weight: 900;
  color: var(--brand-red);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

.mi-desc {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.mi-aside {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
}

/* Quantity Pill - Modern Design */
.mi-qty-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  min-width: 85px;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: all var(--duration-fast) var(--ease-out);
}

.mi-qty-pill:not(.is-active) {
  min-width: auto;
  padding: 6px 10px;
}

.mi-qty-pill:not(.is-active) .mi-qty-del,
.mi-qty-pill:not(.is-active) .mi-qty-count {
  display: none;
}

.mi-qty-pill.is-active {
  border-color: var(--brand-red);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-button);
}

.mi-qty-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  font-weight: 800;
  line-height: 1;
}

.mi-qty-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mi-qty-btn:active {
  transform: scale(0.95);
}

.mi-qty-soldout {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--brand-red);
  white-space: nowrap;
}

.mi-qty-del {
  font-size: 16px;
  color: var(--brand-red);
}

.mi-qty-count {
  font-weight: 900;
  min-width: 20px;
  text-align: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}

/* Responsive Design */
@media (max-width: 900px) {
  .rh-info-grid {
    flex-direction: column;
    gap: 12px;
  }
  
  .rh-info-item {
    flex-direction: column;
  align-items: flex-start;
    gap: 4px;
  }

  .menu-item-card {
    min-width: 240px;
    max-width: 280px;
  }

  .mi-thumb {
    height: 160px;
  }
}

@media (max-width: 640px) {
  .restaurant-hero {
    padding: 12px 16px;
    margin-bottom: 20px;
  }
  
  .rh-hero-bg {
    width: 150px;
    opacity: 0.3;
  }
  

  .rh-name {
    font-size: 1.5rem;
  }

  .rh-title-row {
    gap: 10px;
  }

  .rh-fav-btn {
    width: 36px;
    height: 36px;
  }

  .rh-location-card {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
  }

  .rh-directions-btn {
    width: 100%;
    justify-content: center;
  }
  
  .rh-info-grid {
    gap: 10px;
  }

  .menu-filter-bar {
    padding: 16px;
  }

  .menu-section {
    padding: 0 16px;
  }

  .menu-item-card {
    min-width: 200px;
    max-width: 240px;
  }

  .mi-thumb {
    height: 140px;
  }

  .orders-paused-banner,
  .orders-closed-banner {
    margin: 0 16px 20px;
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}

/* Menu Item Modal - Enhanced */
.menu-item-modal {
  position: fixed;
  inset: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  overflow: auto;
}

.menu-item-modal.open {
  display: flex;
}

.menu-item-modal__dialog {
  position: relative;
  width: min(1000px, 96vw);
  background: var(--card);
  border-radius: var(--radius-2xl);
  max-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-item-modal__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.2fr);
  align-items: stretch;
  gap: 0;
  max-height: calc(94vh - 60px);
  overflow: auto;
}

.menu-item-modal__media {
  background: var(--bg-light);
  min-height: 360px;
  max-height: 560px;
  position: relative;
  overflow: hidden;
}

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

.menu-item-modal__body {
  padding: 32px;
  display: grid;
  gap: 20px;
  max-height: calc(94vh - 60px);
  overflow-y: auto;
}

.menu-item-modal__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.menu-item-modal__price {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-red);
  font-family: 'Outfit', sans-serif;
}

.menu-item-modal__desc {
  margin: 0;
  color: var(--ink-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.menu-item-modal__addons {
  display: grid;
  gap: 16px;
  margin: 8px 0;
}

.mi-addon-block {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background: var(--bg-light-elevated);
  transition: all var(--duration-fast) var(--ease-out);
}

.mi-addon-block:focus-within {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.mi-addon-title {
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}

.mi-addon-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mi-addon-option {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-out);
}

.mi-addon-option:hover {
  background: rgba(0, 0, 0, 0.02);
}

.mi-addon-option input {
  accent-color: var(--brand-red);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.mi-addon-input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--card);
  transition: all var(--duration-fast) var(--ease-out);
}

.mi-addon-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.mi-addon-has-error {
  border-color: #ef4444;
  background: #fee2e2;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.mi-addon-error {
  margin-top: 8px;
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 700;
}

.mi-note-block {
  margin: 12px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mi-note-label {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}

.mi-note-input {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  resize: vertical;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
  font-family: inherit;
  transition: all var(--duration-fast) var(--ease-out);
}

.mi-note-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.menu-item-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.menu-item-modal__add {
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 900;
  background: var(--gradient-brand);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: all var(--duration-fast) var(--ease-out);
  font-family: 'Outfit', sans-serif;
  flex: 1;
  min-width: 200px;
}

.menu-item-modal__add:hover:not(:disabled) {
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.menu-item-modal__add:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.menu-item-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 10;
}

.menu-item-modal__close:hover {
  background: var(--card);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 901px) {
  .menu-item-modal__close {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .menu-item-modal__grid {
    grid-template-columns: 1fr;
  }

  .menu-item-modal__media {
    min-height: 240px;
    max-height: 360px;
  }

  .menu-item-modal__body {
    padding: 24px;
  }
}

@media (max-width: 540px) {
  .menu-item-modal {
    padding: 12px;
    align-items: flex-start;
    padding-top: calc(var(--header-h, 62px) + 16px);
    z-index: 110;
  }

  .menu-item-modal__dialog {
    border-radius: var(--radius-xl);
    margin-top: 0;
    max-height: calc(100vh - var(--header-h, 62px) - 32px);
  }

  .menu-item-modal__grid {
    row-gap: 0;
  }

  .menu-item-modal__body {
    padding: 20px;
    max-height: calc(100vh - 200px);
  }

  .menu-item-modal__title {
    font-size: 1.35rem;
  }

  .menu-item-modal__add {
    width: 100%;
    min-width: auto;
  }
}

body.no-scroll {
  overflow: hidden;
}
