/* === NEON SHOP THEME (Scoped) === */

.shop-section .package-card {
    background: #121726; /* ușor închis, dar respectă template-ul */
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.shop-section .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f3ff, #b967ff);
}

.shop-section .package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.15);
}

/* header */
.shop-section .card-header {
    background: rgba(20, 28, 50, 0.8);
    border-bottom: 1px solid rgba(0, 243, 255, 0.25);
    padding: 1.3rem;
}

/* features */
.shop-section .feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}
.shop-section .feature i {
    color: #00f3ff;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* price */
.shop-section .price {
    font-size: 1.9rem;
    font-weight: 700;
    color: #00f3ff;
    margin: 1rem 0 0.5rem 0;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

/* gradient button */
.shop-section .btn-grd {
    background: linear-gradient(135deg, #00f3ff 0%, #b967ff 100%);
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}
.shop-section .btn-grd:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

/* section title */
.shop-section .section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #00f3ff, #b967ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-section .section-title p {
    color: #adb5bd;
}