/* Resetowanie marginesów i paddingów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f4f8;
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px; /* Zmniejszone miejsce na podsumowanie */
}

.container {
  width: 90%;
  max-width: 800px;
  background: #fff;
  padding: 30px 30px 20px 30px; /* Zwiększony padding górny dla .progress-bar */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px; /* Zmniejszone marginesy */
}

/* Loading Overlay */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 244, 248, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading p {
  font-size: 18px; /* Zmniejszony rozmiar czcionki */
  color: #333;
}

/* Ukrywanie elementów */
.hidden {
  display: none!important;
}
.info-icon {
  width: 28px; /* Zmniejszona szerokość */
  height: 28px; /* Zmniejszona wysokość */
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2575fc;
  color: #fff;
  font-size: 13px; /* Zmniejszony rozmiar czcionki */
}
/* Pasek postępu */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px; /* Zmniejszony margines */
  position: relative;
  cursor: pointer;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: #e0e0e0;
  z-index: -1;
  border-radius: 2px;
}

.progress-step {
  width: 28px; /* Zmniejszona szerokość */
  height: 28px; /* Zmniejszona wysokość */
  background-color: #e0e0e0;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 13px; /* Zmniejszony rozmiar czcionki */
}

.progress-step.active {
  background-color: #2575fc;
  color: #fff;
  transform: scale(1.15); /* Mniejsza skala transformacji */
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 35px; /* Zmniejszone odstępy */
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px; /* Zmniejszony rozmiar czcionki */
  color: #555;
  white-space: nowrap;
}

.progress-step i {
  font-size: 14px; /* Zmniejszony rozmiar ikony */
}

/* Nagłówki */
h1, h2 {
  text-align: center;
  color: #333;
  margin-bottom: 18px; /* Zmniejszony margines */
}

h1 {
  font-size: 26px; /* Zmniejszony rozmiar czcionki */
}

h2 {
  font-size: 20px; /* Zmniejszony rozmiar czcionki */
}

/* Formularz */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Zmniejszony odstęp */
  justify-content: center;
  margin: 18px 0; /* Zmniejszony margines */
}

.option {
  background-color: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, transform 0.2s;
  flex: 0 1 calc(50% - 24px); /* Dostosowanie szerokości */
  text-align: center;
  padding: 8px; /* Zmniejszony padding */
  min-width: 90px; /* Zmniejszona minimalna szerokość */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* Zmniejszony odstęp */
  color: #555;
  font-size: 13px; /* Zmniejszony rozmiar czcionki */
}

.option.selected {
  background-color: #2575fc;
  color: #fff;
  transform: scale(1.04); /* Mniejsza skala transformacji */
}

.option:hover {
  background-color: #d5d5d5;
  transform: translateY(-2px); /* Mniejsza transformacja */
}

.custom-input {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 140px; /* Dostosowana szerokość */
}

.custom-input button {
  padding: 6px 10px; /* Zmniejszony padding */
  margin: 0 4px; /* Zmniejszony margines */
  cursor: pointer;
  background-color: #2575fc;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.custom-input button:hover {
  background-color: #1a5bb8;
}

.custom-input input {
  width: 45px; /* Zmniejszona szerokość */
  text-align: center;
  padding: 6px; /* Zmniejszony padding */
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px; /* Zmniejszony rozmiar czcionki */
  transition: border-color 0.3s;
}

.custom-input input:focus {
  border-color: #2575fc;
  outline: none;
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px; /* Zmniejszony margines */
}

button.next-btn, button.prev-btn, #sendBtn {
  padding: 10px 20px; /* Zmniejszony padding */
  cursor: pointer;
  background-color: #2575fc;
  color: #fff;
  border: none;
  border-radius: 20px; /* Zmniejszony promień */
  transition: background-color 0.3s, transform 0.2s;
  font-size: 14px; /* Zmniejszony rozmiar czcionki */
}

button.prev-btn {
  background-color: #bbb;
}

