/* Catalog Section Styles */

.catalog-section {
    padding-top: 65px;
    padding-bottom: 65px;
    background-color: #0a0a0a;
    position: relative;
}

.catalog-image {
    position: relative;
    text-align: center;
}

.catalog-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;
}

.catalog-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);
    }
}

.catalog-content {
    padding: 60px 40px 60px 0;
}

.catalog-content .section-title h3 {
    color: #f747f2;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.catalog-content .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.catalog-content .section-title h2 span {
    color: #f747f2;
}

.catalog-content .section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: #B8B8B8;
    margin-bottom: 30px;
}

/* Les styles des features sont hérités de best-price-features */

.catalog-btn {
    margin-top: 20px;
}

.catalog-btn .btn-default {
    background: #f747f2;
    color: #000000;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalog-btn .btn-default:hover {
    background: #f747f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 71, 242, 0.4);
    color: #000000;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .catalog-section {
        padding: 80px 0;
    }
    
    .catalog-content {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .catalog-content .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .catalog-section {
        padding: 60px 0;
    }
    
    .catalog-content {
        padding: 30px 0;
    }
    
    .catalog-content .section-title h2 {
        font-size: 28px;
    }
}

