 /* Pricing */

.billing-wrapper {
    display: flex;
    justify-content: center;
}

.billing-toggle {
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: white;
}

.billing-toggle span {
    font-size: 15px;
    font-weight: 700;
    color: #4b5563;
}

.billing-toggle .active {
    color: #3b8f22;
}

.switch {
    width: 54px;
    height: 28px;
    background: #cbd5e1;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.switch::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #3b8f22;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 3px;
    transition: 0.3s ease;
}

.switch.active::before {
    left: 28px;
}

.save-badge {
    background: #3b8f22;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-section {
    max-width: 1200px;
    margin: 70px auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 0 20px;
}


.pricing-card {
    background: #fff;
    width: 350px;
    border-radius: 24px;
    padding: 24px 30px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid #3b7d23;
    overflow: hidden;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3b7d23;
    color: #fff;
    text-align: center;
    padding: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.card-content {
    margin-top: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 1px;
    color: black;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-icon {
    font-size: 26px;
    color: #3b8f22;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 10px;
}

.price h2 {
    font-size: 36px;
    font-weight: 800;
    color: black;
}

.price span {
    color: #6b7280;
    margin-bottom: 10px;
    font-size: 14px;
}

.plan-desc {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.billing-text {
    color: #3b7d23;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 40px;
}

.dark-btn {
    background: #07162d;
    color: #fff;
}

.green-btn {
    background: #3b7d23;
    color: #fff;
}

.plan-bi {
    font-size: 2rem;
}

.features-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.features {
    list-style: none;
}

.features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    line-height: 2;
    font-weight: 500;
}

.features li::before {
    content: "✓";
    color: #3b8f22;
    font-weight: 600;
    font-size: 18px;
}


/* Banner */

.membership-banner {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e8e0b8;
    padding: 12px 18px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.banner-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
}

.banner-text {
    font-size: 14px;
    color: #4b4b4b;
}

.banner-text strong {
    font-weight: 700;
    color: #1f1f1f;
}

.banner-actions {
    display: flex;
    gap: 12px;
}

.closing {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: x-large;
}

.closing:hover {
    color: #000;
}


.renew-btn:focus,
.renew-btn.active {
    outline: none !important;
}

.view-btn:focus,
.view-btn.active {
    outline: none !important;
}


@media (max-width: 768px) {
    .membership-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}


.expiry-card {
    width: 300px;
    background: #f6f3df;
    border-radius: 18px;
    padding: 16px;
    margin-top: 211px;
    width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.warning-icon {
    color: #d89b13;
    font-size: 22px;
}

.title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.time-card {
    background: #f7f4eb;
    border: 1px solid #e7dfcf;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
}

.time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.time-label {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.days-left {
    font-size: 22px;
    font-weight: 700;
    color: #c98700;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: #c98700;
    width: 0%;
    transition: width 0.5s ease;
}

.expiry-date {
    font-size: 11px;
    color: #777;
}

.loss-card {
    background: #f7f7f7;
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.loss-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.loss-list {
    margin: 0;
    padding-left: 16px;
}

.loss-list li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.loss-list li::marker {
    color: #e25b5b;
}

.btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    background: #3f5bf6;
    color: white;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background: #3148d8;
}

.btn-secondary {
    background: #efefef;
    color: #333;
    border: 1px solid #d7d7d7;
}

.btn-secondary:hover {
    background: #e4e4e4;
}

.arrow {
    margin-left: 6px;
}