button.prev-btn:hover {
  background-color: #999;
}

button.next-btn:hover, #sendBtn:hover {
  background-color: #1a5bb8;
  transform: scale(1.03); /* Mniejsza transformacja */
}

button#sendBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

label {
  display: block;
  margin: 12px 0; /* Zmniejszony margines */
  color: #555;
  font-size: 15px; /* Zmniejszony rozmiar czcionki */
  position: relative;
}

label i {
  margin-right: 6px; /* Zmniejszony margines */
  color: #2575fc;
}

input[type="email"],
input[type="tel"],
input[type="text"],
textarea {
  width: 100%;
  padding: 10px; /* Zmniejszony padding */
  margin-top: 4px; /* Zmniejszony margines */
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 15px; /* Zmniejszony rozmiar czcionki */
  transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: #2575fc;
  outline: none;
}

.availability-message {
  color: #e74c3c;
  text-align: center;
  margin-top: 8px; /* Zmniejszony margines */
}

.error-message {
  color: #e74c3c;
  font-size: 13px; /* Zmniejszony rozmiar czcionki */
  margin-top: 4px; /* Zmniejszony margines */
}

/* Podsumowanie */
.summary-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8f8f8;
  padding: 15px 25px; /* Zmniejszony padding */
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1); /* Zmniejszony cień */
  z-index: 1000;
}

.summary-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 12px; /* Zmniejszony margines */
  font-size: 20px; /* Zmniejszony rozmiar czcionki */
}

.typed-container {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 12px; /* Zmniejszony padding */
  font-family: 'Courier New', Courier, monospace;
  min-height: 80px; /* Zmniejszona wysokość minimalna */
  position: relative;
  overflow-y: auto;
  font-size: 14px; /* Zmniejszony rozmiar czcionki */
  font-weight: bold;
}

#cursor {
  display: inline-block;
  width: 8px; /* Zmniejszona szerokość */
  background-color: black;
  animation: blink 1s steps(2, start) infinite;
  margin-left: 1px; /* Zmniejszony margines */
}

#sendBtn {
  width: 100%;
  margin-top: 10px; /* Zmniejszony margines */
}

/* Animacje */
@keyframes blink {
  to {
    visibility: hidden;
  }
}

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

@keyframes fadeOut {
  from { }
  to { background-color: #2575fc; color: white; }
}

/* Efekt fade-out dla wyboru opcji */
.fade-out {
  animation: fadeOut 0.3s forwards;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .progress-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .options {
    flex-direction: column;
    align-items: stretch;
  }
  .option, .custom-input {
    flex: 1 1 auto;
  }
  
  .navigation {
    flex-direction: column;
    gap: 8px; /* Zmniejszony odstęp */
  }
  
  button.next-btn, button.prev-btn, #sendBtn {
    width: 100%;
  }
  
  .summary-section {
    padding: 12px 18px; /* Dalsze zmniejszenie paddingu */
  }
  
  .typed-container {
    font-size: 13px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }
}

