/**
 * ED Home Categories - Styles
 * @author Energiedin
 */

.ed-home-categories {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Tabs Navigation */
.edhc-tabs-nav {
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    overflow-x: auto;
}

.edhc-tabs {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.edhc-tab {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.edhc-tab:hover {
    color: #FF6B00;
}

.edhc-tab.active {
    color: #FF6B00;
    border-bottom-color: #FF6B00;
}

.edhc-tab.highlighted {
    color: #fff !important;
    border-radius: 0px;
    border-bottom: none !important;
    padding-left: 5px;
    padding-right: 5px;
}

.edhc-view-all-wrapper {
    margin-left: auto;
}

.edhc-view-all {
    color: #FF6B00;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.edhc-view-all:hover {
    text-decoration: underline;
}

/* Panels */
.edhc-panel {
    display: none;
}

.edhc-panel.active {
    display: block;
}

/* Products Grid - utilise le style natif PrestaShop */
.edhc-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.edhc-products-grid .product-miniature {
    width: calc(20% - 20px);
    margin: 10px;
}

.edhc-empty {
    text-align: center;
    color: #999;
    padding: 40px;
}

/* Responsive */
@media (max-width: 1200px) {
    .edhc-products-grid .product-miniature {
        width: calc(25% - 20px);
    }
}

