/**
 * HyperDAF Core — Homepage Best Selling Styles
 * File: /wp-content/themes/hyperdaf-core/assets/css/home-best-selling.css
 *
 * Purpose:
 * - Styles the homepage Best Selling products section.
 * - Uses a clean single-column section structure without sidebar.
 * - Keeps the product grid compact, premium, and homepage-friendly.
 *
 * Related Files:
 * - /wp-content/themes/hyperdaf-core/inc/home/sections/best-selling.php
 * - /wp-content/themes/hyperdaf-core/template-parts/loops/product-card.php
 * - /wp-content/themes/hyperdaf-core/assets/css/home-latest-items.css
 *
 * Notes:
 * - Homepage product sections should stay lightweight and visually consistent.
 * - Sidebar-specific legacy styles were removed intentionally.
 */

.hdaf-home-best-selling__inner{
min-width:0;
}

.hdaf-home-best-selling__grid{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:14px;
min-width:0;
}

@media (max-width:1399px){
.hdaf-home-best-selling__grid{
gap:12px;
}
}

@media (max-width:1199px){
.hdaf-home-best-selling__grid{
grid-template-columns:repeat(3,minmax(0,1fr));
}
}

@media (max-width:991px){
.hdaf-home-best-selling__grid{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}

@media (max-width:767px){
.hdaf-home-best-selling__grid{
grid-template-columns:1fr;
gap:14px;
}
}