/* =============================================================
   TUDOR Authorized Dealer Page - tudor.css
   Page: /rivenditore-autorizzato-tudor
   ============================================================= */

/* --- Reset & Base ----------------------------------------- */
.tudor-wrapper {
    font-family: "Lato", Helvetica, Arial, sans-serif !important;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
.tudor-wrapper p{
    font-family: "Lato", Helvetica, Arial, sans-serif !important;
}

.tudor-wrapper *,
.tudor-wrapper *::before,
.tudor-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.tudor-wrapper img {
    max-width: 100%;
}

.tudor-wrapper a,.tudor-wrapper a:hover {
    text-decoration: none;
    color: #000;
}

/* Hide default WP header/footer chrome on this page */
body.tudor-page .site-header,
body.tudor-page #colophon,
body.tudor-page .i_wrap {
    display: none !important;
}

body.tudor-page #content {
    padding: 0 !important;
    margin: 0 !important;
}

body.tudor-page #primary,
body.tudor-page #main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* --- Tudor Header ----------------------------------------- */
.tudor-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 90px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tudor-header__logo {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tudor-header__logo-link {
    display: flex;
    align-items: center;
}

.tudor-header__logo img {
    height: 64px;
    width: auto;
    display: block;
}

.tudor-header__logo svg {
    height: 64px;
    width: auto;
}

.tudor-header__tudor-site {
    font-size: 11px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    border-left: 1px solid #ddd;
    padding-left: 18px;
}

.tudor-header__nav {
    display: flex;
    align-items: center;
}

.tudor-header__nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.tudor-header__nav ul li a {
    display: block;
    color: #1a1a1a;
    font-size: 13px;
    padding: 10px 18px;
    transition: color 0.2s;
}

.tudor-header__nav ul li a:hover {
    color: #c0392b;
}

.tudor-header__nav ul li:not(:last-child) a::after {
    content: '';
    display: inline-block;
    height: 12px;
    width: 1px;
    background: #ccc;
    margin-left: 18px;
    vertical-align: middle;
}

/* Contattaci red button */
.tudor-header__nav-cta a {
    background: #c0392b !important;
    color: #fff !important;
    border-radius: 24px;
    padding: 5px 22px !important;
    font-weight: 600;
    transition: background 0.2s !important;
}

.tudor-header__nav-cta a:hover {
    background: #a93226 !important;
    color: #fff !important;
}

.tudor-header__nav-cta a::after {
    display: none !important;
}

.tudor-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.tudor-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* --- Hero Banner ------------------------------------------ */
.tudor-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #111;
}

.tudor-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tudor-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 60%);
}

.tudor-hero__content {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tudor-hero__shield {
    width: 60px;
    margin-bottom: 12px;
}

.tudor-hero__wordmark {
    width: 160px;
    margin-bottom: 16px;
}

.tudor-hero__tagline {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
}

.tudor-hero__tagline em {
    font-style: normal;
    color: #c9000c;
}

/* --- Watches Section -------------------------------------- */
.tudor-watches {
    padding: 70px 40px;
    text-align: center;
    background: #fff;
}

.tudor-watches__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.1;
}

.tudor-watches__eyebrow {
    font-size: 18px;
    text-transform: uppercase;
    color: #c9000c;
    font-weight: 900;
    margin-bottom: 28px;
}

.tudor-watches__desc {
    max-width: 820px;
    margin: 0 auto 48px;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    text-align: center;
}

.tudor-watches__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.tudor-watch-card {
    text-align: center;
}

.tudor-watch-card__image-wrap {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 16px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tudor-watch-card__image-wrap img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tudor-watch-card:hover .tudor-watch-card__image-wrap img {
    transform: scale(1.04);
}

.tudor-watch-card__brand {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bolder;
}

.tudor-watch-card__name {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tudor-watch-card__price {
	font-size: 16px;
	font-weight: 400;
}

a.tudor-watches__cta {
	display: inline-block;
	background: #c9000c;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 20px;
	transition: background 0.2s;
    border: 1px solid #a00009;
}

a.tudor-watches__cta:hover {
    background: #fff;
    color: #a00009;
}
/* --- Ambassador Banner ------------------------------------ */
.tudor-ambassador-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #111;
}

.tudor-ambassador-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* --- World of Tudor --------------------------------------- */
.tudor-world {
    padding: 70px 40px;
    background: #fff;
}

.tudor-world__inner {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.tudor-world__title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 900;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 24px;
}

.tudor-world__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.tudor-world__ambassadors {
    position: relative;
    overflow: hidden;
}

.tudor-ambassadors-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.tudor-ambassador-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

.tudor-ambassador-card__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-bottom: 14px;
    background: #eee;
}

.tudor-ambassador-card__name {
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	color: #1a1a1a;
	margin-bottom: 10px;
	margin-top: 30px;
	text-align: center;
}

.tudor-ambassador-card__desc {
	font-size: 12px;
	color: rgb(76,76,76);
	font-weight: 400;
	text-align: center;
}

