            body {
                overflow-x: hidden;
            }
            
            .steps-item i {
                color: #ff3b3b;
                font-size: 20px;
            }
            
            .brand-card{
                background:#fff;
                border:1px solid #eee;
                padding:20px 10px;
                border-radius:12px;
                transition:0.3s;
                height:100%;
                cursor:pointer;
            }
            
            .brand-card:hover{
                transform:translateY(-5px);
                box-shadow:0 10px 25px rgba(0,0,0,0.1);
            }
            
            .brand-card img{
                height:50px;
                object-fit:contain;
                margin-bottom:10px;
            }
            
            .brand-card h6{
                margin-bottom:5px;
                font-weight:600;
            }
            
            .brand-card:hover h6{
                color:#ff3b3b;
            }
            
            .brand-card small{
                color:#777;
            }
            
            .card {
                overflow: hidden;
                border-radius: 15px;
                transition: 0.3s;
                max-width: 350px;
                margin: 0 auto;
            }
            
            .card-img-top {
                height: 220px;
                object-fit: contain;
                background:#f8f9fa;
                padding:10px;
            }
            
            .card a {
                display: block;
                height: 100%;
            }
            
            .card:hover {
                transform: translateY(-6px);
                transition: 0.3s;
                box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            }
            
            .card.venduta {
                opacity: 0.7;
                filter: grayscale(40%);
                pointer-events: none;
            }
            
            @media (max-width: 576px) {
                .card-img-top {
                    height: 160px;
                }
            }