

:root {
/* GEENRAL */
--c-tudor-red: #be0100;
--c-white: #ffffff;
--c-black: #000000;
--c-transparent: transparent;
}


/* COLORES */
.c-tudor-red-text { color: var(--c-tudor-red); }
.c-white-text { color: var(--c-white); }
.c-black-text { color: var(--c-black); }
.c-tudor-red-bg { background-color: var(--c-tudor-red); }
.c-white-bg { background-color: var(--c-white); }
.c-black-bg { background-color: var(--c-black); }


/* BUTONS -tud */
.btn-primary-tud { background: var(--c-tudor-red); color: var(--c-white); font-size: 14px; font-weight: 700; line-height: 1.6; padding: 12px 30px; border-radius: 200px; border: 0px solid transparent; text-decoration: none; }
.btn-primary-tud:hover,
.btn-primary-tud:focus,
.btn-primary-tud:active { background: var(--c-tudor-red); color: var(--c-white); }
.btn-primary-icon-tud { background: var(--c-green); color: var(--c-white) !important; font-size: 14px; font-weight: 700; line-height: 1.6; padding: 12px 30px; border-radius: 200px; border: 0px solid transparent; text-decoration: none; }
.btn-primary-icon-tud:hover,
.btn-primary-icon-tud:focus,
.btn-primary-icon-tud:active { background: var(--c-tudor-red); }
.btn-primary-icon-tud svg { margin-left: 8px; }
.btn-label-icon-tud { color: var(--c-tudor-red); font-size: 14px; font-weight: 700; line-height: 1.6; text-decoration: none; }
.btn-label-icon-tud:hover,
.btn-label-icon-tud:focus,
.btn-label-icon-tud:active { color: #212121; }
.btn-label-icon-tud svg path { fill: var(--c-tudor-red); }
.btn-label-icon-tud:hover svg path { fill: #212121; }
.btn-label-icon-tud svg { margin-left: 6px; }
.btn-primary-tud-outline { background: var(--c-transparent); color: var(--c-tudor-red); font-size: 14px; font-weight: 700; line-height: 1.6; padding: 12px 30px; border-radius: 200px; border: 2px solid var(--c-tudor-red);  text-decoration: none; }
.btn-primary-tud-outline:hover,
.btn-primary-tud-outline:focus,
.btn-primary-tud-outline:active { background: var(--c-tudor-red); color: var(--c-white); }

.btn-specifications { background: transparent; border: 1px solid #ced4da !important; border-radius: 20px !important; padding: 8px 25px !important; font-size: 10px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 1px; color: #000; transition: all 0.2s ease !important; display: inline-flex; align-items: center; }
/* Ícono de más (+) creado de forma nativa mediante CSS puro */
.btn-specifications::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; background: linear-gradient(to right, transparent 3px, currentColor 3px, currentColor 5px, transparent 5px), linear-gradient(to bottom, transparent 3px, currentColor 3px, currentColor 5px, transparent 5px); }
.btn-specifications:hover { background-color: var(--c-tudor-red); border-color: var(--c-tudor-red); color: var(--c-white); }
.btn-purchase { background-color: var(--c-tudor-red); color: #ffffff; border: none !important; border-radius: 20px !important; padding: 12px 35px !important; font-size: 11px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 1px; width: 100%; max-width: 320px !important; margin-bottom: 35px; transition: background-color 0.2s ease; }
.btn-purchase:hover { background-color: #b00812; color: #ffffff; }

/* BANNERS */
.parallax-container {
    height: 650px;
    position: relative;
    clip-path: inset(0px); 
    overflow: hidden;
}

/* 2. Hacemos que el picture y la imagen actúen como un fondo fijo */
.parallax-picture, 
.parallax-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-picture img {
    object-fit: cover;            /* Equivalente a background-size: cover */
    object-position: center;        /* Equivalente a background-position: center */
    
    /* EL TRUCO DEL PARALLAX: */
    /* En navegadores modernos, 'transform' o fijar la posición simula el attachment */
    position: fixed; 
    height: 100vh;                 /* Ocupa el alto de la pantalla al fijarse */
    z-index: -1;                   /* Se coloca detrás del contenedor */
}

/* 1. Estilos para los botones custom */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    /* Puedes usar un ícono o un símbolo como flecha */
    font-size: 30px;
    color: #333; /* Cambia el color si lo deseas */
    padding: 10px;
    transition: color 0.3s;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    color: #007aff; /* Color de hover */
}

/* 2. Opcional: Define los íconos (puedes usar Font Awesome o símbolos) */
.swiper-button-prev-custom::after {
    content: '❮'; /* Símbolo de flecha izquierda */
}

.swiper-button-next-custom::after {
    content: '❯'; /* Símbolo de flecha derecha */
}

/* 3. Opcional: Asegúrate de que los botones originales de Swiper estén ocultos si no los borraste del HTML */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}
/* ------------------- MENU ------------------- */
.tudor-submenu { background-color: #111111; border-bottom: 1px solid #222222; padding: 0; }
.tudor-submenu .nav-container { display: flex; justify-content: center; align-items: center; list-style: none; margin: 0; padding: 0; }
.tudor-submenu .nav-item .nav-link { color: var(--c-white); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 15px 20px; display: block; text-decoration: none; transition: color 0.2s ease; white-space: nowrap; }
.tudor-submenu .nav-item .nav-link:hover { color: var(--c-tudor-red) !important; }
/* Destacado activo o primer elemento en rojo según referencia */
.tudor-submenu .nav-item .nav-link.active-brand { color: var(--c-tudor-red) !important; }

/* ------------------- MODELOS RELOJES ------------------- */
.gallery-container { position: relative; }
.thumb-img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: pointer; border: 1px solid #e0e0e0; transition: border-color 0.2s ease; }
.thumb-img:hover, .thumb-img.active { border-color: #000000; }
.thumbnail-vertical-grid { display: flex; flex-direction: column; gap: 10px; }
/* Información del Producto */ .product-title { font-weight: 800; font-size: 24px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 2px; }
.product-reference { font-size: 16px; font-weight: 700; color: #212529; margin-bottom: 25px; letter-spacing: 0.5px; display: block; }
.product-description { font-size: 13px; line-height: 1.6; color: #333333; margin-bottom: 25px; }
.price-label { font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px; }
.price-value { font-size: 14px; font-weight: 400; color: #555; margin-bottom: 25px; }
.about-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.5px; }
/* Estilos Personalizados de la Modal Box (Specs Popin) */.modal-specs .modal-content {    border: none;    border-radius: 0;    padding: 10px 20px;}
.modal-specs .modal-header { border-bottom: 1px solid #e5e5e5; padding-bottom: 15px; }
.modal-specs .modal-title { font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-specs .btn-close { font-size: 14px; opacity: 0.8; box-shadow: none; }
.modal-specs .modal-body { padding-top: 0; }
.spec-group { padding: 22px 0; border-bottom: 1px solid #f2f2f2; }
.spec-group:last-child { border-bottom: none; }
.spec-label { font-weight: 700; font-size: 13px; color: #000000; margin-bottom: 8px; text-transform: capitalize; }
.spec-value { font-weight: 400; font-size: 12px; color: #555555; line-height: 1.6; }
/* Sección de Sugerencias Cross-selling */.suggestions-section { padding: 60px 0; }
.suggestions-title { font-weight: 800; font-size: 20px; letter-spacing: 0.5px; text-transform: uppercase; text-align: center; margin-bottom: 2px; }
.suggestions-subtitle { font-size: 11px; font-weight: 700; color: #d60a17; text-transform: uppercase; letter-spacing: 1px; text-align: center; margin-bottom: 40px; }
.suggestion-card { border: none; background-color: #f9f9f9; padding: 30px 15px; text-align: center; transition: transform 0.2s ease; }
.suggestion-card:hover { transform: translateY(-3px); }
.suggestion-img { mix-blend-mode: multiply; }
.suggestion-brand { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #777; margin-bottom: 3px; }
.suggestion-name { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; color: #000; }
.suggestion-price { font-size: 11px; color: #666; }
#productCarousel .carousel-item img { max-height: 600px; object-fit: contain; }


/* ------------------- FORMULARIO ------------------- */
.contact-title { font-weight: 800; font-size: 24px; letter-spacing: 1px; text-transform: uppercase; }
/* Estilos para inputs cuadrados e identidad visual */
.contact-section .form-control { border: 1px solid #e0e0e0; border-radius: 0px;  box-shadow: none; transition: border-color 0.2s ease; }
.contact-section .form-control:focus { border-color: #000000; }
.contact-section .form-check-input { border-radius: 0px; border: 1px solid #d60a17; box-shadow: none; }
.contact-section .form-check-input:checked { background-color: #d60a17; border-color: #d60a17; }
.btn-submit-contact { background-color: #1a1a1a; color: #ffffff; border: none; border-radius: 0px; letter-spacing: 2px; transition: background-color 0.2s ease; }
.btn-submit-contact:hover { background-color: #000000; color: #ffffff; }
#formulario-tudor .error { color: red; }
.campo-oculto-hp { display: none !important; visibility: hidden; }

/* ------------------- ISOTOPE ------------------- */
.icon-reset-css { display: inline-block; width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; position: relative; margin-right: 8px; vertical-align: middle; }
.icon-reset-css::after { content: ''; position: absolute; top: -2px; right: -2px; width: 0; height: 0; border-style: solid; border-width: 4px 0 4px 6px; border-color: transparent transparent transparent currentColor; transform: rotate(-45deg); }

/* Icono de Hamburguesa/Líneas de Filtro para Móvil */
.icon-filter-mobile-css { display: inline-block; width: 16px; height: 12px; position: relative; margin-right: 8px; vertical-align: middle; }
.icon-filter-mobile-css::before,
.icon-filter-mobile-css::after,
.icon-filter-mobile-css span { content: ''; position: absolute; left: 0; height: 2px; background-color: currentColor; display: block; }
.icon-filter-mobile-css::before { top: 0; width: 100%; }
.icon-filter-mobile-css span { top: 5px; width: 75%; }
.icon-filter-mobile-css::after { top: 10px; width: 50%; }


/* Estilos de diseño e identidad BOLIAR */
.filter-sidebar { border-right: 1px solid #e5e5e5; padding-right: 20px; }
.filter-group-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; color: #111; }
.custom-checkbox-filter { display: block; position: relative; padding-left: 30px; margin-bottom: 12px; cursor: pointer; font-size: 0.9rem; user-select: none; }
.custom-checkbox-filter input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { position: absolute; top: 2px; left: 0; height: 18px; width: 18px; background-color: #f0f0f0; border: 1px solid #ccc; }
.custom-checkbox-filter:hover input ~ .checkmark { background-color: #ddd; }
.custom-checkbox-filter input:checked ~ .checkmark { background-color: #d60a17; border-color: #d60a17; }
.checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox-filter input:checked ~ .checkmark:after { display: block; }
.custom-checkbox-filter .checkmark:after { left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.btn-clear-all { background: #111; color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; border: none; padding: 8px 15px; width: 100%; margin-bottom: 25px; transition: background 0.3s; }
.btn-clear-all:hover:not(:disabled) { background: #d60a17; color: #fff; }
.btn-clear-all:disabled { background: #ccc; color: #777; cursor: not-allowed; opacity: 0.6; }

/* Flechas CSS para Paginador */
.arrow-css { display: inline-block; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.arrow-css.left { transform: rotate(-135deg); }
.arrow-css.right { transform: rotate(45deg); }

/* Estilos del Paginador Dinámico generado por tu JS */
.isotope-pager { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 40px; margin-bottom: 20px; }
.isotope-pager a.pager { padding: 8px 16px; background-color: #fff; color: #111; border: 1px solid #dee2e6; text-decoration: none; font-weight: 600; font-size: 14px; }
.isotope-pager a.pager.active { color: #000; }
.isotope-pager .btn-primary { background-color: #111; border-color: #111; border-radius: 0; padding: 8px 12px; }
.isotope-pager .btn-primary:hover { background-color: #d60a17; border-color: #d60a17; }
.isotope-pager svg { fill: #fff; }
.isotope-pager a.btn-primary.disabled-arrow { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

/* Estilos Familia*/
.filter-family-list { display: flex; flex-direction: column; gap: 4px; padding-left: 2px; }
.family-link { display: block; font-size: 0.9rem; color: #444; text-decoration: none; padding: 6px 10px; margin-left: -10px; border-radius: 3px; transition: all 0.25s ease-in-out; position: relative; }
.family-link:hover { color: var(--c-tudor-red); background-color: #f9f9f9; padding-left: 14px; }
.family-link.active-family { color: var(--c-tudor-red); font-weight: 600; background-color: #fff1f2; padding-left: 14px; }
.family-link.active-family::before { content: ''; position: absolute; left: 0; top: 25%; height: 50%; width: 3px; background-color: var(--c-tudor-red); }


/* ------------------- RESPONSIVO ------------------- */
@media only screen and (max-width: 767px) {
	.hero-parallax-image { height: 240px; background-attachment: unset; background-size: contain; }
    .parallax-container { height: 400px; /* Un alto más cómodo para pantallas pequeñas */ }
    .thumbnail-vertical-grid { flex-direction: row; justify-content: flex-start; margin-top: 15px; margin-bottom: 25px; overflow-x: auto; white-space: nowrap; max-width: 100%; padding-bottom: 10px; }
    .thumb-img { width: 70px; flex: 0 0 auto; }
    .btn-purchase { max-width: 100%; }
    /* ------------------- MENU ------------------- */
    .tudor-submenu .nav-container { justify-content: flex-start; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; padding: 0 10px; }
    .tudor-submenu .nav-item .nav-link { padding: 12px 15px; font-size: 11px; }
    /* Ocultar barra de scroll estéticamente en navegadores basados en Webkit */
    .tudor-submenu .nav-container::-webkit-scrollbar { display: none; }
    .tudor-submenu .nav-container { -ms-overflow-style: none;  /* IE and Edge */ scrollbar-width: none;  /* Firefox */ }
    /* Estilos Familia*/
    .filter-family-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 15px; padding-top: 5px; }
    .family-link { margin-left: 0; padding: 8px 8px; background-color: #f8f9fa; border: 1px solid #eee; }
    .family-link:hover, .family-link.active-family { padding-left: 10px; }
    .family-link.active-family::before { height: 100%;  top: 0; }
}

/* Responsive TABLET */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.hero-parallax-image { height: 460px; }
}	

/* Responsive DESKTOP */
@media only screen and (min-width: 1025px) {
	
}