.shop-page {
    background: radial-gradient(120% 120% at 70% 0%, rgba(99, 102, 241, 0.18) 0%, rgba(16, 185, 129, 0.1) 35%, rgba(15, 23, 42, 0) 70%),
        var(--bg-primary);
    color: var(--text-primary);
}

.shop-navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(18px);
}

.shop-main {
    padding-top: 90px;
}

.shop-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -120px;
    top: -180px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(15, 23, 42, 0) 70%);
    filter: blur(10px);
    z-index: 0;
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.shop-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.shop-title {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.shop-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

.shop-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.shop-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.shop-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-hero-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.shop-hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.shop-hero-card-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.shop-hero-card-pill {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-weight: 600;
    font-size: 0.75rem;
}

.shop-hero-card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.shop-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.shop-metric {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.shop-metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.shop-metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.shop-highlights {
    padding: 70px 0;
}

.shop-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.shop-highlight {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.6rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.shop-highlight h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.shop-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.shop-catalog {
    padding: 70px 0;
    background: var(--bg-secondary);
}

.shop-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 0.8rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}

.shop-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 80% 0%, rgba(99, 102, 241, 0.18) 0%, rgba(16, 185, 129, 0.1) 45%, rgba(15, 23, 42, 0) 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.shop-card:hover::before {
    opacity: 1;
}

.shop-card-head {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.shop-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(16, 185, 129, 0.18));
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.shop-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.shop-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.shop-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.shop-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-size: 0.7rem;
    font-weight: 600;
}

.shop-price {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.shop-card-cta {
    margin-top: auto;
    text-align: center;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.shop-steps {
    padding: 70px 0;
}

.shop-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.shop-step {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-color);
}

.shop-step h3 {
    margin: 0.7rem 0 0.5rem;
}

.shop-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.shop-cta {
    padding: 70px 0 90px;
}

.shop-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.shop-cta-inner p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@media (max-width: 960px) {
    .shop-hero-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero-card {
        order: -1;
    }

    .shop-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .shop-main {
        padding-top: 80px;
    }

    .shop-hero {
        padding: 60px 0 40px;
    }

    .shop-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .shop-hero-card {
        padding: 1.5rem;
    }

    .shop-hero-metrics {
        grid-template-columns: 1fr;
    }
}
