/* Reset e base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}
.booking-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #8A1538 0%, #6A0F2A 100%);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-container {
  max-width: 700px;
  width: 100%;
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h1 {
  font-family: 'Luminari', serif;
  font-size: 2.5rem;
  color: #8A1538;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.booking-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-weight: 400;
  letter-spacing: 2px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.form-group input[type="hidden"] {
  display: none;
}

.form-group input:not([type="hidden"]),
.form-group select {
  padding: 0.85rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #8A1538;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  padding: 0.5rem;
}

.submit-button {
  background: #8A1538;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  background: #6A0F2A;
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-button:disabled:hover {
  background: #ccc;
  transform: none;
}

.form-step {
  display: none;
}

.form-step.active {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.table-selection {
  margin-top: 1rem;
}

.table-selection-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.restaurant-map {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem 0;
  overflow: hidden;
}

.restaurant-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0,0,0,0.02) 20px, rgba(0,0,0,0.02) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.02) 20px, rgba(0,0,0,0.02) 21px);
  pointer-events: none;
}

.table {
  position: absolute;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3), 
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    /* Simula sedie intorno al tavolo */
    -15px -15px 0 3px rgba(0, 0, 0, 0.2),
    15px -15px 0 3px rgba(0, 0, 0, 0.2),
    -15px 15px 0 3px rgba(0, 0, 0, 0.2),
    15px 15px 0 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
  user-select: none;
  /* Effetto tavolo con bordo interno */
  background-clip: padding-box;
  /* Simula il piano del tavolo */
  overflow: visible;
}

.table::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

/* Simula sedie intorno al tavolo */
.table::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.table::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.table::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.table:hover::before {
  opacity: 1;
}

.table:hover::after {
  opacity: 1;
}

.table.available {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.table.available:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.table.occupied {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  border-color: #f44336;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table.selected {
  background: linear-gradient(135deg, #8A1538 0%, #6A0F2A 100%);
  border-color: #8A1538;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 20px rgba(138, 21, 56, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.table-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #666;
}

.legend-color {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid transparent;
}

.legend-color.available {
  background: #4CAF50;
  border-color: #4CAF50;
}

.legend-color.occupied {
  background: #f44336;
  border-color: #f44336;
}

.legend-color.selected {
  background: #8A1538;
  border-color: #8A1538;
}

.step-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-secondary {
  background: white;
  color: #8A1538;
  border: 2px solid #8A1538;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-secondary:hover {
  background: #f5f5f5;
  border-color: #6A0F2A;
  color: #6A0F2A;
}

.btn-secondary:active {
  transform: scale(0.98);
}

.selected-table-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f0f0f0;
  border-radius: 8px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #333;
}

.selected-table-info strong {
  color: #8A1538;
}

@media (max-width: 600px) {
  .booking-page {
    padding: 1rem 0.5rem;
  }

  .booking-container {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .restaurant-map {
    min-height: 350px;
    padding: 1.5rem 1rem;
  }

      .table {
        width: 65px;
        height: 50px;
        font-size: 0.8rem;
      }

  .table-legend {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .step-navigation {
    flex-direction: column;
  }

  .btn-secondary,
  .submit-button {
    width: 100%;
  }

  .booking-header h1 {
    font-size: 2rem;
  }

  .booking-header h2 {
    font-size: 1.2rem;
  }

  .info-section {
    font-size: 0.85rem;
  }
}

.info-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}

.info-section p {
  margin: 0.5rem 0;
}

.info-section strong {
  color: #8A1538;
}

.cancel-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: #8A1538;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cancel-link:hover {
  color: #6A0F2A;
  text-decoration: underline;
}

.footer-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
}

.footer-info p {
  margin: 0.25rem 0;
}

.footer-info a {
  color: #8A1538;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Animazioni */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step.active {
  animation: fadeIn 0.3s ease-out;
}

/* Miglioramenti accessibilità */
.table:focus-visible {
  outline: 3px solid #8A1538;
  outline-offset: 2px;
}

.submit-button:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid #8A1538;
  outline-offset: 2px;
}

/* Stili per selezione sala */
.room-selection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.room-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.room-carousel::-webkit-scrollbar {
  height: 8px;
}

.room-carousel::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.room-carousel::-webkit-scrollbar-thumb {
  background: #8A1538;
  border-radius: 4px;
}

.room-card {
  min-width: 200px;
  flex: 1;
  padding: 1.5rem;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  text-align: center;
  background: white;
}

.room-card:hover {
  border-color: #8A1538;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(138, 21, 56, 0.2);
}

.room-card.selected {
  border-color: #8A1538;
  background: #f8f0f3;
  box-shadow: 0 4px 16px rgba(138, 21, 56, 0.3);
}

.room-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #8A1538;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Carosello immagini sala */
.room-images-preview {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 12px;
}

