:root {
  --primary-color: #32aeb5;
  --secondary-color: #4F46E5;
  --text-color: #333;
  --light-bg: white;
  --nav-bg: linear-gradient(to right, #2D3047, #393B53);
  --how-it-works-bg: #f7f7f7;
  --step-bg: white;
  --step-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --step-hover-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  --step-title-color: #333;
  --step-description-color: #666;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: var(--light-bg);
}
.container {
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}
header {
  background: var(--nav-bg);
}
.contact-card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-card.active {
  opacity: 1;
  visibility: visible;
}
.contact-card__content {
  max-width: 500px;
  width: 90%;
  background-color: #2D3047;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.contact-card.active .contact-card__content {
  transform: translateY(0);
}
.contact-card__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  background: #2D3047;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.contact-card__close:hover {
  background: var(--primary-color, #32aeb5);
  transform: rotate(90deg);
}
.contact-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.contact-card__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.contact-card__phone,
.contact-card__email {
  font-size: 1rem;
  color: white;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.contact-card__phone-icon {
  width: 30x;
  height: 30px;
}
.contact-card__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.contact-card__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-card__social-link:hover {
  background-color: var(--primary-color, #32aeb5);
  transform: translateY(-3px);
}
.contact-card__social-icon {
  width: 24px;
  height: 24px;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav__logo {
  font-weight: bold;
  font-size: 1.2rem;
}
.nav__logo img {
  max-width: 200px;
  height: 50px;
  width: auto;
  filter: none;
}
.nav__hamburger {
  display: block;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}
.nav__hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: white;
  transition: all 0.3s ease;
}
.nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 100;
}
.nav__menu.active {
  display: block;
}
.nav__item {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.nav__item:last-child {
  border-bottom: none;
}
.nav__link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
}
.nav__link:hover {
  color: var(--primary-color);
}
.nav__auth {
  display: none;
}
.hero {
  padding: 2rem 1.5rem;
  position: relative;
  background: linear-gradient(to right, #f7f7f7, #edf2f7);
  text-align: center;
}
.hero__title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.hero__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.catalog {
  padding: 3rem 0;
  background-color: var(--how-it-works-bg);
}
.catalog__header {
  text-align: center;
  margin-bottom: 2rem;
}
.catalog__title {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 8px 16px;
  border: 2px solid var(--primary-color);
  background-color: white;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: rgba(50, 174, 181, 0.1);
}
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 400px));
  gap: 30px;
  justify-content: center;
}
.car-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--step-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 400px;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--step-hover-shadow);
}
.car-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.card-disclaimer {
  display: block;
  margin-top: 10px;
  color: #888;
  font-style: italic;
  font-size: 0.8rem;
}
.car-card__content {
  padding: 20px;
}
.car-card__header {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.car-card__title {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 8px;
}
.car-card__category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f0f0f0;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-color);
}
.car-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  margin-bottom: 25px;
  padding: 0 10px;
}
.car-card__spec {
  display: flex;
  align-items: center;
  width: 100%;
}
.car-card__spec-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--primary-color);
  flex-shrink: 0;
}
.car-card__spec-text {
  font-size: 0.9rem;
  color: #666;
  word-break: break-word;
}
.car-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 15px 10px;
  border-top: 1px solid #eee;
}
.car-card__price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.2;
  max-width: 60%;
}
.car-card__button {
  padding: 10px 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}
