
.eshterakyar-subscription-plans-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.eshterakyar-plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.eshterakyar-plans-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.2;
}

.eshterakyar-plans-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.eshterakyar-current-subscription {
    margin-top: 24px;
    padding: 16px 24px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    display: inline-block;
}

.eshterakyar-current-subscription-message {
    margin: 0;
    color: #0369a1;
    font-weight: 500;
}

.eshterakyar-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 32px;
    margin-bottom: 60px;
    justify-content: center;
}

.eshterakyar-plan-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.eshterakyar-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.eshterakyar-plan-popular {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.eshterakyar-plan-popular:hover {
    border-color: #f59e0b;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.2);
}

.eshterakyar-plan-current {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

.eshterakyar-plan-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #f59e0b;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.eshterakyar-plan-badge-custom {
    text-transform: none;
}

.eshterakyar-plan-badge-orange {
    background: #f59e0b;
    color: #ffffff;
}

.eshterakyar-plan-badge-red {
    background: #ef4444;
    color: #ffffff;
}

.eshterakyar-plan-badge-green {
    background: #10b981;
    color: #ffffff;
}

.eshterakyar-plan-badge-blue {
    background: #3b82f6;
    color: #ffffff;
}

.eshterakyar-plan-badge-purple {
    background: #8b5cf6;
    color: #ffffff;
}

.eshterakyar-plan-badge-pink {
    background: #ec4899;
    color: #ffffff;
}

.eshterakyar-plan-current-badge {
    position: absolute;
    top: -12px;
    right: 200px;
    background: #10b981;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.eshterakyar-plan-header {
    margin-bottom: 24px;
    text-align: center;
}

.eshterakyar-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    text-align: center;
}

.eshterakyar-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.eshterakyar-plan-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
}

.eshterakyar-plan-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.eshterakyar-plan-price-original {
    position: relative;
    text-align: center;
}

.eshterakyar-plan-price-amount-original {
    font-size: 24px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ef4444;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.eshterakyar-plan-price-sale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eshterakyar-plan-price-amount-sale {
    font-size: 36px;
    font-weight: 700;
    color: #ef4444;
    line-height: 1.2;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.eshterakyar-plan-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: pulse-discount 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulse-discount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
    }
}

.eshterakyar-plan-popular .eshterakyar-plan-price-amount-sale {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eshterakyar-plan-popular .eshterakyar-plan-discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@keyframes pulse-discount-popular {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
    }
}

.eshterakyar-plan-popular .eshterakyar-plan-discount-badge {
    animation: pulse-discount-popular 2s ease-in-out infinite;
}

.eshterakyar-plan-duration {
    font-size: 14px;
    color: #666;
    margin: 8px 0 0 0;
    font-weight: 500;
    text-align: center;
}

.eshterakyar-plan-description {
    margin-bottom: 24px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.eshterakyar-plan-description p {
    margin: 0;
}

.eshterakyar-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
    text-align: center;
}

.eshterakyar-plan-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    color: #374151;
    line-height: 1.6;
}

.eshterakyar-plan-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.eshterakyar-plan-feature-text {
    flex: 1;
}

.eshterakyar-plan-footer {
    margin-top: auto;
}

.eshterakyar-plan-button {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.eshterakyar-plan-button-primary {
    background: #3b82f6;
    color: #ffffff;
}

.eshterakyar-plan-button-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.eshterakyar-plan-popular .eshterakyar-plan-button-primary {
    background: #f59e0b;
}

.eshterakyar-plan-popular .eshterakyar-plan-button-primary:hover {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.eshterakyar-plan-button-current {
    background: #10b981;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.8;
}

.eshterakyar-plan-button-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    width: 100px;
}

.eshterakyar-no-plans {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.eshterakyar-no-plans p {
    font-size: 18px;
    margin: 0;
}

.eshterakyar-terms-section {
    margin-top: 0;
    margin-bottom: 60px;
    padding-top: 0;
    padding-bottom: 40px;
    border-top: none;
    border-bottom: 2px solid #e5e7eb;
}

.eshterakyar-terms-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-align: center;
}

.eshterakyar-terms-content {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    color: #374151;
    line-height: 1.8;
}

.eshterakyar-terms-content p {
    margin: 0 0 16px;
}

.eshterakyar-terms-content p:last-child {
    margin-bottom: 0;
}

.eshterakyar-terms-content ul,
.eshterakyar-terms-content ol {
    margin: 16px 0;
    padding-right: 24px;
}

.eshterakyar-terms-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .eshterakyar-plans-title {
        font-size: 36px;
    }
    
    .eshterakyar-plans-subtitle {
        font-size: 16px;
    }
    
    .eshterakyar-plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .eshterakyar-plan-card {
        padding: 24px;
    }
    
    .eshterakyar-plan-price-amount,
    .eshterakyar-plan-price-amount-sale {
        font-size: 32px;
    }
    
    .eshterakyar-plan-price-amount-original {
        font-size: 20px;
    }
    
    .eshterakyar-terms-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .eshterakyar-subscription-plans-page {
        padding: 20px 16px;
    }
    
    .eshterakyar-plans-title {
        font-size: 28px;
    }
    
    .eshterakyar-plan-card {
        padding: 20px;
    }
    
    .eshterakyar-plan-price-amount,
    .eshterakyar-plan-price-amount-sale {
        font-size: 28px;
    }
    
    .eshterakyar-plan-price-amount-original {
        font-size: 18px;
    }
    
    .eshterakyar-plan-discount-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}


