/* Pricing Section Styles - PizzaHub */

.section-pricing {
    background: linear-gradient(339.11deg, #FF6342 13.81%, #FE1B2E 86.19%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-pricing .section-title-h2,
.section-pricing .section-lead {
    color: #fff;
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 53, 69, 0.15);
}

/* Popular Badge */
.pricing-card--popular {
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
}

.pricing-card--popular:hover {
    box-shadow: 0 12px 40px rgba(220, 53, 69, 0.25);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB53F;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 181, 63, 0.4);
}

/* Card Header */
.pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-card__name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.pricing-card__description {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.pricing-card__capacity {
    font-size: 13px;
    color: #dc3545;
    margin: 8px 0 0 0;
    font-weight: 600;
}

/* Price Display */
.pricing-card__price {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 24px;
    font-weight: 600;
    color: #fe1b2e;
    margin-top: 8px;
}

.pricing-card__amount {
    font-size: 56px;
    font-weight: 800;
    color: #fe1b2e;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-card__period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 28px;
}

/* Features List */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card__feature:last-child {
    border-bottom: none;
}

.pricing-card__feature svg {
    margin-top: 2px;
}

.simple-advantages__item svg path {
    fill: #dc3545 !important;
}

.sendpulse-advantages__item svg path {
    fill: #25D366 !important;
}

.pricing-card__feature span {
    flex: 1;
}

/* Action Button */
.pricing-card__action {
    margin-top: auto;
}

.pricing-card__action .btn {
    font-weight: 600;
    padding: 14px 28px;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn--outline-red {
    background: transparent;
    color: #fe1b2e;
    border: 2px solid #fe1b2e;
}

.btn--outline-red:hover {
    background: #fe1b2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 27, 46, 0.3);
}

.pricing-card--popular .pricing-card__action .btn--red {
    background-color: #FE1B2E;
    background-image: linear-gradient(339.11deg, #FF6342 13.81%, #FE1B2E 86.19%);
    border: none;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, background-image 0.3s ease;
}

.pricing-card--popular .pricing-card__action .btn--red:hover {
    background-color: #FFB53F;
    background-image: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 181, 63, 0.4);
}

/* Loading Spinner */
.spinner-border {
    border-width: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 24px;
    }
    
    .pricing-card__amount {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 24px 20px;
    }
    
    .pricing-card__amount {
        font-size: 42px;
    }
    
    .pricing-card__badge {
        font-size: 12px;
        padding: 5px 16px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}
