/* ========================================
   BEST SELLER BANNER - SIMPLE CENTERED
   ======================================== */

.bestseller-section {
    background: #2D1F26;
    padding: 5rem 2rem;
    text-align: center;
}

.bs-inner {
    max-width: 700px;
    margin: 0 auto;
}

/* Decorative quotes */
.bs-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #C77D8F;
    line-height: 1;
    margin-bottom: -1rem;
}

/* Main text */
.bs-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.7;
    margin: 0 0 2rem;
}

/* Button */
.bs-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bs-btn:hover {
    background: #C77D8F;
    border-color: #C77D8F;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .bestseller-section {
        padding: 4rem 1.5rem;
    }

    .bs-quote {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .bestseller-section {
        padding: 3rem 1.25rem;
    }

    .bs-quote {
        font-size: 2.5rem;
    }

    .bs-btn {
        padding: 0.9rem 2rem;
        letter-spacing: 2px;
    }
}
