/* static/css/pages/service_chrome_shop.css */

/*
    Styling for The Chrome Shop landing page.
    Focuses on large, image-based navigation and a premium, heavy-duty aesthetic.
*/

/* --- Visual Category Grid --- */
.visual-category-section {
    padding: 2rem 0;
}

.visual-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.visual-cat-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3; /* Classic photo ratio */
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.visual-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-cat-card:hover img {
    transform: scale(1.05);
}

.visual-cat-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    padding: 2rem 1.5rem 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.visual-cat-card__overlay h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-cat-card__overlay span {
    font-size: 0.9rem;
    color: #e0e0e0;
    display: block;
    margin-top: 0.25rem;
}


/* --- Brand Showcase --- */
.brand-showcase {
    padding: 3rem 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 3rem 0;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.brand-grid img {
    max-height: 60px; /* Consistent height for logos */
    max-width: 180px;
    width: auto;
    filter: grayscale(100%); /* Elegant grayscale look */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-grid img:hover {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
    transform: scale(1.05);
}


/* --- Installation Cross-Sell Banner --- */
.full-width-promo--installation {
    margin: 4rem 0;
    background-color: var(--brand-dark-blue); /* Dark background for contrast */
    color: white;
    border-radius: 8px;
    overflow: hidden;
}

.full-width-promo--installation .full-width-promo__text-content {
    padding: 3rem;
}

.full-width-promo--installation .full-width-promo__supertitle {
    color: var(--primary-color); /* Gold/Yellow accent */
}

.full-width-promo--installation .full-width-promo__title {
    color: white;
}

.full-width-promo--installation p {
    color: #e0e0e0;
}