.tudor-world__arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.tudor-world__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tudor-world__arrow:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.tudor-world__arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.tudor-wrapper a.tudor-world__link {
	display: block;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 15px;
    font-weight: 400;
	text-transform: uppercase;
	color: #c9000c;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 2px;
	border: 1px solid #c9000c;
	padding: 8px 20px;
	border-radius: 20px;
}
.tudor-wrapper a.tudor-world__link:hover {
	color: #fff;;
	background-color: #c9000c;
}

.tudor-world__link-wrap {
    text-align: center;
    margin-top: 40px;
}


/* --- Craft Dark Section ----------------------------------- */
.tudor-craft {
    width: 100%;
    min-height: 380px;
    background: #111;
    overflow: hidden;
    position: relative;
}

.tudor-craft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
    opacity: 0.85;
}

/* --- About Tudor ------------------------------------------ */
.tudor-about {
    
    background: #fff;
    text-align: center;
}

.tudor-about__eyebrow {
	font-size: 16px;
	text-transform: uppercase;
	color: #c9000c;
	margin-bottom: 26px;
	font-weight: 900;
}

.tudor-about__title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 900;
	text-transform: uppercase;
	color: #1a1a1a;
	padding: 80px 40px 5px 40px;
}

.tudor-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.tudor-about-col__image {
    width: 100%;
    object-fit: cover;
    display: block;
    background: #eee;
    margin-bottom: 20px;
}

.tudor-about-col__name {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    margin-top: 12px;
}

.tudor-about-col__desc {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
}

.tudor-about__link-wrap {
    text-align: center;
}

.tudor-about__link {
    font-size: 11px;
    text-transform: uppercase;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
}

.tudor-about__link svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* --- Tudor Footer ----------------------------------------- */
.tudor-footer {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tudor-footer__logo {
    display: block;
    text-align: center;
    width: 100%;
}
.tudor-footer__logo img {
	height: 100px;
	width: auto;
}

.tudor-footer__logo svg {
    height: 32px;
    width: auto;
}
.tudor-footer__nav {
	display: block;
	text-align: center;
	width: 100%;
}
.tudor-footer__nav ul {
	list-style: none;
	display: block;
	gap: 0;
	margin: 0;
	padding: 20px;
	flex-wrap: wrap-reverse;
	border-bottom: 1px solid white;
	border-top: 1px solid white;
}
.tudor-footer__nav ul li {
	display: inline-block;
}
.tudor-footer__nav ul li a {
	display: block;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	padding: 6px 16px;
	transition: color 0.2s;
}

.tudor-footer__nav ul li a:hover {
    color: #fff;
}

.tudor-footer__top {
	color: #666;
	font-size: 11px;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s;
	text-align: right;
	display: block;
	width: 100%;
}

.tudor-footer__top:hover {
    color: #aaa;
}

/* --- Mobile Nav Menu -------------------------------------- */
.tudor-mobile-menu {
    display: none;
    /* position: fixed; */
    top: 60px;
    left: 0;
    right: 0;
    background: #1c1c1c;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.tudor-mobile-menu.is-open {
    display: block;
}

.tudor-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tudor-mobile-menu ul li a {
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-bottom: 1px solid #2a2a2a;
    transition: color 0.2s;
}

.tudor-mobile-menu ul li a:hover {
    color: #c9000c;
}

/* --- Scroll fade-in --------------------------------------- */
.tudor-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tudor-fade.tudor-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header scrolled state -------------------------------- */
.tudor-header.is-scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

/* === RESPONSIVE =========================================== */
@media (max-width: 1024px) {
    .tudor-watches__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tudor-ambassador-card {
        flex: 0 0 calc(50% - 10px);
    }

    .tudor-about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tudor-ambassador-banner img {
        aspect-ratio: 2;
    }
    .tudor-footer__nav ul li {
        display: block;
    }
    .tudor-header {
        padding: 0 20px;
    }

    .tudor-header__nav {
        display: none;
    }

    .tudor-header__hamburger {
        display: flex;
    }

    .tudor-hero {
        height: 55vw;
        min-height: 300px;
    }

    .tudor-hero__content {
        right: 5%;
    }

    .tudor-hero__tagline {
        font-size: clamp(20px, 5vw, 36px);
    }

    .tudor-watches {
        padding: 50px 20px;
    }

    .tudor-watches__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tudor-world {
        padding: 50px 20px;
    }

    .tudor-ambassador-card {
        flex: 0 0 calc(50% - 10px);
    }

    .tudor-about {
        padding: 50px 20px;
    }

    .tudor-about__grid {
        grid-template-columns: 1fr;
    }

    .tudor-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .tudor-footer__nav ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tudor-watches__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .tudor-ambassador-card {
        flex: 0 0 80%;
    }

    .tudor-hero {
        height: 70vw;
    }
}
/* ================================================
   TUDOR AMBASSADOR SLIDER ARROWS
   ================================================ */

.tudor-world__arrows {
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 12px;
    z-index: 10;
}

.tudor-world__arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.18s ease;
    flex-shrink: 0;
}

.tudor-world__arrow:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.08);
}

.tudor-world__arrow svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 1.8;
    fill: none;
}

/* Make the parent container relative so arrows position correctly */
.tudor-world__ambassadors {
    position: relative;
}
