/* Bố cục Container của Tab */
.ds-shop-tabs-container {
    margin-bottom: 25px;
    border-bottom: 2px solid #f3f4f6; /* Viền xám nhạt chạy ngang dưới tab giống ảnh */
}
.ds-shop-tabs-nav {
    display: flex; gap: 30px; list-style: none; padding: 0; margin: 0;
}

/* Thiết kế từng Tab */
.ds-shop-tabs-nav li {
    padding: 10px 0; cursor: pointer; font-size: 16px; font-weight: 500;
    color: #4b5563; white-space: nowrap; position: relative; transition: 0.3s;
}

/* Thiết kế các thẻ Badge (HOT, SALE) */
.ds-shop-tabs-nav li sup {
    font-size: 10px; color: #fff; background:#cc0000; padding: 2px 6px;
    border-radius: 4px; font-weight: 600; margin-left: 5px; vertical-align: top;
}

/* Trạng thái Active (Đang chọn) */
.ds-shop-tabs-nav li.active {
    color: #cc0000; /* Màu đỏ chủ đạo */
    font-weight: 700;
}
.ds-shop-tabs-nav li.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
    height: 2px; background-color: #cc0000; /* Thanh gạch đít màu đỏ */
}

.ds-shop-tabs-content { margin-top: 25px; min-height: 300px; width: 100%; }

/* Lưới 4 cột CSS chuẩn theo layout ảnh */
.ds-shop-tab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Chia 4 cột */
    gap: 20px; /* Khoảng cách giữa các thẻ sản phẩm */
    width: 100%;
    box-sizing: border-box;
}

/* Responsive cho thiết bị di động */
@media (max-width: 1200px) { .ds-shop-tab-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .ds-shop-tab-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) {
    .ds-shop-tab-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ds-shop-tabs-nav li { font-size: 14px; padding: 10px 0; }
    .ds-shop-tabs-nav { gap: 15px; overflow-x: auto; } /* Cuộn ngang trên mobile nếu tab dài */
}

/* CSS Phân trang giữ nguyên */
.ds-shop-pagination { margin-top: 35px; text-align: center; width: 100%; }
.ds-shop-pagination ul { display: inline-flex; list-style: none; padding: 0; margin: 0; border: 1px solid #e5e7eb; border-radius: 4px; overflow: hidden;}
.ds-shop-pagination li { border-right: 1px solid #e5e7eb; }
.ds-shop-pagination li:last-child { border-right: none; }
.ds-shop-pagination a, .ds-shop-pagination span.current { display: block; padding: 8px 14px; color: #374151; text-decoration: none; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.2s;}
.ds-shop-pagination span.current { background: #cc0000; color: #fff; }
.ds-shop-pagination a:hover { background: #f9fafb; color: #cc0000; }
