/* Variables de color */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}


        body {
            background: #f8f9fa;
        }
        .navbar-techmich {
            background: #4fb0f1;
            border-bottom: 2px solid #333;
        }
        .navbar-techmich .navbar-brand {
            font-weight: bold;
            font-size: 2rem;
            color: #222;
            letter-spacing: 2px;
        }
        .navbar-techmich .nav-link {
            color: #222 !important;
            font-weight: 500;
            margin-right: 1rem;
        }
        .navbar-techmich .nav-link:hover {
            color: #fff !important;
            background: #222;
            border-radius: 4px;
        }
        .navbar-techmich .search-bar {
            width: 300px;
        }
        .catalogo-sidebar {
            background: #fff;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .catalogo-sidebar h5 {
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .catalogo-sidebar label {
            font-weight: 400;
        }
        .productos-lista {
            margin-top: 2rem;
        }
        .productos-lista .card {
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .productos-lista .card-img-top {
            height: 180px;
            object-fit: contain;
            background: #fafafa;
        }
        .oferta-badge {
            background: #f7b500;
            color: #222;
            font-weight: bold;
            font-size: 0.9rem;
            padding: 0.2rem 0.7rem;
            border-radius: 0 0 8px 0;
            position: absolute;
            top: 0;
            left: 0;
        }
        .showroom-banner {
            background: #222;
            color: #fff;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        .showroom-banner .highlight {
            color: #eec613;
            font-weight: bold;
        }
        .pagination {
            justify-content: center;
        }
        .social-links a {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        /* Estilos para ajustar tamaño de la imagen del showroom */
        .showroom-banner .showroom-img {
            max-width: 320px; /* ancho máximo deseado */
            width: 100%;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: 0;
            border-radius: 8px;
        }
        @media (max-width: 767px) {
            .showroom-banner .showroom-img {
                max-width: 100%;
                margin: 0 auto;
            }
        }
