/* Shop Page Specific Styles - No global resets to avoid conflicts */
.shop-main-shop {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    padding: 60px 0;
    box-sizing: border-box;
}

.shop-main-shop *,
.shop-main-shop *::before,
.shop-main-shop *::after {
    box-sizing: inherit;
}

.shop-container-shop {
    width: 100%;
    min-height: 100vh;
}

.shop-wrapper-shop {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Professional Header */
.shop-header-shop {
    text-align: center;
    padding: 60px 20px;
    background: rgba(22, 12, 1, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    margin-bottom: 80px;
}

.shop-header-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.shop-header-content-shop {
    position: relative;
    z-index: 2;
}

.shop-header-shop h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.shop-header-shop p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
}

.section-shop {
    margin-bottom: 100px;
}

.section-title-shop {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.section-subtitle-shop {
    text-align: center;
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0 auto 60px auto;
    max-width: 600px;
}

/* Professional Tier Colors */
:root {
    --bronze: linear-gradient(135deg, #d97706, #ea580c);
    --silver: linear-gradient(135deg, #64748b, #475569);
    --gold: linear-gradient(135deg, #eab308, #d97706);
    --custom: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --bronze-light: rgba(217, 119, 6, 0.1);
    --silver-light: rgba(100, 116, 139, 0.1);
    --gold-light: rgba(234, 179, 8, 0.1);
    --custom-light: rgba(139, 92, 246, 0.1);
}

.plans-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.plan-card-shop {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.plan-card-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transition: all 0.4s ease;
}

.plan-card-shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-light);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}

.plan-card-shop:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
    border-color: rgba(148, 163, 184, 0.3);
}

.plan-card-shop:hover::after {
    opacity: 1;
}

.plan-card-shop.bronze-shop {
    --accent-gradient: var(--bronze);
    --accent-light: var(--bronze-light);
}

.plan-card-shop.silver-shop {
    --accent-gradient: var(--silver);
    --accent-light: var(--silver-light);
}

.plan-card-shop.gold-shop {
    --accent-gradient: var(--gold);
    --accent-light: var(--gold-light);
}

.plan-card-shop.custom-shop {
    --accent-gradient: var(--custom);
    --accent-light: var(--custom-light);
}

.plan-content-shop {
    position: relative;
    z-index: 2;
}

.plan-title-shop {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-subtitle-shop {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0 0 32px 0;
    font-weight: 500;
}

.price-container-shop {
    margin-bottom: 40px;
    padding: 24px 0;
}

.price-shop {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1;
    margin: 0 0 4px 0;
}

.duration-shop {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

.discount-badge-shop {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    z-index: 3;
}

.features-shop {
    text-align: left;
    margin-bottom: 40px;
}

.features-shop ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-shop li {
    padding: 12px 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 0;
}

.features-shop li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: white;
}

.subscribe-btn-shop {
    width: 100%;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgb(58, 3, 3);
    font-family: 'Inter', sans-serif;
}

.subscribe-btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn-shop:hover::before {
    left: 100%;
}

.subscribe-btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Custom Calculator Section */
.custom-section-shop {
    background: rgba(1, 22, 2, 0.329);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.custom-section-shop::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--custom);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.1;
}

.custom-content-shop {
    position: relative;
    z-index: 1;
}

.custom-title-shop {
    font-size: 3rem;
    font-weight: 800;
    background: var(--custom);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.calculator-shop {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.input-group-shop {
    margin-bottom: 32px;
}

.input-group-shop label {
    display: block;
    margin: 0 0 12px 0;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.125rem;
}

.input-group-shop input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #f8fafc;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.input-group-shop input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: rgba(30, 41, 59, 0.8);
}

.price-display-shop {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 32px;
    border-radius: 20px;
    margin: 32px 0;
    text-align: center;
}

.calculated-price-shop {
    font-size: 3rem;
    font-weight: 800;
    background: var(--custom);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.savings-shop {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-header-shop {
        padding: 40px 20px;
    }

    .shop-header-shop h1 {
        font-size: 2.75rem;
    }

    .section-title-shop {
        font-size: 2.25rem;
    }

    .plans-grid-shop {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-card-shop {
        padding: 40px 28px;
    }

    .price-shop {
        font-size: 3rem;
    }

    .custom-section-shop {
        padding: 40px 28px;
    }

    .custom-title-shop {
        font-size: 2.5rem;
    }

    .calculated-price-shop {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .shop-wrapper-shop {
        padding: 0 16px;
    }

    .shop-header-shop {
        padding: 32px 16px;
    }

    .shop-header-shop h1 {
        font-size: 2.25rem;
    }

    .plan-card-shop {
        padding: 32px 20px;
    }

    .custom-section-shop {
        padding: 32px 20px;
    }

    .discount-badge-shop {
        top: 16px;
        right: 16px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}