html {
  font-size: 16px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #f6f6f6;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #2d2d2d;
}

.deli-container {
    max-width: 500px;
    margin: 40px auto;
    background: #fff8f0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
}

.deli-logo {
    width: 120px;
    margin-bottom: 16px;
}

.deli-address, .deli-hours {
    margin: 0 0 12px 0;
    color: #a33;
    font-weight: 500;
}

.menu-section {
    margin-top: 32px;
}

.menu-section h2 {
    color: #b22222;
    margin-bottom: 12px;
    font-size: 1.3em;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #e0b4b4;
    font-size: 1.1em;
}

.menu-section li:last-child {
    border-bottom: none;
}

.condiments-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.condiments-list li {
    background: none;
    border-radius: 0;
    padding: 7px 4px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    color: #a33;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .condiments-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-bubbles li {
    background: linear-gradient(to bottom, #fff5f5 0%, #ffd6d6 100%);
    color: #a33;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: none;
    box-shadow: 0 1px 4px rgba(178,34,34,0.06);
    transition: background 0.2s;
}

.menu-bubbles li span:last-child {
    font-weight: bold;
    color: #b22222;
    text-shadow: none;
}

.menu-bubbles li:hover {
    background: linear-gradient(to bottom, #ffeaea 0%, #ffc1c1 100%);
}