/* Bundoq Loyalty Wallet - Public Styles */

.bundoq-vip-page-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    max-width: 1000px;
    margin: 0 auto;
}

.bundoq-vip-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.bundoq-vip-main-title {
    font-size: 36px;
    color: #d54d21;
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
}

.bundoq-vip-price-tag {
    display: inline-block;
    background: #d54d21;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 30px auto;
    display: table;
    box-shadow: 0 4px 15px rgba(213, 77, 33, 0.3);
}

.bundoq-vip-description {
    background: #fdf2f0;
    padding: 30px;
    border-radius: 20px;
    border-right: 6px solid #d54d21;
}

.bundoq-vip-description h3 {
    color: #d54d21;
    margin-top: 0;
    font-size: 24px;
}

.bundoq-vip-sub-title {
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.bundoq-vip-sub-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 80px;
    height: 3px;
    background: #d54d21;
}

/* Benefits Grid */
.bundoq-vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bundoq-benefit-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bundoq-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #d54d21;
}

.benefit-icon {
    font-size: 45px;
    display: block;
    margin-bottom: 15px;
}

.bundoq-benefit-card p {
    margin: 0;
    font-weight: 700;
    color: #444;
    font-size: 16px;
}

/* Steps Section */
.bundoq-vip-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.bundoq-step {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fcfcfc;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #f5f5f5;
}

.step-number {
    background: #d54d21;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 18px;
}

.bundoq-step p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}

/* Terms Box */
.bundoq-vip-terms-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 35px;
}

.bundoq-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundoq-terms-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.bundoq-terms-list li::before {
    content: '✔';
    color: #d54d21;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 18px;
}

/* Buttons */
.bundoq-vip-wa-btn {
    display: block;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.bundoq-vip-wa-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.bundoq-status-pending {
    background: #fff3cd;
    color: #856404;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    border: 1px solid #ffeeba;
    font-weight: 600;
}

/* Active Membership Card */
.bundoq-vip-active-card {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    border: 1px solid #38b2ac;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(56, 178, 172, 0.1);
}

.bundoq-vip-active-card h3 {
    color: #2c7a7b;
    font-size: 28px;
    margin-bottom: 15px;
}

.bundoq-btn-outline {
    background: transparent;
    border: 2px solid #ccc;
    color: #666;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 20px;
}

.bundoq-btn-outline:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .bundoq-vip-main-title {
        font-size: 28px;
    }
    .bundoq-benefit-card {
        padding: 20px;
    }
    .bundoq-vip-price-tag {
        font-size: 18px;
    }
}
