/* Existing Styles Updated */
.recharge-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
    transition: 0.3s;
}

.recharge-container.hidden {
    display: none;
}

/* Choice Cards */
.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.choice-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #00bcd4;
}

.choice-icon {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.choice-card h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.choice-card p {
    color: #888;
    margin-bottom: 25px;
}

.choice-btn {
    background: transparent;
    border: 1px solid #00bcd4;
    color: #00bcd4;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.choice-card:hover .choice-btn {
    background: #00bcd4;
    color: #fff;
}

/* Plan Card & Slider */
.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.inner-back-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.inner-back-btn:hover {
    color: #fff;
}

/* Long-term Grid */
.long-term-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-box:hover {
    transform: translateY(-5px);
    border-color: #00bcd4;
}

.product-box .thumbnail {
    position: relative;
    display: block;
    aspect-ratio: 600/520;
}

.product-box .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onsale {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5722;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-box .content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.price-c {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.del-p {
    text-decoration: line-through;
    color: #777;
    font-size: 0.9rem;
}

.main-p {
    color: #4caf50;
    font-size: 1.4rem;
    font-weight: 700;
}

.main-p .symbol {
    font-size: 0.9rem;
    margin-right: 3px;
}

.long-term-pay-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #00bcd4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.long-term-pay-btn:hover {
    background: #0097a7;
}

@media (max-width: 768px) {
    .choice-cards, .long-term-grid {
        grid-template-columns: 1fr;
    }
}

/* Original Slider Styles */
.plan-header {
    text-align: center;
    margin-bottom: 40px;
}
#plan-duration {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.plan-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}
.plan-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00bcd4;
    cursor: pointer;
}
.price-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
}
.main-price .value {
    font-size: 2rem;
    color: #4caf50;
}
.pay-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.mb-4 { margin-bottom: 1.5rem; }
