/* File: assets/css/pixel-vip.css */

.vip-locked-wrapper {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: var(--radius-md, 12px);
    padding: 40px 20px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    position: relative;
    overflow: hidden;
}

/* Icon styling */
.vip-icon-container {
    width: 64px;
    height: 64px;
    background: var(--bg-input, #f8fafc);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vip-icon-container svg {
    width: 32px;
    height: 32px;
    color: var(--primary, #6366f1);
}

/* Typography */
.vip-locked-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main, #1e293b);
    margin-bottom: 10px;
}

.vip-locked-wrapper p {
    color: var(--text-muted, #64748b);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Grid Layout for Plans */
.vip-plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.vip-plan-card {
    flex: 1 1 300px; /* Responsive: min 300px width */
    max-width: 400px;
    background: #fff;
    border: 2px solid var(--border-light, #e2e8f0);
    border-radius: var(--radius-sm, 8px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.vip-plan-card:hover {
    border-color: var(--primary, #6366f1);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
    transform: translateY(-2px);
}

.vip-plan-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-main, #1e293b);
}

/* Price Styling */
.vip-plan-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary, #6366f1);
    margin-bottom: 20px;
}
.vip-plan-price del {
    color: var(--text-muted, #94a3b8);
    font-size: 0.9rem;
    font-weight: normal;
    margin-left: 8px;
}

/* Features List */
.vip-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: right;
}

.vip-plan-features li {
    font-size: 0.9rem;
    color: var(--text-main, #334155);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vip-plan-features li .icon {
    margin-left: 8px;
    font-size: 1.1em;
}

/* Buttons */
.vip-buy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary, #6366f1);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-sm, 6px);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.vip-buy-btn:hover {
    background: var(--primary-dark, #4f46e5);
    color: #fff;
}

/* Login Area */
.vip-login-area {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    border-top: 1px solid var(--border-light, #e2e8f0);
    padding-top: 20px;
    margin-top: 10px;
}

.vip-login-area a {
    color: var(--primary, #6366f1);
    font-weight: 600;
    text-decoration: none;
}

.vip-login-area a:hover {
    text-decoration: underline;
}

/* Warning box for empty products */
.vip-no-product {
    padding: 15px;
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
    border-radius: 6px;
    width: 100%;
}
