/* Brands Listing Page Styles */

.brands-listing-page {
    min-height: 60vh;
    padding: 20px 0;
}

/* Page Header */
.brands-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-page-header .section-title {
    margin-bottom: 15px;
}

.brands-page-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Brands Grid Wrapper */
.brands-grid-wrapper {
    margin-top: 30px;
}



/* Brand Item - Enhanced for listing page */
.brands-listing-page .brand-item {
    background: #ffffff;
    padding: 30px 20px;
    display: block;
    text-align: center;
    /* align-items: center; */
    /* justify-content: center; */
    box-shadow: 0px 4px 24px 0px #0000001a;
    transition: all 0.3s ease;
    border-radius: 8px;
    height: 100%;
    min-height: 180px;
    border: 1px solid #e5e5e5;
}

.brands-listing-page .brand-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #ff7019;
}

.brands-listing-page .brand-item img {
    max-width: 100%;
    text-align: center;
    /* max-height: 120px; */
    /* width: auto; */
    /* height: auto; */
    aspect-ratio: 4/2;
    object-fit: contain;
    /* display: block; */
}

/* Brand Count Info */
.brands-count-info {
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.brands-count-info p {
    font-size: 16px;
}

/* Empty State */
.brands-listing-page .empty-state {
    text-align: center;
    padding: 80px 20px;
}

.brands-listing-page .empty-state-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.brands-listing-page .empty-state-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.brands-listing-page .empty-state-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.brands-listing-page .btn-primary-empty {
    background-color: #ff7019;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.brands-listing-page .btn-primary-empty:hover {
    background-color: #e65c00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 112, 25, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .brands-listing-page .brand-item {
        min-height: 160px;
        padding: 25px 15px;
    }

    .brands-listing-page .brand-item img {
        max-height: 100px;
    }
}

@media (max-width: 991px) {
    .brands-listing-page .brand-item {
        min-height: 150px;
        padding: 20px 15px;
    }

    .brands-listing-page .brand-item img {
        max-height: 90px;
    }
}

@media (max-width: 767px) {
    .brands-listing-page {
        padding: 15px 0;
    }

    .brands-page-header {
        margin-bottom: 30px;
    }

    .brands-page-description {
        font-size: 14px;
    }

    .brands-grid-wrapper {
        margin-top: 20px;
    }

    .brands-grid-item {
        margin-bottom: 20px;
    }

    .brands-listing-page .brand-item {
        min-height: 140px;
        padding: 20px 15px;
    }

    .brands-listing-page .brand-item img {
        max-height: 80px;
    }

    .brands-listing-page .empty-state {
        padding: 60px 20px;
    }

    .brands-listing-page .empty-state-icon {
        font-size: 60px;
    }

    .brands-listing-page .empty-state-title {
        font-size: 24px;
    }

    .brands-listing-page .empty-state-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .brands-listing-page .brand-item {
        min-height: 120px;
        padding: 15px 10px;
    }

    .brands-listing-page .brand-item img {
        max-height: 70px;
    }
}