@media (max-width: 480px) {
  /* Transformacja .progress-step na prawidłowy U-kształt */
  .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Dostosowana wysokość */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 10px; /* Dodany padding dla estetyki */
  }

  .progress-step {
    width: 30px; /* Zmniejszona szerokość */
    height: 30px; /* Zmniejszona wysokość */
    background-color: transparent;
    border-top: 4px solid #e0e0e0; /* Tworzy U-kształt */
    border-radius: 0 0 15px 15px; /* Tworzy prawidłowy U-kształt */
    margin: 0; /* Usunięcie marginesów */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .progress-step.active {
    border-top-color: #2575fc;
  }

  .progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: -16px; /* Dostosowany odstęp */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #555;
    white-space: nowrap;
  }

  .progress-step i {
    display: block; /* Pokazanie ikon */
    font-size: 14px; /* Utrzymanie rozmiaru ikony */
    color: inherit; /* Dziedziczenie koloru z .progress-step */
  }

  /* Dostosowanie kontenera, aby uniknąć nakładania się .progress-bar */
  .container {
    padding-top: 50px; /* Dodany padding górny, aby pomieścić .progress-bar */
  }

  /* Dalsze dostosowania dla elementów wewnątrz .container */
  h1 {
    font-size: 22px; /* Zmniejszony rozmiar czcionki */
  }
  
  h2 {
    font-size: 16px; /* Zmniejszony rozmiar czcionki */
  }
  
  .progress-step {
    width: 22px; /* Dalsze zmniejszenie szerokości */
    height: 22px; /* Dalsze zmniejszenie wysokości */
  }
  
  .option {
    padding: 6px; /* Dalsze zmniejszenie paddingu */
    font-size: 12px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }
  
  .custom-input button, .custom-input input {
    padding: 5px; /* Dalsze zmniejszenie paddingu */
  }
  
  button.next-btn, button.prev-btn, #sendBtn {
    padding: 8px 16px; /* Dalsze zmniejszenie paddingu */
    font-size: 12px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }
  
  label {
    font-size: 13px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }
  
  input[type="email"],
  input[type="tel"],
  input[type="text"],
  textarea {
    padding: 8px; /* Dalsze zmniejszenie paddingu */
    font-size: 13px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }
  
  .typed-container {
    font-size: 12px; /* Dalsze zmniejszenie rozmiaru czcionki */
  }

  /* Dostosowanie .summary-section dla małych ekranów */
  .summary-section h2 {
    font-size: 18px; /* Zmniejszony rozmiar czcionki */
  }

  .typed-container {
    font-size: 12px; /* Zmniejszony rozmiar czcionki */
  }

  /* Dostosowanie .mode-selection */
  .mode-selection {
    margin: 18px 0; /* Zmniejszony margines */
  }
  
  .mode-selection h3 {
    font-size: 18px; /* Zmniejszony rozmiar czcionki */
  }
  
  .mode-selection .options {
    gap: 3px; /* Zmniejszony odstęp */
  }
  
  .mode-selection .option {
    padding: 6px 10px; /* Zmniejszony padding */
    max-width: 350px; /* Zmniejszone max-width */
  }

  /* Dostosowanie kalendarza */
  #calendarContainer {
    margin-bottom: 18px; /* Zmniejszony margines */
  }

  .flatpickr-day {
    width: 28px; /* Zmniejszona szerokość */
    height: 28px; /* Zmniejszona wysokość */
    line-height: 26px; /* Dostosowany line-height */
    margin: 1.5px; /* Zmniejszony margines */
  }

  .flatpickr-day .dot {
    width: 5px; /* Zmniejszona szerokość */
    height: 5px; /* Zmniejszona wysokość */
  }
}

/* Stylizacja dla Trybu Zajęć */
.mode-selection {
  margin: 18px 0; /* Zmniejszony margines */
}

.mode-selection h3 {
  text-align: center;
  color: #333;
  margin-bottom: 8px; /* Zmniejszony margines */
  font-size: 18px; /* Zmniejszony rozmiar czcionki */
}

.mode-selection .options {
  display: flex;
  flex-direction: column;
  gap: 3px; /* Zmniejszony odstęp */
  align-items: center;
}

.mode-selection .option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px; /* Zmniejszony padding */
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  max-width: 350px; /* Zmniejszone max-width */
  background-color: #f0f0f0;
  justify-content: left;
}

.mode-selection .option .dot {
  width: 8px; /* Zmniejszona szerokość */
  height: 8px; /* Zmniejszona wysokość */
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px; /* Zmniejszony margines */
}

.mode-selection .option.selected {
  background-color: #2575fc;
  color: #fff;
  transform: scale(1.04); /* Mniejsza skala transformacji */
}

.mode-selection .option:hover {
  background-color: #d5d5d5;
  transform: translateY(-1px); /* Mniejsza transformacja */
}

