:root {
    --text-main: #1e293b;
    --text-light: #64748b;
    --accent-teal: #0ea5e9;
    --accent-purple: #6366f1;
    --standard-color: #10b981;      /* سبز برای استاندارد */
    --pro-color: #f59e0b;            /* نارنجی برای پرو */
}

/* استایل‌های پایه (بدون تغییر از قبل) */
.shop-container {
    display: block !important; 
    width: 100%;
}

.subscription-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.section-block {
    width: 100%;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 20px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: start;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.plan-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.plan-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
}

.plan-price small {
    font-size: 14px;
    font-weight: normal;
    color: #64748b;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: right;
    flex-grow: 1;
}

.features-list li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-select {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
    box-sizing: border-box;
    margin-top: auto;
}

/* ========== تم استاندارد AI ========== */
.ai-standard .plan-icon-box {
    background: #d1fae5;
    color: var(--standard-color);
}
.ai-standard .plan-price {
    color: var(--standard-color);
}
.ai-standard .btn-select {
    background: var(--standard-color);
}
.ai-standard .btn-select:hover {
    background: #059669;
}
.ai-standard .features-list li i {
    color: var(--standard-color);
}

/* ========== تم پرو AI ========== */
.ai-pro .plan-icon-box {
    background: #fed7aa;
    color: var(--pro-color);
}
.ai-pro .plan-price {
    color: var(--pro-color);
}
.ai-pro .btn-select {
    background: var(--pro-color);
}
.ai-pro .btn-select:hover {
    background: #d97706;
}
.ai-pro .features-list li i {
    color: var(--pro-color);
}

/* ========== تم سایت (بدون تغییر) ========== */
.site-theme .plan-icon-box { background: #fef3c7; color: #d97706; }
.site-theme .btn-select { background: #d97706; }
.site-theme .btn-select:hover { background: #b45309; }
.site-theme .features-list li i { color: #d97706; }

/* استایل‌های کمکی */
.badge-offer {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #facc15;
    color: #854d0e;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
}