.room-images-preview.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.room-images-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-images-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.room-image {
  min-width: 100%;
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.room-images-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(138, 21, 56, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.room-images-nav:hover {
  background: rgba(138, 21, 56, 1);
  transform: translateY(-50%) scale(1.1);
}

.room-images-nav.prev {
  left: 10px;
}

.room-images-nav.next {
  right: 10px;
}

.room-images-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.room-images-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.room-image-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.room-image-dot.active {
  background: #8A1538;
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .room-image {
    height: 200px;
  }

  .room-images-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-out;
}

.modal-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #8A1538;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.modal-content p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.modal-content a {
  color: #8A1538;
  text-decoration: none;
  font-weight: bold;
}

.modal-content a:hover {
  text-decoration: underline;
}

.modal-close {
  background: #8A1538;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.modal-close:hover {
  background: #6A0F2A;
}

@media (max-width: 600px) {
  .room-carousel {
    flex-direction: column;
  }

  .room-card {
    min-width: 100%;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* Calendario personalizzato */
.custom-date-picker {
  position: relative;
  width: 100%;
}

.date-picker-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  min-height: 48px;
}

.date-picker-display:hover {
  border-color: #8A1538;
}

.date-picker-display.active {
  border-color: #8A1538;
  box-shadow: 0 0 0 3px rgba(138, 21, 56, 0.1);
}

.date-picker-display span:first-child {
  color: #333;
  flex: 1;
}

.date-picker-display span:first-child.empty {
  color: #999;
}

.date-picker-icon {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.date-picker-display.active .date-picker-icon {
  transform: rotate(15deg);
}

.custom-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #8A1538;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.custom-calendar.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-calendar.active {
  display: block;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.calendar-nav-btn {
  background: #8A1538;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.calendar-nav-btn:hover {
  background: #6A0F2A;
  transform: scale(1.1);
}

.calendar-nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.calendar-month-year {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #8A1538;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.weekday {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 0.5rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8f8f8;
  color: #333;
  border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.closed):not(.selected) {
  background: #f0f0f0;
  border-color: #8A1538;
  transform: scale(1.05);
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #fafafa;
  opacity: 0.5;
}

.calendar-day.closed {
  color: #f44336;
  cursor: not-allowed;
  background: #fff5f5;
  position: relative;
}

.calendar-day.closed::after {
  content: '✕';
  position: absolute;
  font-size: 0.7rem;
  color: #f44336;
}

.calendar-day.today {
  background: #e3f2fd;
  border-color: #2196F3;
  font-weight: bold;
  color: #1976D2;
}

.calendar-day.selected {
  background: #8A1538;
  color: white;
  font-weight: bold;
  border-color: #8A1538;
  box-shadow: 0 2px 8px rgba(138, 21, 56, 0.3);
  transform: scale(1.1);
}

.calendar-day.other-month {
  color: #ccc;
  opacity: 0.4;
}

@media (max-width: 600px) {
  .custom-calendar {
    padding: 1rem;
  }

  .calendar-day {
    font-size: 0.8rem;
  }

  .calendar-month-year {
    font-size: 1rem;
  }
}

/* Cookie Banner Styles - Enhanced Design */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  color: #333;
  padding: 0;
  z-index: 10000;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #8A1538;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  padding: 1.75rem 2rem;
  position: relative;
}

.cookie-banner-content::before {
  content: '🍪';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 2rem;
  opacity: 0.1;
}

.cookie-banner-text {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cookie-banner-text p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.cookie-banner-text p:first-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #8A1538;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.cookie-banner-text a {
  color: #8A1538;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid #8A1538;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.cookie-banner-text a:hover {
  color: #6A0F2A;
  border-bottom-color: #6A0F2A;
  padding-bottom: 1px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cookie-btn {
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #8A1538 0%, #6A0F2A 100%);
  color: white;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #6A0F2A 0%, #8A1538 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(138, 21, 56, 0.4);
}

.cookie-btn-accept:active {
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: white;
  color: #8A1538;
  border: 2px solid #8A1538;
}

.cookie-btn-reject:hover {
  background: #f8f8f8;
  border-color: #6A0F2A;
  color: #6A0F2A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(138, 21, 56, 0.2);
}

.cookie-btn-reject:active {
  transform: translateY(-1px);
}

.cookie-btn span {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.5rem;
  }

  .cookie-banner-content::before {
    left: 2.5rem;
    top: 2rem;
  }

  .cookie-banner-text {
    text-align: left;
    flex: 1;
    padding-left: 3rem;
  }

  .cookie-banner-buttons {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 0;
  }

  .cookie-banner-content {
    padding: 1.5rem 1.25rem;
  }

  .cookie-banner-content::before {
    display: none;
  }

  .cookie-banner-text {
    padding-left: 0;
  }

  .cookie-banner-text p {
    font-size: 0.9rem;
  }

  .cookie-banner-text p:first-child {
    font-size: 1rem;
  }

  .cookie-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
}

