/* Best Price Section Styles */
.best-price-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.best-price-image {
    position: relative;
    text-align: center;
}

.best-price-img {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(247, 71, 242, 0.6), 0 0 80px rgba(247, 71, 242, 0.3);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.best-price-img img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 40px rgba(247, 71, 242, 0.6), 0 0 80px rgba(247, 71, 242, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(247, 71, 242, 0.8), 0 0 100px rgba(247, 71, 242, 0.4);
    }
}

.best-price-content {
    padding-left: 40px;
}

.best-price-content .section-title h3 {
    color: #f747f2;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.best-price-content .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.best-price-content .section-title h2 span {
    color: #f747f2;
}

.best-price-content .section-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #F5F5F4;
    margin-bottom: 40px;
}

.best-price-features {
    margin-bottom: 40px;
}

.best-price-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #1B1B1B;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(247, 71, 242, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-price-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 71, 242, 0.2);
    border-color: rgba(247, 71, 242, 0.3);
}

.best-price-feature-icon {
    width: 60px;
    height: 60px;
    background: #f747f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.best-price-feature-icon i {
    font-size: 24px;
    color: #000000;
}

.best-price-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.best-price-feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #F5F5F4;
    margin: 0;
}

.best-price-btn {
    text-align: left;
}

.best-price-btn .btn-default {
    display: inline-block;
    padding: 15px 35px;
    background: #f747f2;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.best-price-btn .btn-default:hover {
    background: #f747f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 71, 242, 0.4);
    color: #000000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .best-price-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .best-price-content .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .best-price-section {
        padding: 60px 0;
    }
    
    .best-price-content .section-title h2 {
        font-size: 28px;
    }
    
    .best-price-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .best-price-feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