.car-card__button:hover {
  background-color: #2c9da3;
}
.quotation {
  padding: 3rem 0;
  display: none;
  background-color: var(--how-it-works-bg);
}
.quotation__header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.quotation__back-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px;
}
.quotation__title {
  font-size: 1.8rem;
  color: var(--text-color);
}
.quotation__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--step-shadow);
}
.quotation__car-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quotation__car-image {
  width: 100%;
  max-width: 350px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  margin: 0 auto;
}
.quotation__car-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quotation__car-title {
  font-size: 1.8rem;
  color: var(--text-color);
}
.quotation__car-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f0f0f0;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 10px;
  width: fit-content;
}
.quotation__car-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}
.quotation__car-spec {
  display: flex;
  align-items: center;
  flex: 1 1 calc(50% - 7.5px);
}
.quotation__car-spec-text {
  font-size: 0.95rem;
  color: #666;
}
.quotation__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quotation__dates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.date-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.date-input label {
  font-size: 1rem;
  color: var(--text-color);
}
.date-input input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.quotation__calculate-btn {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.quotation__calculate-btn:hover {
  background-color: #2c9da3;
}
#minimum-time{
  color: red;
}
.quotation__result {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(50, 174, 181, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  display: none;
}
.quotation__result h4, .quotation__total {
  margin-bottom: 10px;
}
.quotation__result hr {
  border: 0;
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}
#proceed-to-form-btn {
  padding: 12px 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.customer-form-section {
  padding: 1.5rem 1rem;
  background-color: var(--how-it-works-bg);
  display: none;
  width: 100%;
  overflow-x: hidden;
}
.form-container {
  width: 100%;
}
.customer-form-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.customer-form-title {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: left;
  width: 100%;
}
.customer-form-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--step-shadow);
  margin: 0 auto;
  overflow-x: hidden;
}
.customer-details-form,
.customer-summary-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.customer-details-form fieldset,
.customer-summary-column fieldset {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.customer-details-form legend,
.customer-summary-column legend {
  font-weight: 600;
  color: var(--text-color);
  padding: 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 1rem);
}
.form-group {
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea,
.form-group select,
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-color);
}
.phone-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.phone-group select {
    flex: none;
    width: 100%;
    box-sizing: border-box;
}
.phone-group input {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}
.hidden-input {
  display: none;
  margin-top: 1rem;
}
.summary-fieldset {
  background-color: #f9f9f9;
  border-color: #eee;
}
#summary-car-info {
  margin-bottom: 30px;
}
#summary-car-info .quotation__car-details {
  padding: 0;
}
#summary-car-info .quotation__car-image{
  max-width: 100%;
}
#summary-quote-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ccc;
}
#summary-quote-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
#summary-quote-info strong {
  float: right;
}
.btn-submit-reservation {
  padding: 15px;
  width: 100%;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}
.btn-submit-reservation:hover {
  opacity: 0.9;
}
.addons-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
  width: 100%;
}
.addon-button {
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 0.8rem 0.8rem 0.8rem 35px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}
.addon-button:hover {
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.addon-button.selected {
  background-color: #e0f0ff;
  border-color: #007bff;
}
.addon-button h4 {
  margin: 0 0 0.5rem 0;
}
.addon-button p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}
.addon-button.mandatory {
  cursor: not-allowed;
  opacity: 0.9;
}
.mandatory-label {
  font-weight: bold;
  color: #d9534f;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}
.summary-box {
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
}
#summary-quote-info p {
  padding: 0;
}
#summary-quote-info h4 {
  margin-top: 10px;
}
.summary-box h3,
#summary-quote-info h4 {
    text-align: center;
    margin-bottom: 1rem;
}
#submit-form {
  padding: 12px 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}
