/* Brands and Categories Pages Styles */

.brands-categories-page {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.brands-categories-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin-bottom: 2rem;
    text-align: center;
}

/* Categories Grid - shared with index.html */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

/* Brand Item - shared with index.html */
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

/* .brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
} */

.brand-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-icon {
    object-fit: contain;
}

.brand-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700, #374151);
    text-align: center;
}

/* Category Item - shared with index.html */
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.category-item-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700, #374151);
    text-align: center;
}

/* Category Page Specific */
.category-page-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-500, #6b7280);
    margin-bottom: 1rem;
}

.category-page-breadcrumb a {
    text-decoration: none;
}

.category-page-breadcrumb a:hover {
    text-decoration: underline;
}

.category-page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    margin-bottom: 2rem;
}

.category-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .category-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-empty-message {
    color: var(--gray-600, #4b5563);
}
