.elementor-2910 .elementor-element.elementor-element-2a04a84{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2910 .elementor-element.elementor-element-2a04a84{--content-width:2000px;}}/* Start custom CSS *//* --- Definición de fuentes personalizadas --- */

@font-face {
  font-family: "Editorial New Light"; /* Nombre de la primera fuente */
  src: url('https://cdn.shopify.com/s/files/1/0619/1258/0194/files/Editorial_New_Light.ttf?v=1741928039') format('truetype');
  font-weight: normal; /* O 300 si corresponde a "Light" */
  font-style: normal;
  /* font-display: swap; /* Opcional: mejora la carga */
}

@font-face {
  font-family: "Figtree"; /* Nombre que le daremos a la nueva fuente */
  src: url('https://cdn.shopify.com/s/files/1/0619/1258/0194/files/Figtree-Medium.ttf?v=1744332315') format('truetype');
  font-weight: 500;  /* "Medium" usualmente corresponde a 500 */
  font-style: normal;
  /* font-display: swap; /* Opcional: mejora la carga */
}

      
     h1 {
         color: #335AA5;
         font-family: "Editorial New Light", serif; 
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body, html {
            height: 100%;
            width: 100%;
            overflow: hidden;
          
        }
        
        .container {
            display: flex;
            height: 100vh;
            width: 100%;
        }
        
        #sidebar {
            width: 320px;
            background-color: #F7EDDE;
            padding: 20px;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            overflow-y: auto;
            transition: transform 0.3s ease;
        }
        
        #map {
            flex: 1;
            height: 100%;
        }
        
        .sidebar-header {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .logo {
            max-width: 200px;
            margin-bottom: 10px;
        }
        
       
        
        .search-container {
            margin-bottom: 20px;
        }
        
        .input-group {
            margin-bottom: 15px;
        }
        
        input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1.3px solid #335AA5;
         color: #335AA5;
            border-radius: 20px;
            font-size: 14px;
          background-color: transparent;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #335AA5;
            display: flex;
            align-items: center;
            font-family: "Editorial New Light", serif; 
        }
        
        .slider-container {
            margin: 15px 0;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 12px;
            color: #335AA5;
        }
        
        input[type="range"] {
            width: 100%;
            margin: 10px 0;
        }
        
        .checkbox-group {
            margin-top: 10px;
        }
        
        .checkbox-item {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .checkbox-item input {
            margin-right: 8px;
        }
        
        button {
            background-color: #335AA5;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 40px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            font-family: "Editorial New Light", serif;             transition: background-color 0.2s;
        }
        
        button:hover {
            background-color: #0055aa;
        }
        
        .results-container {
            margin-top: 20px;
        }
        
        .store-list {
            list-style-type: none;
            padding: 0;
        }
        
        .store-item {
            padding: 15px;
            border-bottom: 1px solid #335AA5;
            margin-top: 12px;
    margin-bottom: 10px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .store-item:hover {
            background-color: transparent;
            border: solid 2px #335AA5;
            margin-bottom: 10px;
            margin-top:10px;
            border-radius: 20px;
        }
        
        .store-name {
          color: #335AA5;
         
            margin-bottom: 5px;
         font-family: "Editorial New Light", serif; 
        }
        
        .store-address {
            font-size: 14px;
            color: #335AA5;
            font-family: "figtree", serif; 
          line-height:1;


        }
        
        .store-distance {
            font-size: 12px;
            color: #0066cc;
            margin-top: 5px;
        }
        .toggle-sidebar:hover svg {
    stroke: #F7EDDE;
}
        .toggle-sidebar {
            position: absolute;
            top: 20px;
            left: 340px;
            background-color: #F7EDDE;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: left 0.3s ease;
        }
        /* Ocultar en escritorio (1024px y más) */
@media (min-width: 1024px) {
    .toggle-sidebar {
        display: none;
    }
}

/* Mantener visible en tablet y mobile (menor a 1024px) */
@media (max-width: 1023px) {
    .toggle-sidebar {
        display: flex; /* Asegura que siga siendo flex para centrar el ícono */
    }
}
        .advanced-options {
            margin-top: 15px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease-out;
        }
        
        .advanced-options.active {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }
        
        /* Switch style */
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            margin-left: 10px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
      /* --- Estilos para el placeholder --- */

/* Estándar moderno y WebKit (Chrome, Safari, Edge, Opera) */
input[type="text"]::placeholder,
input[type="text"]::-webkit-input-placeholder {
    color: #335AA5; 
    opacity: 1;
    font-family: Figtree;
}

/* Mozilla Firefox 19+ */
input[type="text"]::-moz-placeholder {
    color: #335AA5;
    opacity: 1; 
    font-family: Figtree;
  
}

/* Mozilla Firefox 4-18 (más viejo) */
input[type="text"]:-moz-placeholder {
    color: #335AA5;
    opacity: 1;
    font-family: Figtree;
}

/* Internet Explorer 10-11 */
input[type="text"]:-ms-input-placeholder {
    font-family: Figtree;
    color: #335AA5;
}
        input:checked + .slider {
            background-color: #335AA5;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .switch-label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            #sidebar {
                transform: translateX(-100%);
                position: absolute;
                height: 100%;
            }
            
            #sidebar.active {
                transform: translateX(0);
            }
            
            .toggle-sidebar {
                left: 20px;
            }
            
            .toggle-sidebar.active {
                left: 340px;
            }
        }
        
        /* Custom styling for range slider */
        input[type="range"] {
            -webkit-appearance: none;
            height: 5px;
            background: #ddd;
            border-radius: 5px;
            outline: none;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: #0066cc;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .range-value {
            display: inline-block;
            width: 40px;
            text-align: center;
            color: #0066cc;
            font-weight: bold;
        }
        
        /* Custom checkbox styling */
        .checkbox-item input[type="checkbox"] {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 3px;
            outline: none;
            cursor: pointer;
            position: relative;
        }
        
        .checkbox-item input[type="checkbox"]:checked {
            background-color: #0066cc;
            border-color: #0066cc;
        }
        
        .checkbox-item input[type="checkbox"]:checked:after {
            content: '';
            position: absolute;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            top: 2px;
            left: 6px;
            transform: rotate(45deg);
        }
        
        /* Estilos para los filtros de marca */
        .brand-filters {
            display: flex;
            justify-content: space-between;
            margin: 10px 0 20px;
        }
        
        .brand-checkbox {
            font-family: Figtree;
            justify-content: center;
            display: flex;
            align-items: center;
            flex: 1;
            border: 1px solid #0066cc;
            color: #0066cc;
            border-radius: 20px;
            padding: 10px;
            margin: 0 5px;
            cursor: pointer;
            text-align: center;
            
        }
        
        .brand-checkbox:first-child {
            margin-left: 0;
        }
        
        .brand-checkbox:last-child {
            margin-right: 0;
        }
        
        .brand-checkbox input[type="checkbox"] {
            margin-right: 8px;
        }
        
        .brand-checkbox:hover {
            background-color: #f5f5f5;
        }
      .busqueda { margin-left: 15px;
        font-family: Figtree;
      color: #335AA5;}/* End custom CSS */