#hot-products {
    background-color: var(--gray-dark);
    padding: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-md);
}

#hot-products h2 {
    margin-bottom: 0;
    padding-left: var(--spacing-md);
}

.hot-products-gallery {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    text-align: center;
}

.hot-products-gallery h3 {
    margin-bottom: 0;
    font-size: var(--font-size-base);
    min-height: 2.5rem;
}

.hot-products-gallery p {
    font-size: var(--font-size-sm);
}

.hot-products-gallery img {
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    height: 100%;
}

.small-photos-col {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
}

.large-photo {
    max-width: 400px;
    margin: 0 auto;
}

.small-photo {
    max-width: 200px;
}

.large-photo:hover,
.small-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hot-products-gallery h3 {
        min-height: 3.5rem;
    }
}

@media (max-width: 640px) {
    .hot-products-gallery {
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
    }

    .small-photos-col {
        flex-direction: column;
        gap: 0;
    }

    .large-photo,
    .small-photo {
        max-width: 350px;
        margin: 0 auto var(--spacing-md);
    }

    .hot-products-gallery h3 {
        min-height: var(--spacing-md);
    }
}