@import url('https://fonts.googleapis.com/css2?family=Marcellus:wght@400&family=Plus+Jakarta+Sans:ital,wght@0,200&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    background: #efefe9;
    color: #1a1a1a;
    min-height: 100vh;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.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: 35px;
    width: auto;
}
.club-name {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.5px;
    margin-left: 30px;
}
.progress-steps {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    cursor: pointer;
}
.step {
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666666;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 200;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}
.step.completed .step-number {
    background: #333333;
    color: #efefe9;
    border-color: #333333;
}
.step.completed .step-number::before {
    content: "✓";
    font-size: 0.8rem;
    font-weight: bold;
}
.step.active .step-number {
    background: #333333;
    color: #efefe9;
    border-color: #333333;
}
.step-label {
    color: #666666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
}
.step.completed .step-label,
.step.active .step-label {
    color: #333333;
}
.divider {
    height: 2px;
    background: #e8e8e8;
    margin-bottom: 40px;
}
.location-info {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #333333;
}
.location-title {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.location-name {
    font-size: 1.4rem;
    color: #333333;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.section-title {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.5px;
}
.subscriptions-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.subscription-card {
    cursor: pointer;
    background: #efefe9;
    border-radius: 2px;
    padding: 35px 30px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
}
.subscription-card:hover {
    border-color: #cccccc;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.subscription-card.selected {
    border-color: #8e816c;
    background: #fafafa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.subscription-name {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333333;
}
.subscription-subtitle {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 25px;
    font-weight: 200;
}
.additional-info {
    margin-bottom: 25px;
    flex-grow: 1;
}
.info-line {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #444444;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 200;
}
.info-line:before {
    content: "✓";
    color: #333333;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}
.info-line span:first-child {
    font-weight: 200;
    min-width: 0;
}
.info-line span:last-child {
    color: #666666;
}
.price-section {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}
.price {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
}
.price-period {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 200;
}
.contract-info {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 10px;
    font-weight: 200;
}
.select-button {
    background: #333333;
    color: #efefe9;
    border: 2px solid #333333;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.select-button:hover {
    background: #8e816c;
    border-color: #8e816c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.select-button.selected {
    background: #8e816c;
    color: #efefe9;
    border-color: #8e816c;
}
.more-info {
    text-align: center;
}
.more-info a {
    color: #666666;
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.more-info a:hover {
    color: #333333;
    border-bottom-color: #333333;
}
.loading {
    text-align: center;
    padding: 80px 20px;
    font-size: 1.1rem;
    color: #666666;
    grid-column: 1 / -1;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.error-message {
    text-align: center;
    padding: 80px 20px;
    color: #d32f2f;
    font-size: 1rem;
    grid-column: 1 / -1;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.features-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}
.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #444444;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 200;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.features-list li:before {
    content: "✓";
    color: #333333;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1rem;
}
.membership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333333;
    color: #efefe9;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 200;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.subscription-card.selected .membership-badge {
    background: #8e816c;
    color: #efefe9;
}
.addons-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
    display: none;
}
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}
.addon-card {
    background: #f8f8f8;
    border-radius: 2px;
    padding: 30px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
}
.addon-card:hover {
    border-color: #cccccc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.addon-card.selected-addon {
    border-color: #8e816c;
    background: #fafafa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}
.addon-name {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.3;
}
.addon-price {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.addon-info {
    margin-bottom: 25px;
    flex-grow: 1;
}
.addon-info .info-line {
    border-bottom: none;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555555;
    font-weight: 200;
}
.addon-info .info-line:before {
    margin-right: 12px;
    font-size: 1rem;
}
.select-addon-button {
    background: #333333;
    color: #efefe9;
    border: 2px solid #333333;
    padding: 14px 25px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.select-addon-button:hover {
    background: #8e816c;
    border-color: #8e816c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.select-addon-button.selected {
    background: #8e816c;
    color: #efefe9;
    border-color: #8e816c;
}
.upgrade-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
    display: none;
}
.upgrade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}
.upgrade-card {
    background: #f8f8f8;
    border-radius: 5px;
    padding: 30px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
}
.upgrade-card:hover {
    border-color: #cccccc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.upgrade-card.selected-upgrade {
    border-color: #8e816c;
    background: #fafafa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}
.upgrade-name {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.3;
}
.upgrade-card .membership-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1976d2;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 200;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.upgrade-card .additional-info {
    margin-bottom: 20px;
}
.upgrade-card .price-section {
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}
.upgrade-card .price {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
}
.upgrade-card .contract-info {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 200;
}
.select-upgrade-button {
    background: #333333;
    color: #efefe9;
    border: 2px solid #333333;
    padding: 14px 25px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.select-upgrade-button:hover {
    background: #8e816c;
    border-color: #8e816c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.select-upgrade-button.selected {
    background: #8e816c;
    color: #efefe9;
    border-color: #8e816c;
}
.addons-actions,
.upgrade-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    width: 100%;
}
   
.progress-steps .step:nth-child(3) + .step {
    margin-left: 30px;
}
.addons-actions .back-button,
.upgrade-actions .back-button,
.addons-actions .continue-button,
.upgrade-actions .continue-button {
    flex: 1;
    margin: 0 10px;
}
.back-button,
.continue-button {
    background: transparent;
    color: #333333;
    border: 2px solid #333333;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 200;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.back-button:hover,
.continue-button:hover {
    background: #8e816c;
    color: #efefe9;
    border-color: #8e816c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
    .subscriptions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
   
    .addons-grid,
    .upgrade-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
   
    .progress-steps {
        gap: 30px;
    }
   
}
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
       .step-number {
        padding-top: 1px; 
    }
    .subscriptions-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 25px;
    }
   
    .addons-grid,
    .upgrade-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
   
    .header {
        flex-direction: column;
        gap: 15px;
    }
   
    .progress-steps {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }
    .progress-steps .step:nth-child(3) + .step {
        margin-left: 0px;
    }
   
    .logo {
        font-size: 2rem;
        margin-bottom: 30px;
    }
   
    .section-title {
        font-size: 1.6rem;
    }
   
    .subscription-card {
        padding: 25px 20px;
    }
   
    .addon-card,
    .upgrade-card {
        padding: 25px 20px;
    }
   
    .addon-name,
    .upgrade-name {
        font-size: 1.2rem;
    }
   
    .addon-price,
    .upgrade-card .price {
        font-size: 1.4rem;
    }
   
    .club-name {
        margin-left: 20px;
        font-size: 1.6rem;
    }
   
    .logo img {
        height: 30px;
    }
   
    .step-label {
        font-size: 0.7rem;
        max-width: 80px;
    }
    .addons-actions,
    .upgrade-actions {
        flex-direction: column;
        gap: 15px;
    }
    .addons-actions .back-button,
    .upgrade-actions .back-button,
    .addons-actions .continue-button,
    .upgrade-actions .continue-button {
        flex: none;
        margin: 0;
        width: 100%;
    }
    .back-button,
    .continue-button {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .progress-steps {
        gap: 15px;
        font-size: 0.8rem;
    }
   
   
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
   
    .subscription-name {
        font-size: 1.2rem;
    }
   
    .price {
        font-size: 1.5rem;
    }
   
    .section-title {
        font-size: 1.4rem;
    }
   
    .addon-name,
    .upgrade-name {
        font-size: 1.1rem;
    }
   
    .addon-price,
    .upgrade-card .price {
        font-size: 1.3rem;
    }
   
    .continue-button,
    .back-button {
        width: 100%;
        padding: 12px 20px;
    }
   
    .step-label {
        font-size: 0.7rem;
        max-width: 80px;
    }
}
  .step-icon {
            position: relative;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 5px;
            font-size: 14px;
            font-weight: bold;
        }
        .step.active .step-icon {
            background-color: #007bff;
            color: white;
        }
        .step.completed .step-icon {
            background-color: #333333;
            color: white;
        }
        .step-number { display: block; }
        .step-checkmark { display: none; font-size: 16px; }
        .step.completed .step-number { display: none; }
        .step.completed .step-checkmark { display: block; }
        .step-label { text-align: center; font-size: 12px; }
        .progress-steps { display: flex; justify-content: space-between; margin: 20px 0; }
        .step { flex: 1; text-align: center; }
.promotion-info {
  margin-bottom: 15px;
}
.promotion-title {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 10px;
}
.promotion-description {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0;
    font-weight: 200;
}
@media (max-width: 768px) {
    .progress-steps {
    justify-content: center;
    gap: 12px;
    padding: 15px 0;
  }
  .step {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .step-label {
    display: none;
  }
  .step.active .step-label {
    display: block;
    font-size: 12px;
    color: #333;
  }
  .step-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0;
    margin-right: 8px;
  }
  .step.active .step-icon {
    margin-bottom: 0;
  }
  .step-number,
  .step-checkmark {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
    .promotion-title {
        font-size: 1.1rem;
    }
    .promotion-description {
        font-size: 0.8rem;
    }
}
.original-price {
  transition: text-decoration 0.5s ease, color 0.5s ease;
}
.original-price.strike-through {
  text-decoration: line-through;
  color: #999;
}
.promo-price {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.promo-price.fade-in {
  opacity: 1;
}
.promotion-description {
  transition: opacity 2.5s ease;
}
.promotion-description.fade-in {
  opacity: 1;
}
 