.manufacturers-container {
    max-width: 1200px;
}

.manufacturers-title {
    font-weight: 700;
}

/* Grid Layout */
.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.8rem;
}

/* Card */
.manufacturer-card {
    background: #313949; /* Matches your dark screenshot */
    border: 2px solid #FFFFFF;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body:not(.theme-dark) .manufacturer-card {
    background: #FFFFFF;
    border: 2px solid #BBC3CA;
    color: #000000;
}

/* Hover */
.manufacturer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Logo Area */
.manufacturer-logo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manufacturer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.manufacturer-placeholder {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Name */
.manufacturer-name {
    font-weight: 600;
    font-size: 0.95rem;
}