#back-to-quote-btn {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}
.whatsapp-fab__icon {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}
.addon-info-button {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.addon-info-button:hover {
  opacity: 1;
}
.addon-info-icon {
  width: 20px;
  height: 20px;
}
.info-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.info-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.info-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 90%;
    width: 100%;
    margin: 20px;
    box-sizing: border-box;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.info-popup-overlay.active .info-popup-content {
    transform: translateY(0);
}
.info-popup-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}
.info-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
}
.info-popup-close-btn:hover {
    color: var(--primary-color);
}
#final-total-container hr {
  width: 100%;
  border: 0;
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
}
#final-total-container h4 {
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin: 0.5rem 0;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.25rem 0;
  font-size: 1rem;
}
.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 2px solid var(--text-color);
  padding-top: 1rem;
  margin-top: 1rem;
}
.total-label {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-color);
}
.total-amount {
  font-weight: bold;
  color: var(--text-color);
  font-size: 1.3rem;
}
.flatpickr-done-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
    border-radius: 0 0 5px 5px;
    transition: background-color 0.3s ease;
}
.flatpickr-done-btn:hover {
    background-color: #2c9da3;
}
input.flatpickr-input.date-input-highlight {
  background-color: #ffe082 !important;
  transition: background-color 0.5s ease-out !important;
}
@media (min-width: 1024px) {
  .nav {
    background: var(--nav-bg);
    box-shadow: none;
    justify-content: space-between;
    width: 100%;
  }
  .nav__logo img {
    height: 50px;
  }
  .nav__hamburger {
    display: none;
  }
  .nav__menu {
    display: flex;
    position: static;
    width: auto;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
    transform: none;
    opacity: 1;
    background: transparent;
  }
  .nav__item {
    margin: 0;
    border: none;
    padding: 0;
    text-align: left;
  }
  .nav__link {
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
  }
  .nav__link:hover {
    color: var(--primary-color);
  }
  .nav__auth {
    display: flex;
    gap: 1rem;
  }
  .nav__button {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .nav__button--signup {
    background: none;
    border: none;
    color: white;
  }
  .nav__button--login {
    background-color: var(--secondary-color);
    color: white;
    border: none;
  }
  .container {
    padding: 1rem 1.5rem;
  }
  .quotation__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: start;
  }
  .quotation__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-self: center;
    height: 100%;
  }
  .quotation__car-info {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
  .quotation__car-image {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 300px;
    object-fit: contain;
    margin: 0;
  }
  .quotation__car-details {
    padding-right: 20px;
  }
  .quotation__car-title {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .quotation__car-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 10px;
  }
  .quotation__car-spec {
    flex: 1 1 calc(50% - 7.5px);
  }
  .quotation__dates {
    grid-template-columns: 1fr 1fr;
  }
  .date-input input[type="time"].flatpickr-input {
      background-image: url('./img/clock-icon.webp');
      background-repeat: no-repeat;
      background-position: 10px center;
      background-size: 20px;
      padding-left: 40px;
  }
  .quotation__header {
    margin-bottom: 2.5rem;
  }
  .quotation__title {
    font-size: 2.2rem;
  }
  .customer-form-section {
    padding: 3rem 0;
    align-items: center;
    justify-content: flex-start;
    overflow-x: visible;
  }
  .form-container {
    width: 100%;
  }
  .customer-form-header {
      flex-direction: row;
      align-items: center;
      margin-bottom: 2rem;
      padding: 0;
  }
  .customer-form-title {
      font-size: 2.2rem;
      text-align: left;
      width: auto;
  }
  .customer-form-layout {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      padding: 30px;
      width: 100%;
      max-width: none;
      overflow-x: visible;
  }
  .customer-details-form {
    flex: 2;
    width: auto;
    min-width: auto;
    overflow-x: visible;
  }
  .customer-summary-column {
    flex: 1;
    width: auto;
    min-width: auto;
    overflow-x: visible;
  }
  .customer-details-form fieldset,
  .customer-summary-column fieldset {
    padding: 1.5rem;
    width: auto;
    min-width: auto;
    overflow-x: visible;
  }
  .customer-details-form legend,
  .customer-summary-column legend {
    white-space: normal;
    text-overflow: clip;
    max-width: none;
  }
  .phone-group {
      flex-direction: row;
      gap: 10px;
  }
  .phone-group select {
      flex: 0 0 120px;
      width: auto;
  }
  .addons-container {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }
  .addon-button {
    width: 180px;
    padding: 1rem 1rem 1rem 40px;
    text-align: left;
  }
  .footer__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__column {
    flex: 1;
    min-width: 200px;
  }
  .footer__logo {
    justify-content: left;
  }
  .footer__payment {
    flex: 0 0 100px;
  }
  .footer__payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
  }
  .footer__payment-icon {
    width: 50px;
  }
  .whatsapp-fab {
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
  }
  .whatsapp-fab__icon {
    width: 40px;
    height: 40px;
  }
  .addon-info-button {
      bottom: 8px;
      left: 8px;
  }
  .addon-info-icon {
      width: 24px;
      height: 24px;
  }
}