/* Główny plik stylów */

:root {
  --primary-color: #ff442f;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
  --text-color: #333;
  --light-text: #777;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --success-color: #2ecc71;
  --warning-color: #f1c40f;
  --danger-color: #c44132;
  --border-color: #ddd;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 5px;
  --transition: all 0.3s ease;
  --menu-animation-duration: 0.4s;
}

/* Reset i podstawowe style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

body.menu-open {
  overflow-y: scroll;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: #c0392b;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Przyciski */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #c0392b;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #2980b9;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.9rem;
}

.btn-danger {
  background-color: var(--danger-color);
  color: white;
}

.btn-danger:hover {
  background-color: #c0392b;
}

.btn-success {
  background-color: var(--success-color);
  color: white;
}

.btn-success:hover {
  background-color: #27ae60;
}

/* Nagłówek - nowy układ */
.site-header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
}

/* Główna nawigacja (środek na PC) */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin: 0 20px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-menu li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--primary-color);
}

.nav-menu li.active a {
  color: var(--primary-color);
  background-color: rgba(231, 76, 60, 0.1);
}

/* Przycisk hamburger (tylko mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 5px;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

/* Klasa do ukrywania przycisku hamburger */
.menu-toggle.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Koszyk (prawa strona na PC) */
.cart-icon {
  position: relative;
}

