/* Welcome Page Styles */
.welcome-page {
    min-height: 100vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url("#grid#grid")"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.manufacturer-logo {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.manufacturer-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

/* Homepage: Trusted manufacturers — two-row layout, large readable logos */
.trusted-manufacturers .manufacturer-logo-tile {
    min-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1.5rem;
}

.trusted-manufacturers .manufacturer-logo-tile--cta {
    padding: 1.25rem 1.5rem;
}

.trusted-manufacturers .manufacturer-logo-img {
    max-height: 120px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trusted-manufacturers .manufacturer-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    padding: 0 0.5rem;
}

.trusted-manufacturers .manufacturer-logo-caption {
    margin-top: 0.65rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.trusted-manufacturers .manufacturer-logo-cta-text {
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 992px) {
    .trusted-manufacturers .manufacturer-logo-img {
        max-height: 132px;
    }

    .trusted-manufacturers .manufacturer-logo-tile {
        min-height: 180px;
        padding: 1.35rem 1.75rem;
    }
}

.hero-stats {
    transition: all 0.3s ease;
}

.hero-stats:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}
























