:root {
            --primary-color: #BA6565;
            --secondary-color: #346782;
            --success-color: #346782;
            --light-gray:#DEDEDE;
        }
        
        body {
            font-family: "Geologica", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400; 
            font-style: normal;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: "Geologica", sans-serif;
            font-weight: 700; 
        }
        .h2{
            color:#346782;
            font-size: 26px;
            margin-top: 70px!important;
            margin-bottom:40px!important;
        }
        .h3{
            color:#2E2E2E;
            font-size: 20px;
        }

        p {
            font-weight: 400;
        }

        .mt-60{
            margin-top:60px!important;
        }
        .navbar {
            padding: 1rem 0;
            z-index: 1000;
            background-color: #659BBC;
        }
        .navbar .container {
            max-width: 1320px; /* o el ancho que estés usando para los containers */
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .cart-icon {
            margin-right: 0; /* Asegura que no haya margen extra a la derecha */
        }
        
        .logo {
            height: 40px;
            width: auto;
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
            padding: 8px;
        }
        
      
        .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-trustus.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 30px;
            min-height: 440px!important;
            align-items: center;
        }
        .banner h1{
            text-align: left;
            font-size: 52px;
        }

    
        .year-option,
        .brand-option,
        .model-option,
        .product-card,
        .service-option {
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            margin-bottom: 20px;
        }
        .service-option.servicios{
            min-height: 326px;
        }
        .brand-option{
            padding: 0px;
        }

        .year-option:hover,
        .brand-option:hover,
        .model-option:hover,
        .product-card:hover,
        .service-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .year-option.selected,
        .brand-option.selected,
        .model-option.selected,
        .product-card.selected,
        .service-option.selected {
            border-color: var(--success-color);
        }

        .year-number {
            font-size: 26px;
            font-weight: bold;
            color: #2E2E2E;
        }

        .checkmark {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background-color: var(--success-color);
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .selected .checkmark {
            display: flex;
        }

        .progress-custom {
            height: 2px;
            background-color: var(--light-gray);
            position: relative;
            margin-bottom: 30px;
        }

        .progress-step {
            width: 45px;
            height: 45px;
            background-color: white;
            border: 2px solid var(--light-gray);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: var(--light-gray);
        }

        .progress-step.active {
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: white;
        }

        .progress-step:nth-child(1) { left: 0%; }
        .progress-step:nth-child(2) { left: 20%; }
        .progress-step:nth-child(3) { left: 40%; }
        .progress-step:nth-child(4) { left: 60%; }
        .progress-step:nth-child(5) { left: 80%; }
        .progress-step:nth-child(6) { left: 100%; }

        .cart-icon {
           
            z-index: 1040;
            
    
            cursor: pointer;
        }

        .cart-total-amount {
           
            color: white;
            border-radius: 50%;
            padding: 5px 6px;
            font-size: 14px;
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: white;
            z-index: 1050;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            padding: 20px;
            overflow-y: auto;
        }

        .cart-sidebar.show {
            right: 0;
        }

        #cartOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1045;
            display: none;
        }

        .close-cart {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
        }

        .step-container {
            display: none;
        }

        .step-container.active {
            display: block;
        }

        .cart-items {
            margin-top: 40px;
        }

        .cart-item {
            padding: 10px;
            border-bottom: 1px solid var(--light-gray);
        }

        .checkout-summary {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .btn-toggle-cart {
            transition: all 0.3s;
        }

        .in-cart {
            background-color: #E74C3C !important;
        }

        img.product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        footer{
            background-color: #212121;
            margin-top: 100px;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        footer h4{
            color:white;
            font-size: 16px;
            font-weight: 500;
        }

        footer ul li a{
            text-decoration: none;
            color:white;
            font-weight: 100;

        }
        footer ul li {
            color:white;
            font-weight: 100;

        }
        footer ul{
            list-style: none;
            padding-left: 0px;
        }
        .pr-10{
        padding-right: 10px;
        }
        .justify-content-right{
            justify-content: right;
        }

        .btn-primary{
            border-radius: 50px;
            background-color: #BA6565;
            border-color: #BA6565;
            font-size: 16px;
            padding: 10px 20px;
        }
        .btn-primary:hover{
            background-color: #9D5656;
            border-color: #9D5656;
           
        }

        .btn-secondary{
            border: solid 2px #BA6565;
            background-color: white;
            color:#BA6565;
            border-radius: 50px;
            padding: 10px 20px;
        }

        .btn-success{
            background-color: #659BBC!important;
            border-color: #659BBC!important;
            border-radius: 50px;
            padding: 10px 20px;

        }
        .in-cart{
            background-color: white!important;
            text-decoration: underline;
            color:#BA6565!important;
            border:none;
        }
        .price{
            color:#346782;
            font-weight: 600;
            font-size: 20px;
        }

        .p-servicios{
            color:#2E2E2E;
            font-size: 14px;
            font-weight: 100;
        }
        .icono-servicios{
            margin-bottom: 15px;
        }

        .form-check {
            cursor: pointer;
            border: 1px solid #dee2e6;
            transition: all 0.2s ease;
        }
        
        .form-check:hover {
            border-color: #6699CC;
        }
        
        .form-check.active {
            border-color: #6699CC;
            background-color: rgba(102, 153, 204, 0.1);
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border-radius: 8px;
        }
        
        .form-control::placeholder {
            color: #6c757d;
        }

        .alerta{
         background-color: #ECD8D8;
         border-radius: 10px;
         padding:10px 20px;   
         align-items: center;
         margin-bottom: 30px;
        }
        .alerta p{
            margin-bottom: 0px;
        }
        .h2.h2-check{
            margin-bottom: 20px!important;
            margin-top: 20px!important;
        }

        .embalaje .service-option{
            text-align: left;
            border:0px!important;
            margin-bottom:0px;
        }

        .embalaje .service-option:hover{
            box-shadow: none!important;
        }