@charset "UTF-8";
/* CSS Document */
.best-sellers-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.best-sellers-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.best-seller-item {
    margin-bottom: 40px;
    text-align: center;
}

.best-seller-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.best-seller-item h3 {
    margin-top: 10px;
    font-size: 18px;
}

.best-seller-item p {
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

.best-sellers-cta {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.best-sellers-cta h3 {
    margin-bottom: 10px;
}

.best-sellers-cta p {
    margin-bottom: 20px;
}

.best-sellers-cta button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.best-sellers-cta button:hover {
    background-color: #3e8e41;
}

/* Responsive Styles */

@media only screen and (max-width: 768px) {
    .best-sellers-container {
        padding: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .best-sellers-container {
        padding: 5px;
    }
}