/* ===== PRICING MODAL IMPROVEMENTS ===== */
/* Premium kainų lentelės patobulinimai */

/* === 1. HERO CARD - Subtilus švytėjimas === */
.hero-card {
    /* Sumažintas, bet intensyvesnis/aštresnis švytėjimas */
    box-shadow:
        0 0 40px rgba(0, 122, 255, 0.25),
        /* Mažesnis radius, bet intensyvesnis */
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px rgba(255, 255, 255, 0.3) !important;
}

.hero-card:hover {
    /* Hover būsena - dar intensyvesnis, bet kompaktiškas */
    box-shadow:
        0 0 50px rgba(0, 122, 255, 0.4),
        /* Intensyvesnis, bet ne per didelis */
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px rgba(255, 255, 255, 0.4) !important;
}

/* Animacijos pataisymas - subtilus pulse */
@keyframes subtle-pulse {

    0%,
    100% {
        box-shadow:
            0 0 40px rgba(0, 122, 255, 0.25),
            0 8px 32px rgba(0, 0, 0, 0.4),
            inset 0 1px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 50px rgba(0, 122, 255, 0.35),
            0 8px 32px rgba(0, 0, 0, 0.4),
            inset 0 1px rgba(255, 255, 255, 0.35);
    }
}

/* === 2. PREMIUM CARD - Golden/Amber gradientas === */
.premium-card .btn-premium {
    /* Auksinės/Amber gradientas vietoj oranžinės */
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 50%, #D97706 100%) !important;

    /* Auksinės šviesos efektas */
    box-shadow:
        0 8px 24px rgba(255, 184, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px rgba(255, 255, 255, 0.2) !important;

    /* Subtilus aukso blizgesys */
    position: relative;
    overflow: hidden;
}

/* Auksinės šviesos animacija */
.premium-card .btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: golden-shimmer 3s infinite;
}

@keyframes golden-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.premium-card .btn-premium:hover {
    /* Intensyvesnis auksinės gradientas hover metu */
    background: linear-gradient(135deg, #FFC933 0%, #FFA500 50%, #E68900 100%) !important;

    box-shadow:
        0 12px 32px rgba(255, 184, 0, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.3) !important;
}

/* === 3. KAINOS SKAIČIAI - Didesni ir ryškesni === */
.price-main {
    /* Valiutos simbolis mažesnis */
    font-size: 3rem !important;
}

/* Skaičiai didesni už valiutos simbolį */
.price-main::first-line {
    font-size: 3.5rem !important;
}

/* Specifiniai stiliai skirtingoms kortelėms */
.basic-card .price-main {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

.hero-card .price-main.hero-price {
    font-size: 3.75rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

.premium-card .price-main.premium-price {
    font-size: 3rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;

    /* Auksinės spalvos gradientas */
    background: linear-gradient(135deg, #FFB800, #FF8C00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 8px rgba(255, 184, 0, 0.3)) !important;
}

/* === 4. PREMIUM BADGE - Auksinės spalvos === */
.premium-badge {
    background: linear-gradient(135deg, #FFB800, #FF8C00) !important;
    box-shadow:
        0 4px 12px rgba(255, 184, 0, 0.3),
        inset 0 1px rgba(255, 255, 255, 0.2) !important;
}

/* === 5. PREMIUM CARD BORDER - Auksinės spalvos === */
.premium-card {
    border: 1.5px solid rgba(255, 184, 0, 0.3) !important;
    box-shadow:
        0 0 30px rgba(255, 184, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.premium-card:hover {
    border-color: rgba(255, 184, 0, 0.5) !important;
    box-shadow:
        0 0 40px rgba(255, 184, 0, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.5) !important;
}

/* === 6. PREMIUM FEATURES ICONS - Auksinės spalvos === */
.premium-card .pricing-features li i {
    color: #FFB800 !important;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .basic-card .price-main {
        font-size: 2rem !important;
    }

    .hero-card .price-main.hero-price {
        font-size: 3.25rem !important;
    }

    .premium-card .price-main.premium-price {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    .basic-card .price-main {
        font-size: 1.85rem !important;
    }

    .hero-card .price-main.hero-price {
        font-size: 2.75rem !important;
    }

    .premium-card .price-main.premium-price {
        font-size: 2.25rem !important;
    }
}

/* === LIGHT MODE OVERRIDES === */
body.light-mode .premium-card {
    background: linear-gradient(135deg, #FFB800, #FF8C00) !important;
    border: none !important;
    box-shadow:
        0 8px 32px rgba(255, 184, 0, 0.35),
        0 4px 16px rgba(255, 184, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
}

body.light-mode .premium-card:hover {
    box-shadow:
        0 16px 48px rgba(255, 184, 0, 0.45),
        0 8px 24px rgba(255, 184, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset !important;
}

body.light-mode .premium-card .price-main.premium-price {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .premium-card .btn-premium {
    background: white !important;
    color: #FF8C00 !important;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .premium-card .btn-premium:hover {
    background: #F5F5F7 !important;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.12) !important;
}