* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: #1B1710;
  color: #1a1a1a;
  min-height: 100vh;
  line-height: 1.6;
}

.logo img {
  height: 75px;
  width: auto;
  filter: brightness(0) invert(1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ---------- HEADER & LOGO ---------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
}

.club-name {
  font-family: 'Montserrat', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.5px;
  margin-left: 30px;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 35px; 
  margin: 20px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px; 
  cursor: pointer;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  
  border: 2px solid #C5B499;
  background-color: transparent;
  color: #C5B499;
}

.step-number {
  display: block;
}

.step-checkmark {
  display: none;
  font-size: 18px;
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  text-transform: none; 
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.3s ease;
  
  color: #615B53;
  font-weight: 500;
}

.step.completed .step-icon {
  background-color: #C5B499;
  border-color: #C5B499;
  color: #1B1710; 
}
.step.completed .step-number {
  display: none;
}
.step.completed .step-checkmark {
  display: block;
}
.step.completed .step-label {
  color: #C5B499; 
  font-weight: 500;
}

.step.active .step-icon {
  background-color: #C5B499;
  border-color: #C5B499;
  color: #1B1710; 
}
.step.active .step-number {
  display: block;
}
.step.active .step-checkmark {
  display: none;
}
.step.active .step-label {
  color: #FFFFFF; 
  font-weight: 700;
}

/* ---------- DIVIDER ---------- */
.divider {
  height: 2px;
  background: #e8e8e8;
  margin: 40px 0;
}

.location-box {
  border: 1px solid #444;
  border-radius: 6px;
  padding: 15px 20px;
  background-color: #232323;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
}

.location-label {
  color: #FFFFF0;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.location-value {
  color: #FFFFF0;
  font-size: 14px;
  font-weight: 400;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFF0;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.membership-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 240, 0.9);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 60px;
  max-width: 900px;
  letter-spacing: 0.2px;
}

.purchase-info-block {
  text-align: center;
  margin: 50px auto;
  max-width: 800px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
}

.purchase-info-title {
  color: #a0937d;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.purchase-info-text {
  color: rgba(255, 255, 240, 0.9);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.membership-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #1B1710;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
}

.subscription-card {
  background-color: #232323;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 40px 30px;
  width: 350px;
  position: relative;
  color: #FFFFF0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.subscription-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subscription-card.featured {
  border: 2px solid #8e816c;
}

.subscription-card.selected {
  border-color: #352e21;
  background: #8e816c;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFF0;
  color: #1B1710;
  padding: 5px 15px;
  font-weight: 900;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.subscription-type {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 20px;
  color: #a0937d;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
.price-box .currency { font-size: 24px; font-weight: 900; }
.price-box .amount { font-size: 64px; font-weight: 900; margin-right: 10px; }
.price-box .old-price {
  font-size: 24px;
  color: #fffff0;
  text-decoration: line-through;
  font-weight: 300;
}

.payment-period {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 25px;
  color: #fffff0;
}

.card-description {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
  height: 60px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
}
.benefits-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}
.benefits-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #a0937d;
}

.select-button {
  background-color: #FFFFF0;
  color: #1B1710;
  border: none;
  padding: 18px;
  font-weight: 900;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s;
  width: 100%;
}
.select-button:hover {
  transform: scale(1.02);
  background-color: #e5e5d8;
}