.mode-selection .option.disabled {
  background-color: #ccc; /* Szary kolor dla wyłączonych opcji */
  cursor: not-allowed;
  pointer-events: none; /* Wyłączenie możliwości klikania */
}

/* Stały Kalendarz */
#calendarContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 18px; /* Zmniejszony margines */
}

.flatpickr-calendar {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  border: none; /* Usuń ramkę */
  box-shadow: none;
  background-color: transparent;
}

.flatpickr-day {
  position: relative;
  width: 28px; /* Zmniejszona szerokość */
  height: 28px; /* Zmniejszona wysokość */
  line-height: 26px; /* Dostosowany line-height */
  text-align: center;
  margin: 1.5px; /* Zmniejszony margines */
  cursor: pointer;
}

.flatpickr-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.flatpickr-day.selected {
  background-color: #2575fc;
  color: #fff;
}

.flatpickr-day.today {
  border: 1px solid #2575fc;
}

.flatpickr-day.flatpickr-disabled .dots-container {
  opacity: 0.5;
}

.flatpickr-day:hover:not(.disabled):not(.selected) {
  background-color: #e0e0e0;
}

/* Kolorowe Kropki w Kalendarzu */
.flatpickr-day .dots-container {
  display: flex;
  justify-content: center;
  gap: 2px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.flatpickr-day .dot {
  width: 5px; /* Zmniejszona szerokość */
  height: 5px; /* Zmniejszona wysokość */
  border-radius: 50%;
}

.dot.purple {
  background-color: #9B59B6;
}

.dot.green {
  background-color: #2ECC71;
}

.dot.blue {
  background-color: #3498DB;
}

.option.selected:hover {
  background-color: #2575fc;
}

/* Animacje */
@keyframes stepFadeIn {
  0%, 100% { opacity: 0; transform: translateY(-20px); }
  25% { opacity: 1; transform: translateY(0); }
}

@keyframes textChange {
  0%, 100% { content: "Ładowanie kursów..."; }
  25% { content: "Ładowanie poziomów..."; }
  50% { content: "Ładowanie dostępnych dat..."; }
  75% { content: "Ładowanie godzin..."; }
}

.loading-steps i {
  font-size: 28px; /* Zmniejszony rozmiar ikony */
  color: #2575fc;
  margin: 0 12px; /* Zmniejszony margines */
  opacity: 0;
  animation: stepFadeIn 8s infinite ease-in-out;
}

.loading-steps i:nth-child(1) { animation-delay: 0s; }
.loading-steps i:nth-child(2) { animation-delay: 2s; }
.loading-steps i:nth-child(3) { animation-delay: 4s; }
.loading-steps i:nth-child(4) { animation-delay: 6s; }

.loading-text::before {
  content: "Ładowanie kursów...";
  animation: textChange 8s infinite ease-in-out;
  display: block;
  font-size: 18px; /* Zmniejszony rozmiar czcionki */
  color: #333;
  text-align: center;
  margin-top: 18px; /* Zmniejszony margines */
}

.category-header {
  width: 100%;
  padding: 8px; /* Zmniejszony padding */
  background-color: #f7f7f7;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 18px; /* Zmniejszony margines */
  text-align: center;
  color: #555;
}

.category-header::after {
  content: '';
  display: block;
  width: 18%;
  height: 2px;
  background-color: #555;
  margin: 6px auto 0; /* Zmniejszony margines */
}
/* Stylizacja Modala */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    z-index: 2100;
    overflow-y: auto;
  
    padding: 3x;
    width: 99%;
    border-radius: 8px;
    z-index: 2100;
    overflow-y: auto;
    max-height: 99vh;
}

@media (min-width: 767px) {
.modal-content {
     
    border-radius: 8px;
    z-index: 2100;
    overflow-y: auto;
    padding: 20px;
    width: 90%;
    max-height: 90vh;
}
}
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Stylizacja Przycisku Otwierającego Cennik */
.cennik-btn {
    padding: 10px 20px;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px; /* Dostosuj według potrzeb */
}