.cart-link {
  font-size: 1.2rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cart-link:hover {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobilne menu (pełny ekran) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  overflow-y: auto;
}

/* Ukryj całkowicie menu mobilne w wersji desktopowej */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-items li {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-items li {
  opacity: 1;
  transform: translateY(0);
}

/* Dodajemy opóźnienie dla każdego elementu menu */
.mobile-menu-items li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-items li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-items li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-items li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu-items li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu-items li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu-items li:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-menu-items li:nth-child(8) {
  transition-delay: 0.45s;
}

.mobile-menu-items li a {
  display: block;
  padding: 12px 15px;
  font-size: 1.2rem;
  color: var(--text-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-menu-items li a:hover {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--primary-color);
}

.mobile-menu-items li.active a {
  background-color: rgba(231, 76, 60, 0.1);
  color: var(--primary-color);
}

.mobile-cart a {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.mobile-cart i {
  font-size: 1.2rem;
}

/* Ukrywanie/pokazywanie elementów na różnych urządzeniach */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Stopka */
.site-footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-info h3,
.footer-hours h3,
.footer-links h3 {
  margin-bottom: 15px;
  color: white;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sekcja hero */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Sekcje */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Funkcje */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Dzisiejsze menu */
.today-menu {
  padding: 80px 0;
}

.sales-closed-message {
  color: #fff;
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.no-menu-message {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
}

.menu-preview .menu-category {
  margin-bottom: 40px;
}

.menu-preview .menu-category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.menu-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  /* Add flex to allow content to stretch */
  flex-direction: column;
  /* Stack children vertically */
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-details {
  padding: 20px;
  display: flex;
  /* Make it a flex container */
  flex-direction: column;
  /* Stack children vertically */
  flex-grow: 1;
  /* Allow it to grow to fill available space */
}

.menu-item-details h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.menu-item-details .btn {
  margin-top: auto;
}

.menu-item-description {
  color: var(--light-text);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.menu-item-price {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.view-more {
  text-align: center;
  margin-top: 20px;
}

.full-menu-link {
  text-align: center;
  margin-top: 40px;
}

/* Jak to działa */
.how-it-works {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  position: relative;
  padding: 25px 10px;
  border-radius: 20px;
  transition: ease-in-out 0.3s;
}


#mobile-cart-count {
  display: none;
}

.step:hover {
  transform: scale(1.02);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step h3 {
  margin-bottom: 10px;
}

/* Formularze */
.auth-form {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.auth-form h1 {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: var(--light-text);
  font-size: 0.8rem;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-group.checkbox label {
  margin-bottom: 0;
}

.auth-links {
  margin-top: 20px;
  text-align: center;
}

.auth-links p {
  margin-bottom: 10px;
}

/* Alerty */
.alert {
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* Menu strona */
.menu-header {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 0 30px;
  text-align: center;
}

.menu-header h1 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.menu-header p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.menu-navigation {
  margin-top: 30px;
}

.menu-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.menu-navigation ul li a {
  display: block;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 20px;
  transition: var(--transition);
}

.menu-navigation ul li a:hover {
  background-color: white;
  color: var(--primary-color);
}

.full-menu {
  padding: 50px 0;
}

.menu-category {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.menu-category h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.menu-item-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-card .menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-card .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.menu-item-note {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--primary-color);
  color: #282828;
}

.menu-item-content .btn {
  margin-top: auto;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 600px;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.sides-list,
.soups-list {
  margin: 20px 0;
  max-height: 300px;
  overflow-y: auto;
}

.side-item,
.soup-item {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

.side-item:last-child,
.soup-item:last-child {
  border-bottom: none;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* Przycisk dodania zupy */
.soup-promo {
  margin: 15px 0;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  text-align: left;
  border: 1px dashed var(--secondary-color);
}

.soup-promo button {
  width: 100%;
  padding: 12px;
  font-weight: bold;
}

/* Powiadomienie o dodaniu do koszyka */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  display: none;
  animation: slideIn 0.3s ease-out;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Animacje */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Koszyk strona */
.cart-page {
  padding: 50px 0;
}

.cart-page h1 {
  margin-bottom: 30px;
}

.cart-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 15px 0;
  border-bottom: 2px solid var(--primary-color);
  font-weight: bold;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.cart-item-sides {
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: var(--transition);
}

.quantity-btn:hover {
  background-color: var(--light-bg);
}

.remove-btn {
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.remove-btn:hover {
  color: #c0392b;
  transform: scale(1.1);
}

.cart-empty {
  text-align: center;
  padding: 50px 0;
}

.cart-summary {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.cart-summary h2 {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 15px;
}

.discount-form {
  margin-bottom: 20px;
}

.discount-form input {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-right: 10px;
}

.delivery-options {
  margin-bottom: 30px;
}

.delivery-options h2 {
  margin-bottom: 20px;
}

.delivery-type {
  margin-bottom: 20px;
}

.delivery-type label {
  margin-right: 20px;
  cursor: pointer;
}

.delivery-address {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.order-notes {
  margin-bottom: 30px;
}

.order-notes textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  height: 100px;
}

/* Checkout strona */
.checkout-page {
  padding: 50px 0;
}

.checkout-page h1 {
  margin-bottom: 30px;
}

.order-summary {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.order-summary h2 {
  margin-bottom: 20px;
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
  border-bottom: none;
}


.order-item span {
  padding-left: 10px;
}



.order-item-name {
  flex-grow: 1;
}

.order-item-quantity {
  margin: 0 20px;
}

.order-details {
  margin-bottom: 30px;
}

.order-details h2 {
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  margin-bottom: 10px;
}

.detail-label {
  width: 150px;
  font-weight: bold;
}

.payment-methods {
  margin-bottom: 30px;
}

.payment-methods h2 {
  margin-bottom: 20px;
}

.payment-method {
  margin-bottom: 15px;
}

.payment-method label {
  margin-left: 10px;
  cursor: pointer;
}

.terms-agreement {
  margin-bottom: 30px;
}

.terms-agreement label {
  margin-left: 10px;
  cursor: pointer;
}

/* Profil strona */
.profile-page {
  padding: 50px 0;
}

.profile-page h1 {
  margin-bottom: 30px;
}

.profile-info {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.profile-info h2 {
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  margin-bottom: 15px;
}

.info-label {
  width: 150px;
  font-weight: bold;
}

.profile-actions {
  margin-top: 20px;
}

.profile-actions .btn {
  margin-right: 10px;
}

.order-history {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.order-history h2 {
  margin-bottom: 20px;
}

.order-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.order-number {
  font-weight: bold;
}

.order-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
}





.status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-processing {
  background-color: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background-color: #d4edda;
  color: #155724;
}

.status-cancelled {
  background-color: #f8d7da;
  color: #721c24;
}

.order-date,
.order-total {
}







.order-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Responsywność */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .cart-header,
  .cart-item {
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
  }

  .cart-item-price {
    display: none;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .menu-navigation ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .menu-navigation ul li a {
    white-space: nowrap;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 90%;
    margin: 20% auto;
  }

  .delivery-address {
    grid-template-columns: 1fr;
  }

  .info-row {
    flex-direction: column;
  }

  .info-label {
    width: 100%;
    margin-bottom: 5px;
  }

  .order-header {
    flex-direction: column;
    gap: 10px;
  }

  #mobile-cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
  }
}

/* Oznaczenie zupy promocyjnej w koszyku */
.cart-item.promo-soup .cart-item-name::after {
  content: "Promocja";
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 10px;
  font-size: 0.7rem;
  vertical-align: middle;
}

/* Style dla stałej ilości zupy promocyjnej */
.fixed-quantity {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  font-weight: bold;
}

/* Style dla sekcji wyboru zupy w modalu dodatków */
.soup-promo {
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  border: 1px dashed var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.soup-promo h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.soups-list,
.sides-list {
  margin: 15px 0;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
}

.soup-item,
.side-item {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
  border-radius: 4px;
  margin-bottom: 5px;
}

.soup-item:hover,
.side-item:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.soup-item:last-child,
.side-item:last-child {
  border-bottom: none;
}

/* Style dla sekcji wyboru zupy w modalu dodatków */
.soup-promo {
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: var(--border-radius);
  border: 1px dashed var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.soup-promo h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.soups-list,
.sides-list {
  margin: 15px 0;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
}

.soup-item,
.side-item {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
  border-radius: 4px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.soup-item:hover,
.side-item:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.soup-item:last-child,
.side-item:last-child {
  border-bottom: none;
}

/* Natywne style dla checkboxów i radio buttonów */
.side-item input[type="checkbox"],
.soup-item input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.side-item label,
.soup-item label {
  cursor: pointer;
  flex: 1;
}

/* Oznaczenie zaznaczonych elementów */
.side-item input[type="checkbox"]:checked+label,
.soup-item input[type="radio"]:checked+label {
  font-weight: bold;
  color: var(--primary-color);
}