/* ================================================================
   MANUFACTURERS PAGE SPECIFIC STYLES
   ================================================================ */
.sub-header {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../library/images/mfg-bg.jpg');
    background-size: cover; background-position: center; padding: 80px 10% 40px; text-align: center; border-bottom: 3px solid #c5a059;
}
.sub-header h1 { font-size: 3.5rem; color: white; text-transform: uppercase; letter-spacing: 4px; margin: 0; }

.filter-section { background: #111; padding: 40px 10%; display: flex; flex-direction: column; align-items: center; border-bottom: 1px solid #222; }
#stateFilter { padding: 12px 25px; background: #000; color: #fff; border: 2px solid #c5a059; font-family: 'Oswald', sans-serif; font-size: 1.1rem; width: 100%; max-width: 350px; }

.mfg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; padding: 60px 10%; }
.mfg-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(197, 160, 89, 0.1); transition: 0.4s; display: flex; flex-direction: column; height: 100%; overflow: hidden; cursor: pointer; }
.mfg-card:hover { transform: translateY(-8px); border-color: #c5a059; background: rgba(197, 160, 89, 0.05); }
.mfg-image-box { width: 100%; height: 250px; background: #111; display: flex; justify-content: center; align-items: center; }
.mfg-image-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.mfg-info { padding: 25px; }