.cennik-btn:hover {
    background-color: #1a5bb8;
}

/* Stylizacja Przełączników */
.btn-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-group .btn {
    padding: 10px 20px;
    border: 1px solid #0d6efd;
    background-color: transparent;
    color: #0d6efd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin: 0 5px;
}

.btn-group .btn.active,
.btn-group .btn:hover {
    background-color: #0d6efd;
    color: white;
}

/* Kopiowane z stylesindex.css */

/* Stylizacja Cennika */
.cennik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny na małych ekranach */
    gap: 15px;
}

@media (min-width: 576px) {
    .cennik-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolumny na średnich ekranach */
    }
}

@media (min-width: 767px) {
    .cennik-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolumny na ekranach od 767px */
    }
}

@media (min-width: 992px) {
    .cennik-grid {
        grid-template-columns: repeat(6, 1fr); /* 6 kolumn na dużych ekranach */
    }
}

@media (min-width: 1200px) {
    .cennik-grid {
        grid-template-columns: repeat(6, 1fr); /* 6 kolumn na bardzo dużych ekranach */
    }
}

.pricing-card {
    margin-top: 5px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    text-align: center;
    height: 60px;
    max-height: 80px;
}

.pricing-card.selectable.active {
    border-color: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

.pricing-card .ribbon {
    position: absolute;
    top: 5px;
    left: -20px;
    width: 80px;
    background-color: #7E3F98;
    color: white;
    text-align: center;
    padding: 5px 0;
    transform: rotate(-45deg);
    font-size: 0.7em;
    overflow: hidden;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .pricing-card .ribbon {
        top: 10px;
        left: -30px;
        width: 100px;
        font-size: 0.6em;
    }
}

@media (min-width: 1200px) {
    .pricing-card .ribbon {
        top: 5px;
        left: -25px;
        width: 90px;
        font-size: 0.7em;
    }
}

.pricing-card h4 {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.pricing-card .price {
    font-size: 0.9em;
    font-weight: bold;
}

.pricing-card .price span {
    font-size: 0.8em;
    color: #6c757d;
}

/* Transport Options Styling */
.transport-option.active {
    background-color: #ffe6e6; /* Jasno czerwony odcień dla zaznaczonych opcji transportu */
}

/* Final Price Styling */
.final-price {
    overflow: hidden;
    font-weight: bold;
    background-color: #7E3F98; /* Dopasowany kolor */
    color: white;
    padding: 15px;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.final-price.visible {
    opacity: 1;
    visibility: visible;
}

.final-price .ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    width: 110px;
    background-color: white; /* Dopasowany kolor */
    color: #7E3F98;
    text-align: center;
    padding: 3px 0;
    transform: rotate(-45deg);
    font-size: 0.5em;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
}

.final-price .ribbon.visible {
    display: inline-block;
}

.final-price .total-price {
    font-size: 0.5em;
    margin-top: 5px;
}

.final-price .discount-ribbon {
    background-color: #7E3F98;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.5em;
}
/* Snackbar Styling */
.snackbar {
  visibility: hidden; /* Ukryty domyślnie */
  min-width: 250px;
  max-width: 350px;
  background-color: #323232; /* Domyślny kolor tła */
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 3000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 16px;
  box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),
              0px 6px 10px 0px rgba(0,0,0,0.14),
              0px 1px 18px 0px rgba(0,0,0,0.12);
  transition: visibility 0s, opacity 0.5s ease-in-out;
  opacity: 0;
}

.snackbar.show {
  visibility: visible;
  opacity: 1;
}

.snackbar.success {
  background-color: #4CAF50; /* Zielony dla sukcesu */
}

.snackbar.error {
  background-color: #f44336; /* Czerwony dla błędu */
}

.snackbar.info {
  background-color: #2196F3; /* Niebieski dla informacji */
}

.snackbar.warning {
  background-color: #ff9800; /* Pomarańczowy dla ostrzeżeń */
}
