.packs-showcase {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.packs-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.packs-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.pack-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pack-featured {
    border-color: #4caf50;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
    transform: scale(1.05);
}

.pack-featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pack-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
}

.pack-badge-best {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
    font-size: 11px;
    padding: 6px 12px;
}

.pack-icon {
    font-size: 48px;
    margin: 15px 0;
}

.pack-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.pack-desc {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    min-height: 40px;
}

.pack-price {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pack-price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.pack-price-new {
    font-size: 28px;
    font-weight: 800;
    color: #2fb5d2;
}

.pack-featured .pack-price-new {
    color: #4caf50;
}

.pack-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2fb5d2 0%, #1a9ab8 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(47, 181, 210, 0.3);
}

.pack-cta:hover {
    background: linear-gradient(135deg, #1a9ab8 0%, #157a92 100%);
    box-shadow: 0 5px 15px rgba(47, 181, 210, 0.4);
    transform: translateY(-2px);
    color: white;
}

.pack-cta-featured {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    animation: pulse-cta 2s infinite;
}

.pack-cta-featured:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(76, 175, 80, 0.5);
    }
}

@media (max-width: 768px) {
    .packs-title {
        font-size: 24px;
    }

    .packs-subtitle {
        font-size: 14px;
    }

    .packs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pack-featured {
        transform: scale(1);
    }

    .pack-featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .pack-badge-best {
        font-size: 10px;
        padding: 5px 10px;
    }
}

.pack-icon-svg {
    display: block;
    margin: 15px auto;
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.pack-card:hover .pack-icon-svg {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .pack-icon-svg {
        width: 60px;
        height: 60px;
        margin: 10px auto;
    }
}