.continue-button,
.back-button {
  font-family: 'Montserrat', sans-serif;
  background: #efefe9;
  color: #333333;
  border: 2px solid #efefe9;
  padding: 14px 40px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.continue-button:hover,
.back-button:hover {
  background: #8e816c;
  color: #efefe9;
  border-color: #8e816c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.membership-card {
  background: white;
  padding: 25px;
  border-radius: 5px;
  border: 2px solid #e0e0e0;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.membership-card:hover {
  border-color: #cccccc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.membership-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.membership-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333333;
  font-family: 'Montserrat', serif;
}

.membership-price {
  font-size: 1.8rem;
  font-weight: 400;
  color: #333333;
  font-family: 'Montserrat', serif;
  display: inline-block;
  white-space: nowrap;
  text-align: right;
}

.membership-period {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.original-price {
  color: #0d0d0d;
  position: relative;
  top: -0.1em;
  font-size: 18px;
}

.promo-price {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: bold;
}

.selected-membership-section {
  background: transparent;
  border-radius: 5px;
  margin-bottom: 40px;
  box-shadow: none;
}

.membership-card-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #232323;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px 25px;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.membership-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-text {
  color: #FFFFF0;
  font-size: 14px;
  font-weight: 700;
}

.membership-name {
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 400;
}

.membership-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.membership-period-info {
  color: #FFFFF0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.membership-price-final {
  color: #FFFFF0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}

.summary-item {
  background-color: #232323;
  border: 1px solid #3d352f;
  border-radius: 6px;
  padding: 12px 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.summary-item .label {
  font-size: 13px;
  font-weight: 700;
  color: #f5f1ed;
  margin-bottom: 2px;
}

.summary-item .value {
  font-size: 14px;
  color: #FFFFF0;
  font-weight: 500;
}

.personal-data-summary {
  background: #1B1710;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.personal-data-summary h3 {
  color: #333333;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'Montserrat', serif;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-card {
  background: #fafafa;
  border-radius: 5px;
  padding: 20px;
  border: 1px solid #e8e8e8;
}

.summary-row {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row:hover {
  background-color: rgba(142, 129, 108, 0.03);
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 12px;
}

.summary-label {
  font-weight: 400;
  color: #666666;
  min-width: 140px;
  font-size: 0.95rem;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
}

.summary-value {
  color: #333333;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  flex: 1;
}

.form-container {
  background: #1B1710;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

#continue-without-addon {
    display: block;
    margin-left: auto; 
    margin-right: 0;
}

.form-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h3 {
  color: #333333;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'Montserrat', serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12, .col-lg-6, .col-lg-4, .col-md-6, .col-lg-2, .col-lg-3,
.col-lg-5, .col-lg-7, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7 {
  padding: 15px;
}

.col-12 { width: 100%; }
.col-lg-2 { width: 16.666%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }

.input-group {
  margin-bottom: 25px;
}

.input-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 200;
  color: #4e473f;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.required-star {
  color: #d32f2f;
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 200;
}

.form-container .form-input {
  background-color: #312a25;
  border: 1px solid #4a3f37;
  color: #ffffff;
}

.form-container .form-input:focus {
  outline: none;
  border-color: #a38d7d;
}

.form-input::placeholder {
  color: #999;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666666;
}

.gender-selection,
.newsletter-optin {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.radio-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  color: #a38d7d;
  text-transform: uppercase;
  position: relative;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 24px;
  width: 24px;
  background-color: transparent;
  border: 2px solid #a38d7d;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.checkbox-style .checkmark {
  border-radius: 50%;
}

.radio-container input:checked ~ .checkmark {
  background-color: transparent;
  border-color: #f5f1ed;
}

.radio-container input:checked ~ .checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f5f1ed;
  font-size: 14px;
}

.error-msg {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-top: 8px;
  display: block;
  font-weight: 200;
  font-style: italic;
}

.success-msg {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  border-left: 5px solid #28a745;
  font-size: 1rem;
  text-align: center;
  font-weight: 200;
}

.error-msg-global {
  background: #f8d7da;
  color: #721c24;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  border-left: 5px solid #dc3545;
  font-size: 1rem;
  text-align: center;
  font-weight: 200;
}

.costs-section {
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 30px auto;
  max-width: 1200px;
}

.costs-section h3 {
  color: #333333;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Montserrat', serif;
  text-align: center;
  padding-bottom: 15px;
}

.date-info-section {
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  border-radius: 5px;
  border-left: 4px solid #8e816c;
}

.date-info-section h4 {
  margin: 0;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Montserrat', serif;
}

.date-display {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333333;
  font-family: 'Montserrat', serif;
  letter-spacing: 0.5px;
}

.costs-subsection {
  margin-bottom: 30px;
}

.costs-subsection h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'Montserrat', serif;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 10px;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #333333;
}

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

.cost-item span:first-child {
  font-weight: 200;
  color: #666;
}

.cost-item span:last-child {
  font-weight: 400;
  color: #333333;
  font-family: 'Montserrat', serif;
}

.cost-total {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: 20px;
  font-size: 1.3rem;
  background: #f8f8f8;
  border-radius: 5px;
  border-top: 3px solid #333333;
}

.cost-total span:first-child {
  font-weight: 400;
  color: #333333;
  font-family: 'Montserrat', serif;
}

.cost-total span:last-child {
  font-weight: 700;
  color: #333333;
  font-family: 'Montserrat', serif;
}

.price-display {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 80px;
}

.cost-item.aligned-prices {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cost-item.aligned-prices .cost-item-left {
  flex: 1;
  font-weight: 200;
  color: #666;
}

.cost-item.aligned-prices .cost-item-right {
  display: flex;
  align-items: center;
  min-width: 100px;
  text-align: right;
}

.form-actions {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.back-button, .submit-button {
    flex: 1; 
    padding: 16px 40px;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button {
    background: transparent;
    color: #f5f1ed;
    border: 2px solid #3d352f;
}

.submit-button {
    background: #3d352f;
    color: #f5f1ed;
    border: 2px solid #3d352f;
}


@media (max-width: 1024px) {
  .subscriptions-container,
  .addons-grid,
  .upgrade-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .progress-steps {
    gap: 30px;
  }
  .progress-steps .step:nth-child(3) + .step {
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
  .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7 {
    width: 100%;
  }

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

  .form-container {
    padding: 25px 20px;
  }

  .form-section h3 {
    font-size: 1.3rem;
  }

  .form-input, .form-select {
    padding: 14px 16px;
    font-size: 1rem;
  }

.progress-steps {
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    margin-left: 0;
  }

  .step {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  .step-label {
    display: none;
  }

  .step.active .step-label {
    display: block;
    font-size: 13px;
    color: #FFFFFF; 
  }

  .step-icon {
    width: 32px; 
    height: 32px;
    margin: 0 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center; 
  }

  .step.active .step-icon {
    margin: 0 8px 0 0; 
  }

  .step-number {
    padding-top: 0;
    line-height: 1;
    font-size: 14px;
  }

  .step-checkmark {
    font-size: 14px;
    line-height: 1;
  }

  .progress-steps .step:nth-child(3) + .step {
    margin-left: 0;
  }

  .membership-container {
    flex-direction: column;
    align-items: center;
  }

  .subscription-card {
    width: 100%;
    max-width: 450px;
  }

  .card-description {
    height: auto;
  }

  .membership-card-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .membership-right {
    width: 100%;
    justify-content: space-between;
  }

  .membership-price-final {
    font-size: 28px;
  }

  .cost-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .costs-section {
    padding: 25px 20px;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .back-button, .submit-button {
    width: 100%;
    min-width: auto;
    margin: 0;
  }

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

  .club-name {
    margin-left: 20px;
    font-size: 1.6rem;
  }

  .logo img {
    height: 30px;
  }

  .personal-data-summary {
    padding: 20px;
  }

  .summary-card {
    padding: 15px;
  }

  .summary-row {
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }

  .summary-label {
    min-width: auto;
    font-size: 0.9rem;
    font-weight: 400;
  }

  .summary-value {
    font-size: 0.9rem;
    padding-left: 0;
  }

  .summary-row:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .date-info-section {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .date-display {
    font-size: 1.1rem;
  }

  .cost-item.aligned-prices {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .cost-item.aligned-prices .cost-item-right {
    justify-content: flex-start;
    min-width: auto;
  }
}

.radio-container {
    display: flex;
    align-items: flex-start;
}

.checkmark {
    flex-shrink: 0;       
    width: 20px;          
    height: 20px;         
    border-radius: 50%;    
    margin-right: 12px;    
    display: inline-block; 
}

@media (max-width: 480px) {

  .container {
    padding: 20px 10px;
  }

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

.progress-steps {
    gap: 10px;
    justify-content: center;
  }

  .step-icon {
    width: 28px; 
    height: 28px;
  }

  .step-number {
    font-size: 12px;
    padding-top: 0;
    line-height: 1;
  }

  .step-label {
    display: none;
  }

  .step.active .step-label {
    display: block;
    font-size: 11px;
    color: #FFFFFF; 
  }

  .subscription-card {
    padding: 25px 20px;
  }

  .price-box .amount {
    font-size: 48px;
  }

  .price-box .old-price {
    font-size: 20px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .membership-price-final {
    font-size: 24px;
  }

  .purchase-info-title {
    font-size: 12px;
  }

  .purchase-info-text {
    font-size: 0.9rem;
  }

  .form-container {
    padding: 20px 15px;
  }

  .back-button, .submit-button, .continue-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .costs-section {
    padding: 20px 15px;
  }

  .personal-data-summary {
    padding: 15px;
  }

  .summary-card {
    padding: 12px;
  }

  .summary-row {
    padding: 10px 0;
  }

  .summary-label, .summary-value {
    font-size: 0.85rem;
  }

  .personal-data-summary h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .step-number {
    padding-top: 1px;
  }
}

.loading {
  text-align: center;
  padding: 80px 20px;
  font-size: 1.1rem;
  color: #666666;
  grid-column: 1 / -1;
  font-weight: 200;
  font-family: 'Montserrat', sans-serif;
}

.error-message {
  text-align: center;
  padding: 80px 20px;
  color: #d32f2f;
  font-size: 1rem;
  grid-column: 1 / -1;
  font-weight: 200;
  font-family: 'Montserrat', sans-serif;
}

.membership-price:not(:has(.original-price)) {
  font-size: 28px;
  font-weight: 900;
  color: #f0f0f0;
}

.original-price.strike-through {
  text-decoration: line-through;
  color: #999;
}

.promo-price.fade-in {
  opacity: 1;
}

.promotion-description.fade-in {
  opacity: 1;
}

/* Override for dark sections */
.section-title,
.location-box,
.purchase-info-block,
.membership-container,
.form-container,
.summary-item,
.selected-membership-section,
.personal-data-summary,
.costs-section,
.date-info-section,
.form-actions,
.header,
.logo-container,
.progress-steps,
.step-icon,
.step-number,
.step-checkmark,
.step-label {
  font-family: 'Montserrat', sans-serif;
}

.discount-section {
    margin-bottom: 80px;
}

.discount-row {
    display: flex;
    gap: 10px;
}

.discount-input {
    background-color: #312a25;
  border: 1px solid #4a3f37;
  color: #ffffff;
    flex: 1;
    padding: 12px;
}

.apply-discount-button {
    background: #3d352f;
    color: #f5f1ed;
    border: 2px solid #3d352f;

    padding: 16px 40px;
    height: 60px;

    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    cursor: pointer;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Plus Jakarta Sans', sans-serif;
}
/* 
.apply-discount-button:hover {
    background: transparent;
    color: #f5f1ed;
    border-color: #3d352f;
} */

.discount-input,
.discount-input:focus,
.discount-input:active,
.discount-input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #4a3f37 !important;
}


.original-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 10px;
}

.discounted-price {
    font-weight: 700;
}

#discountMessage {
  color: #f0f0f0;
}

.label-text-code {}