﻿/* -------------------------------------------------------------
   1. RESET & BOX MODEL
   ------------------------------------------------------------- */

*,
::before,
::after {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

::before,
::after {
    --tw-content: "";
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
    color: rgb(var(--foreground-rgb));
    background-color: var(--background-page);
    font-family: var(--primary-font-family);
    font-weight: var(--primary-font-weight);
    font-size: var(--base-font-size);
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr[title] {
    text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    font-family: var(--primary-font-family);
    letter-spacing: unset;
    margin: 0;
}

p, blockquote, dd, dl, figure, pre, hr {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
    transition: none;
}

b, strong {
    font-weight: 700;
}

code, kbd, pre, samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: initial;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button, select {
    text-transform: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: initial;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

fieldset {
    margin: 0;
}

fieldset, legend {
    padding: 0;
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dialog {
    padding: 0;
}

textarea {
    resize: vertical;
}

    input::placeholder,
    textarea::placeholder {
        opacity: 1;
        color: #9ca3af;
    }

[role="button"], button {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}

img, video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}


/* -------------------------------------------------------------
   2. VARIABILI CSS
   ------------------------------------------------------------- */

:root {
    /* Colori brand */
    --tudor-red: 190 1 0;
    --tudor-red-hover: 170 1 0;
    --tudor-red-outline-hover: 190 1 0;
    --rolex-gold: 163 126 44;
    --rolex-green: 0 96 57;
    --color-green: 18 119 73;
    --color-dark-green: 11 62 39;
    --color-light-green: 36 154 100;
    --color-ocean-green: 97 189 147;
    --color-light-black: 33 33 33;
    --color-dark-grey: 118 118 118;
    --color-grey: 212 212 212;
    --color-alternate-grey: 216 216 216;
    --color-light-grey: 248 248 248;
    --color-pure-white: 255 255 255;
    /* Sfondi */
    --background-page: #f9f7f4;
    --background-start-green: #197149;
    --background-end-green: #0b3e27;
    --foreground-rgb: 0, 0, 0;
    /* Font */
    --primary-font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif;
    --primary-font-weight: 500;
    --secondary-font-family: "Open Sans", sans-serif;
    --secondary-letter-spacing: 0.125em;
    --quote-font-family: Georgia, sans-serif;
    --quote-font-style: normal;
    --quote-font-weight: 400;
    --base-font-size: 16px;
    /* Spaziatura verticale */
    --vh100: calc(100 * var(--vh));
    --vh75: calc(75 * var(--vh));
    --s-h-space: calc(4 * var(--vh));
    --m-h-space: calc(7 * var(--vh));
    --l-h-space: calc(10 * var(--vh));
    --xl-h-space: 120vw;
    /* UI */
    --btn-height: 2.5rem;
    --outer-margin: 8vw;
    --focus: rgb(var(--color-light-green));
    /* Griglia */
    --grid-col-num: 6;
    --grid-gap: 6px;
}

@media (min-width: 48rem) {
    :root {
        --grid-col-num: 12;
        --grid-gap: 8px;
    }
}

/* Variabili griglia derivate */
:root {
    --grid-col-unit: calc( ((100vw - var(--outer-margin) * 2) - (var(--grid-gap) * (var(--grid-col-num) - 1))) / var(--grid-col-num) );
    --watches-grid-width: calc( (var(--grid-col-num) - 1) * var(--grid-gap) + var(--grid-col-num) * var(--grid-col-unit) );
}

@media screen and (min-width: 48rem) {
    :root {
        --s-h-space: calc(5 * var(--vh));
        --m-h-space: calc(10 * var(--vh));
        --l-h-space: calc(15 * var(--vh));
        --xl-h-space: 40vw;
        --btn-height: 2.75rem;
    }
}


/* -------------------------------------------------------------
   3. FONT HELPER
   ------------------------------------------------------------- */

.font-rolex {
    font-family: "Helvetica Now Text", Helvetica, Arial, sans-serif !important;
}

.font-tudor {
    font-family: "Maven Pro", Helvetica, Arial, sans-serif !important;
}

.font-secondary {
    font-family: var(--secondary-font-family);
}


/* -------------------------------------------------------------
   4. GRIGLIA PRINCIPALE (RlxbslFGrid / Rlxbslgrid)
   ------------------------------------------------------------- */

.tudor-grid {
    display: grid;
    column-gap: var(--grid-gap);
    grid-template-columns: repeat(var(--grid-col-num), minmax(0, 1fr));
}

.tudor-full-grid {
    display: grid;
    column-gap: var(--grid-gap);
    width: var(--vw100, 100vw);
    grid-template-columns: [doc-start] calc(var(--outer-margin) - var(--grid-gap)) [main-start] repeat(var(--grid-col-num), [col] minmax(0, 1fr)) [col main-end] calc(var(--outer-margin) - var(--grid-gap)) [doc-end];
}

@media (min-width: 64.0625rem) {
    .tudor-full-grid--lg {
        display: grid;
        column-gap: var(--grid-gap);
        width: var(--vw100, 100vw);
        grid-template-columns: [doc-start] calc(var(--outer-margin) - var(--grid-gap)) [main-start] repeat(var(--grid-col-num), [col] minmax(0, 1fr)) [col main-end] calc(var(--outer-margin) - var(--grid-gap)) [doc-end];
    }
}

/* Colonne griglia */
.col-doc {
    grid-column: doc;
}

.col-main {
    grid-column: main;
}

.col-row-1 {
    grid-row: 1;
}

.col-row-auto {
    grid-row: auto;
}

.col-span-full {
    grid-column: 1 / -1;
}

.col-span-6 {
    grid-column: span 6 / span 6;
}

.col-start-2 {
    grid-column-start: 2;
}

.row-start-1 {
    grid-row-start: 1;
}

.row-start-2 {
    grid-row-start: 2;
}

/* Sezione roller ambassador */
.tudor-roller-section {
    background-color: #ffffff;
    color: #111;
    /* padding laterale minimo: le frecce escono fuori grazie a overflow visible */
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

@media (max-width: 767px) {
    .tudor-roller-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Contenitore roller */
.tudor-roller-wrap {
    position: relative;
    /* spazio laterale per le frecce esterne */
    padding-left: 60px;
    padding-right: 60px;
    overflow: visible;
}

@media (max-width: 767px) {
    .tudor-roller-wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

.tudor-roller-wrap a.tudor-active {
    pointer-events: none;
}

/* Frecce custom (#next-slide / #prev-slide) â€” ESTERNE al carousel */
.my-controls-btns {
    position: absolute;
    top: 30%;
    z-index: 20;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

    .my-controls-btns:hover {
        opacity: 0.7;
    }

#next-slide {
    right: 8px;
}

#prev-slide {
    left: 8px;
}

@media (max-width: 767px) {
    .my-controls-btns {
        display: none !important;
    }
}

/* Immagini dentro il roller */
.tudor-roller-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nessun effetto hover sulle immagini */

/* Didascalia */
.tudor-roller-caption {
    text-align: left;
    line-height: 1.55;
    padding-right: 12px;
    padding-top: 10px;
    font-size: 0.8rem;
}

/* Paginazione roller */
.tudor-roller-paging {
    position: absolute;
    bottom: 0;
    padding-bottom: 20px;
}

.tudor-roller-paging-active {
    width: 50px;
}

    .tudor-roller-paging-active button {
        cursor: default;
    }

/* Frecce dot del roller */
.tudor-roller-nav span {
    background-color: rgb(212 212 212) !important;
}

.tudor-roller-nav .tudor-roller-paging-active span {
    background-color: rgb(18 119 73) !important;
}



/* -------------------------------------------------------------
   4b. SEZIONE ABOUT TUDOR (3 foto) â€” margini laterali ampi
   ------------------------------------------------------------- */

.tudor-about-section {
    background-color: #ffffff;
    color: #111;
    /*padding-left: 10vw;
    padding-right: 10vw;*/
    padding-bottom: 60px;
    position: relative;
}

@media (max-width: 767px) {
    .tudor-about-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 64.0625rem) {
    .tudor-about-section {
        padding-left: 6vw;
        padding-right: 6vw;
    }
}

/* -------------------------------------------------------------
   5. NAVIGAZIONE TUDOR (sub-header)
   ------------------------------------------------------------- */

.tudor-nav-bar {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    color: rgb(var(--color-light-black));
    z-index: 50;
    padding-left: 8vw;
    padding-right: 8vw;
}

@media (min-width: 30rem) {
    .tudor-nav-bar {
        height: 100px;
    }
}

@media (min-width: 64.0625rem) {
    .tudor-nav-bar {
        height: 110px;
    }
}

.tudor-nav-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 20;
}

/* Logo Tudor nel sub-header */
.tudor-nav-logo-wrap {
    margin-inline-end: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0;
    height: 100%;
}

.tudor-nav-logo {
    width: 100px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

@media (min-width: 30rem) {
    .tudor-nav-logo {
        width: 120px;
        height: 60px;
    }
}

.tudor-nav-logo img {
    object-fit: cover;
    flex-shrink: 0;
}

/* Link tudorwatch.com */
.tudor-nav-ext-link {
    font-weight: 400;
    font-size: 0.75rem;
}

    .tudor-nav-ext-link:visited {
        color: rgb(33 33 33);
    }

    .tudor-nav-ext-link:hover {
        color: rgb(190 1 0);
    }

/* Parte destra della nav */
.tudor-nav-right {
    position: relative;
    flex: 1;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

/* Menu desktop */
.tudor-nav-desktop {
    position: absolute;
    display: flex;
    height: 100%;
    align-items: center;
    transform: translateY(0);
    height: auto;
    visibility: visible;
}

    .tudor-nav-desktop ul {
        position: relative;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 2vw;
        margin-inline-start: 0;
        inset-inline-end: 0;
        opacity: 1;
        width: 100%;
        align-items: center;
    }

@media (min-width: 90rem) {
    .tudor-nav-desktop ul {
        gap: 2.5vw;
    }
}

.tudor-nav-desktop a {
    font-weight: 700;
    white-space: nowrap;
}

    .tudor-nav-desktop a:hover {
        color: rgb(190 1 0);
    }

    .tudor-nav-desktop a.tudor-nav-active {
        color: rgb(190 1 0);
        pointer-events: none;
    }

    /* Stile "attivo" ma cliccabile — usato in modello-tudor */
    .tudor-nav-desktop a.tudor-nav-current {
        color: rgb(190 1 0);
        pointer-events: auto;
    }

/* Pulsante CTA nella nav */
.tudor-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 700;
    color: #ffffff !important;
    background-color: rgb(190 1 0);
    height: 2.75rem;
    font-size: 0.875rem;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 9999px;
    transition-property: color, background-color;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: fit-content;
}

    .tudor-nav-cta:hover {
        background-color: rgb(170 1 0);
        color: #ffffff;
    }

/* Pulsante menu mobile */
.tudor-nav-mobile-btn {
    display: flex;
    align-items: center;
    z-index: 10;
    outline: 0;
    cursor: pointer;
    visibility: hidden;
}

    .tudor-nav-mobile-btn:focus {
        outline: none;
    }

.tudor-nav-mobile-label {
    margin-inline-end: 0.5rem;
    font-weight: 700;
    color: rgb(33 33 33);
}

.tudor-nav-mobile-btn:hover .tudor-nav-mobile-label {
    color: rgb(190 1 0);
}

.tudor-nav-arrow {
    margin-top: 2px;
}

/* arrow-icon styles moved into mobile menu block above */

/* Menu mobile a tendina */
.tudor-nav-mobile-menu {
    display: none; /* nascosto di default */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    background-image: linear-gradient(to right, #FFFFFF, #e5e7eb);
    width: 100%;
    height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 8vw;
    padding-right: 8vw;
    text-align: start;
    overflow-y: auto;
}

    /* Il JS aggiunge .rlx-show-td-menu per aprire il menu */
    .tudor-nav-mobile-menu.rlx-show-td-menu {
        display: flex;
    }

    .tudor-nav-mobile-menu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .tudor-nav-mobile-menu li {
        width: 100%;
        padding: 14px 0;
        border: none;
        list-style: none;
    }

    .tudor-nav-mobile-menu a {
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1.3;
        color: rgb(33 33 33);
        display: block;
    }

        .tudor-nav-mobile-menu a:hover,
        .tudor-nav-mobile-menu a.tudor-nav-active {
            color: rgb(190 1 0);
        }

        .tudor-nav-mobile-menu a.tudor-nav-active {
            pointer-events: none;
        }

        .tudor-nav-mobile-menu a.tudor-nav-current {
            color: rgb(190 1 0);
            pointer-events: auto;
        }

/* Freccia: ruota quando menu aperto (JS aggiunge rlx-arr-rot) */
.rlx-arr-rot,
.tudor-nav-arrow-rotated {
    transform: rotate(180deg) translateZ(0) !important;
}

.tudor-nav-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .tudor-nav-arrow-icon svg {
        pointer-events: none;
        fill: rgb(33 33 33);
    }

.tudor-nav-mobile-btn:hover .tudor-nav-arrow-icon svg {
    fill: rgb(33 33 33);
}

/* Breakpoint visibilitÃ  desktop/mobile nav â€” soglia 1000px */
@media (max-width: 1000px) {
    .tudor-nav-desktop {
        visibility: hidden;
    }

    .tudor-nav-mobile-btn {
        visibility: visible;
    }
}


/* -------------------------------------------------------------
   6. SEZIONI CONTENUTO
   ------------------------------------------------------------- */

/* Banner hero full-width */
.tudor-banner {
    position: relative;
}

    .tudor-banner picture,
    .tudor-banner img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Container testo principale */
.tudor-text-section {
    background-color: #ffffff;
    color: #111;
}

/* Titolo principale */
.tudor-title {
    font-family: var(--primary-font-family);
    font-size: clamp(1.5rem, 0.935vw + 1.129rem, 2.25rem);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

/* Sottotitolo */
.tudor-subtitle {
    font-family: "Maven Pro", Helvetica, Arial, sans-serif;
    font-size: clamp(1.125rem, 1.0625rem + 0.1563vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    text-transform: uppercase;
}

/* Testo corpo */
.tudor-body-text {
    font-size: clamp(1.125rem, 1.0625rem + 0.1563vw, 1.25rem);
    line-height: 1.6;
}

/* Immagine del roller (wrapper) */
.tudor-roller-img {
    display: block;
    position: relative;
    overflow: hidden;
}

/* Didascalia sotto ogni item del carousel */
.tudor-roller-caption {
    text-align: center;
    line-height: 1.5;
    padding-inline-end: 20px;
    padding-top: 10px;
    font-size: 14px;
}

/* Pulsante outline rosso (es. "Scopri di più su Tudorwatch") */
.tudor-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 700;
    color: rgb(190 1 0);
    border: 2px solid rgb(190 1 0);
    height: 2.75rem;
    margin-top: 30px;
    font-size: 0.875rem;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 9999px;
    transition-property: color, background-color;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: fit-content;
}

    .tudor-btn-outline:hover {
        background-color: rgb(190 1 0);
        color: #ffffff;
    }

/* Pulsante filled rosso (es. "Scopri la collezione") */
.tudor-btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 700;
    color: #ffffff !important;
    background-color: rgb(190 1 0);
    height: 2.75rem;
    margin-top: 30px;
    font-size: 0.875rem;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 9999px;
    transition-property: color, background-color;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: fit-content;
}

    .tudor-btn-filled:hover {
        background-color: rgb(170 1 0);
        color: #ffffff;
    }


/* -------------------------------------------------------------
   7. PRODOTTI TUDOR
   ------------------------------------------------------------- */

.tudor-product-brand {
    font-size: 13px;
    font-weight: 900;
    font-family: "Maven Pro", sans-serif;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: -0.5rem;
}

.tudor-product-name {
    font-size: 18px;
    font-weight: 900;
    font-family: "Maven Pro", sans-serif;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.tudor-product-link:hover {
    color: rgb(190 1 0);
}


/* -------------------------------------------------------------
   8. FOOTER TUDOR (barra nera interna)
   ------------------------------------------------------------- */

.tudor-footer-bar {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
}

    .tudor-footer-bar img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .tudor-footer-bar a {
        color: #fff !important;
        margin: 0 10px;
        font-size: 16px;
        font-family: Helvetica, Arial, sans-serif;
    }

        .tudor-footer-bar a:hover {
            color: rgb(190 1 0) !important;
        }

        /* Link "Contattaci" nel footer Tudor: sempre rosso */
        .tudor-footer-bar a.tudor-footer-cta,
        .tudor-footer-bar a.tudor-footer-cta:visited,
        .tudor-footer-bar a.tudor-footer-cta:hover {
            color: rgb(190 1 0) !important;
        }

@media (max-width: 767px) {
    .tudor-footer-bar {
        font-size: 13px;
        padding-left: 0;
        padding-right: 0;
    }

        .tudor-footer-bar a {
            font-size: 13px;
            margin: 0 10px;
            padding: 0 !important;
        }
}

/* Righe bianche full-width */
.tudor-footer-divider {
    height: 1px;
    background-color: #ffffff;
    border: none;
    margin: 14px 0;
    width: 100%;
    display: block;
}


/* -------------------------------------------------------------
   9. CONTAINER TUDOR
   ------------------------------------------------------------- */

.tudor-products-section {
    background-color: #ffffff;
    color: #111;
}

@media (max-width: 767px) {
    .tudor-products-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.container-tudor {
    width: 100%;
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 64.0625rem) {
    .container-tudor {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}

.container-rlx {
    width: 100%;
}

@media (min-width: 20rem) {
    .container-rlx {
        max-width: 20rem;
    }
}

@media (min-width: 30rem) {
    .container-rlx {
        max-width: 30rem;
    }
}

@media (min-width: 48rem) {
    .container-rlx {
        max-width: 48rem;
    }
}

@media (min-width: 64.0625rem) {
    .container-rlx {
        max-width: 64.0625rem;
    }
}

@media (min-width: 80rem) {
    .container-rlx {
        max-width: 80rem;
    }
}

@media (min-width: 90rem) {
    .container-rlx {
        max-width: 90rem;
    }
}


/* -------------------------------------------------------------
   10. SWIPER / SLIDER
   ------------------------------------------------------------- */

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
}

    .swiper-button-next::after,
    .swiper-button-prev::after,
    .swiper-rtl .swiper-button-prev::after,
    .swiper-rtl .swiper-button-next::after {
        content: '' !important;
    }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 70px;
    right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 70px;
    left: auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        top: 18vw;
    }

    .tudor-hero-img {
        max-height: 280px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 2048px) {
    .tudor-hero-img {
        max-height: 560px;
    }
}

@media screen and (min-width: 2048px) {
    .tudor-hero-img {
        max-height: 1120px;
    }
}


/* -------------------------------------------------------------
   11. VIDEO (video.js)
   ------------------------------------------------------------- */

.video-js .vjs-big-play-button {
    font-size: 22px;
    line-height: 60px;
    height: 60px;
    width: 60px;
    border-radius: 100px;
    margin-top: -1.2em;
    border-color: #fff;
    background-color: #fff;
    color: #000;
}

    .video-js:hover .vjs-big-play-button,
    .video-js .vjs-big-play-button:focus {
        border-color: #fff;
        background-color: #fff;
        color: var(--r-green);
    }


/* -------------------------------------------------------------
   12. ACCESSIBILITÃ€
   ------------------------------------------------------------- */

.tudor-a11y:focus-visible {
    outline: 2px solid green !important;
    outline-offset: 3px !important;
}

button:focus {
    outline: none;
}

.tudor-no-visited:visited {
    color: rgb(33 33 33);
}

.tudor-no-visited:hover {
    color: rgb(190 1 0);
}


/* -------------------------------------------------------------
   13. SCROLLBAR / SCROLL
   ------------------------------------------------------------- */

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    scrollbar-width: none;
}

select.noDefArrow::-ms-expand {
    display: none;
}


/* -------------------------------------------------------------
   14. RESPONSIVE IFRAME
   ------------------------------------------------------------- */

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100% !important;
}


/* -------------------------------------------------------------
   15. PLAQUE RIVENDITORE TUDOR
   ------------------------------------------------------------- */

@media screen and (max-width: 767px) {
    .tudor-plaque {
        max-width: 150px;
    }
}

@media screen and (min-width: 768px) {
    .tudor-plaque {
        max-width: 200px;
    }
}


/* -------------------------------------------------------------
   16. UTILITÃ€ COLORI BRAND
   ------------------------------------------------------------- */

/* Testi */
.text-tudor-red {
    color: rgb(190 1 0);
}

.text-rolex-green {
    color: rgb(18 119 73);
}

.text-dark-grey {
    color: rgb(33 33 33);
}

.text-white {
    color: #ffffff;
}

/* Sfondi */
.bg-tudor-red {
    background-color: rgb(190 1 0);
}

.bg-rolex-green {
    background-color: rgb(18 119 73);
}

.bg-dark-grey {
    background-color: rgb(33 33 33);
}

.bg-white {
    background-color: #ffffff;
}

.bg-transparent {
    background-color: transparent;
}

/* Bordi */
.border-tudor-red {
    border: 2px solid rgb(190 1 0) !important;
}

.border-top-tudor-red {
    border-top-color: rgb(190 1 0);
}

/* ══════════════════════════════════════════
   TUDOR COLLECTION PAGE — tdc-* components
   (collezione-tudor.html — no overlap with marchio-tudor)
══════════════════════════════════════════ */

/* ── TUDOR CATALOG SECTION ── */
.tudor-catalog-section {
    background: #fff;
    padding: 0 0 60px 0;
    font-family: 'Maven Pro', 'Open Sans', Arial, sans-serif;
}

/* ── TOP BAR ── */
.tdc-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 100;
}

.tdc-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tdc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Maven Pro', Arial, sans-serif;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
    color: #222;
    border-radius: 2px;
    transition: all 0.2s;
}

    .tdc-btn:hover {
        border-color: #BE0100;
        color: #BE0100;
    }

.tdc-btn-reset {
    background: #BE0100;
    border-color: #BE0100;
    color: #fff;
}

    .tdc-btn-reset:hover {
        background: #9a0000;
        border-color: #9a0000;
        color: #fff;
    }

.tdc-counter {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #555;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 600;
}

/* ── SORT ── */
.tdc-sort-wrap {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.tdc-sort-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
}

.tdc-sort-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #ddd;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 1000;
}

    .tdc-sort-dropdown.aperto {
        display: block;
    }

    .tdc-sort-dropdown button {
        display: block;
        width: 100%;
        padding: 10px 18px;
        text-align: left;
        background: none;
        border: none;
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        cursor: pointer;
        color: #333;
        font-family: 'Maven Pro', Arial, sans-serif;
    }

        .tdc-sort-dropdown button:hover {
            background: #f5f5f5;
        }

        .tdc-sort-dropdown button.attivo {
            color: #BE0100;
            font-weight: 700;
        }

/* ── FILTERS PANEL ── */
.tdc-filters {
    overflow: hidden;
    max-height: 600px;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 28px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

    .tdc-filters.chiuso {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.tdc-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tdc-filter-group-title {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 6px;
}

.tdc-filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #444;
    cursor: pointer;
    text-transform: capitalize;
}

    .tdc-filter-group label:hover {
        color: #BE0100;
    }

.tdc-filter-group input[type="checkbox"] {
    accent-color: #BE0100;
    width: 13px;
    height: 13px;
    cursor: pointer;
}

/* Range prezzo */
.tdc-range-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .tdc-range-group input[type="range"] {
        width: 180px;
        accent-color: #BE0100;
        cursor: pointer;
    }

.tdc-range-val {
    font-size: 12px;
    color: #BE0100;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ── PRODUCT GRID ── */
.tdc-grid-wrap {
    padding: 32px 40px;
    background: #fff;
}

.tdc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #fff;
}

@media (max-width: 1100px) {
    .tdc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .tdc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tdc-topbar {
        padding: 14px 16px;
        justify-content: space-between;
    }

    .tdc-sort-wrap {
        position: relative;
        transform: none;
        right: auto;
        top: auto;
    }

    .tdc-sort-dropdown {
        right: auto;
        left: 0;
    }

    .tdc-filters {
        padding: 20px 16px;
        gap: 24px;
    }

    .tdc-grid-wrap {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .tdc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }
}

/* ── WATCH CARD ── */
.tdc-card {
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

    .tdc-card:hover {
        background: #f9f9f7;
    }

    .tdc-card a {
        display: block;
        text-decoration: none;
        color: inherit;
        padding: 28px 20px 22px;
    }

.tdc-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

    .tdc-card-img-wrap img {
        width: 85%;
        height: 85%;
        object-fit: contain;
        transition: transform 0.35s ease;
        display: block;
    }

.tdc-card:hover .tdc-card-img-wrap img {
    transform: scale(1.06);
}

/* Colore brand Tudor — nero, dimensione metà del nome (9px = 18px/2) */
.tdc-card-brand {
    font-size: 18px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 900;
    font-family: 'Maven Pro', Arial, sans-serif;
}

/* Nome orologio — 18px desktop */
.tdc-card-name {
    font-size: 26px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdc-card-price {
    font-size: 20px;
    color: #555;
    letter-spacing: 0.06em;
    font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 767px) {
    .tdc-card-name {
        font-size: 16px;
    }
    /* brand scende proporzionalmente a: 10px */
    .tdc-card-brand {
        font-size: 10px;
    }

    .tdc-card-price {
        font-size: 14px;
    }
}

/* ── NO RESULTS ── */
.tdc-empty {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    grid-column: 1 / -1;
}


/* ══════════════════════════════════════════
   TUDOR CONTACTS PAGE — tdc-contact-* components
   (contatti-tudor.html — no overlap with other pages)
══════════════════════════════════════════ */

/* ── INTESTAZIONE ── */
.tdc-contact-section {
    background: #fff;
    font-family: 'Maven Pro', 'Open Sans', Arial, sans-serif;
    padding-bottom: 60px;
}

.tdc-contact-header {
    text-align: center;
    padding: 56px 20px 40px;
}

.tdc-contact-surtitle {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #BE0100;
    /*margin: 0 0 10px;*/
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdc-contact-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Maven Pro', Arial, sans-serif;
}

@media (max-width: 767px) {
    .tdc-contact-title {
        font-size: 26px;
    }

    .tdc-contact-surtitle {
        font-size: 14px;
    }
}

/* ── FORM WRAP ── */
.tdc-contact-form-wrap {
    background: #f4f4f2;
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 56px 52px;
}

@media (max-width: 767px) {
    .tdc-contact-form-wrap {
        padding: 28px 20px 36px;
    }
}

/* ── FORM ROWS ── */
.tdc-form-row {
    margin-bottom: 22px;
}

.tdc-form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tdc-form-row--center {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .tdc-form-row--2col {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ── FORM GROUPS ── */
.tdc-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tdc-form-group--privacy {
    gap: 8px;
}

/* ── LABELS ── */
.tdc-form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #333;
    font-family: 'Maven Pro', Arial, sans-serif;
}

/* ── INPUTS ── */
.tdc-form-input {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 14px;
    color: #222;
    font-family: 'Open Sans', Arial, sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

    .tdc-form-input:focus {
        border-color: #BE0100;
    }

.tdc-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── PRIVACY CHECKBOX ── */
.tdc-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
    font-family: 'Open Sans', Arial, sans-serif;
    cursor: pointer;
    line-height: 1.5;
}

    .tdc-form-check input[type="checkbox"] {
        accent-color: #BE0100;
        width: 15px;
        height: 15px;
        margin-top: 2px;
        flex-shrink: 0;
        cursor: pointer;
    }

.tdc-form-link {
    color: #1a1a1a;
    text-decoration: underline;
}

    .tdc-form-link:hover {
        color: #BE0100;
    }

/* ── SUBMIT BUTTON ── */
.tdc-form-submit {
    display: inline-block;
    padding: 13px 44px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Maven Pro', Arial, sans-serif;
    color: #BE0100;
    background: transparent;
    border: 2px solid #BE0100;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

    .tdc-form-submit:hover {
        background: #BE0100;
        color: #fff;
    }

/* ── FEEDBACK ── */
.tdc-form-feedback {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    font-family: 'Open Sans', Arial, sans-serif;
    min-height: 20px;
}

.tdc-form-feedback--success {
    color: #127749;
    font-weight: 600;
}

.tdc-form-feedback--error {
    color: #BE0100;
    font-weight: 600;
}

.tdc-form-feedback--sending {
    color: #888;
}


/* ══════════════════════════════════════════
   TUDOR PRODUCT DETAIL PAGE — tdp-* components
   (prodotto-tudor.html)
══════════════════════════════════════════ */

/* ── WRAP ── */
.tdp-wrap {
    background: #fff;
    font-family: 'Maven Pro', 'Open Sans', Arial, sans-serif;
}

/* ── BREADCRUMB ── */
.tdp-breadcrumb {
    padding: 12px 40px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #888;
    font-family: 'Open Sans', Arial, sans-serif;
}

.tdp-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.tdp-breadcrumb a:hover { color: #BE0100; }

.tdp-breadcrumb-sep {
    margin: 0 6px;
    color: #ccc;
}

.tdp-breadcrumb-current {
    color: #BE0100;
    font-weight: 600;
}

/* ── HERO ── */
.tdp-hero {
    display: flex;
    gap: 90px;
    padding: 30px 80px 50px;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .tdp-hero {
        flex-direction: column;
        padding: 20px 16px 36px;
        gap: 24px;
    }
}

/* Gallery */
.tdp-hero-gallery {
    display: flex;
    gap: 8px;
    max-width: 60%;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .tdp-hero-gallery {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
}

.tdp-hero-main-wrap {
    flex-shrink: 0;
    overflow: hidden;
    background: #f9f9f7;
}

.tdp-hero-main-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnails */
.tdp-hero-thumbs {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 767px) {
    .tdp-hero-thumbs {
        flex-direction: row;
        width: 100% !important;
        overflow-x: auto;
    }
}

.tdp-thumb-btn {
    flex-shrink: 0;
    overflow: hidden;
    background: #f9f9f7;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: block;
}

.tdp-thumb-btn:hover,
.tdp-thumb-btn.attiva {
    opacity: 0.8;
}

.tdp-thumb-btn img {
    display: block;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    margin: 4px;
    object-fit: contain;
}

/* Info */
.tdp-hero-info {
    width: 340px;
    flex-shrink: 0;
    padding-top: 100px;
}

@media (max-width: 1024px) { .tdp-hero-info { width: 280px; } }
@media (max-width: 767px)  { .tdp-hero-info { width: 100%; } }

.tdp-hero-name {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 4px;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-hero-ref {
    font-size: 20px;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    font-weight: 900;
    margin: 0 0 16px;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-hero-specs-short p {
    font-size: 18px;
    color: #555;
    margin: 0 0 3px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.tdp-hero-prezzo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 24px;
    letter-spacing: 0.04em;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tdp-hero-cta .tudor-btn-outline {
    margin-top: 0;
}

.tdp-btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Maven Pro', Arial, sans-serif;
    color: #fff !important;
    background: #BE0100;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    width: fit-content;
    align-self: flex-start;
}

.tdp-btn-filled:hover,
.tdp-btn-filled:visited,
.tdp-btn-filled:focus {
    background: #9a0000;
    color: #fff !important;
}

/* ── DESCRIZIONE ── */
.tdp-desc-section {
    padding: 48px 80px;
    text-align: center;
    background: #fff;
}

@media (max-width: 767px) { .tdp-desc-section { padding: 32px 20px; } }

.tdp-desc-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* ── SPECIFICHE ── */
.tdp-specs-section {
    padding: 48px 60px;
    background: #fff;
}

@media (max-width: 767px) { .tdp-specs-section { padding: 32px 16px; } }

.tdp-specs-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin: 0 0 36px;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 60px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .tdp-specs-grid { grid-template-columns: 1fr; gap: 22px; }
}

.tdp-spec-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tdp-spec-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #BE0100;
    margin-top: 2px;
}

.tdp-spec-icon svg {
    width: 100%;
    height: 100%;
}

.tdp-spec-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin: 0 0 4px;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-spec-val {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* ── YOU MAY ALSO LIKE ── */
.tdp-maylike-section {
    padding: 48px 40px 60px;
    background: #fff;
}

@media (max-width: 767px) { .tdp-maylike-section { padding: 32px 16px 48px; } }

.tdp-maylike-header {
    text-align: center;
    margin-bottom: 32px;
}

.tdp-maylike-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 4px;
    font-family: 'Maven Pro', Arial, sans-serif;
}

.tdp-maylike-sub {
    font-size: 24px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #BE0100;
    font-weight: 900;
    margin: 0;
    font-family: 'Maven Pro', Arial, sans-serif;
}

@media (max-width: 767px) {
    .tdp-maylike-title {
        font-size: 18px;
    }
    .tdp-maylike-sub {
        font-size: 16px;
    }
    .tdp-maylike-prezzo {
        font-size: 12px;
    }
    .tdp-maylike-link .tudor-product-name {
        font-size: 12px;
    }
    .tdp-maylike-link .tudor-product-brand {
        font-size: 10px;
        margin-bottom:0;
    }
}

.tdp-maylike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media (max-width: 767px) {
    .tdp-maylike-grid { grid-template-columns: repeat(2, 1fr); }
}

.tdp-maylike-card {
    background: #f9f9f7;
    transition: background 0.2s;
}

.tdp-maylike-card:hover { background: #fff; }

.tdp-maylike-link {
    display: block;
    padding: 24px 16px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.tdp-maylike-link:hover,
.tdp-maylike-link:hover .tudor-product-brand,
.tdp-maylike-link:hover .tudor-product-name,
.tdp-maylike-link:hover .tdp-maylike-prezzo {
    color: #BE0100 !important;
    text-decoration: none;
}

.tdp-maylike-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tdp-maylike-img-wrap img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.tdp-maylike-card:hover .tdp-maylike-img-wrap img {
    transform: scale(1.05);
}

.tdp-maylike-prezzo {
    font-size: 16px;
    color: #555;
    margin: 4px 0 0;
    letter-spacing: 0.06em;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* ══════════════════════════════════════════
   TUDOR SIZE GUIDE SECTION — modello-tudor.html
══════════════════════════════════════════ */

.tdp-sizeguide-section {
    display: flex;
    align-items: center;
    background: #BE0100;
    overflow: hidden;
    max-height: 400px;
    position: relative;
    margin-bottom: 60px;
}

.tdp-sizeguide-text {
    flex: 1;
    padding: 8% 60px 8% 15vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}

.tdp-sizeguide-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Maven Pro', Arial, sans-serif;
    margin: 0;
}

.tdp-sizeguide-sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    max-width: 460px;
}

.tdp-sizeguide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Maven Pro', Arial, sans-serif;
    color: #BE0100 !important;
    background: #fff !important;
    border: none !important;
    border-radius: 9999px;
    padding: 10px 28px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    margin-top: 10px;
    width: fit-content;
}

.tdp-sizeguide-btn:hover {
    background: #000 !important;
    color: #fff !important;
}

.tdp-sizeguide-img {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0 25vw 0 40px;
}

.tdp-sizeguide-img img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 400px;
}

@media (max-width: 767px) {
    .tdp-sizeguide-section {
        flex-direction: column;
        max-height: unset;
    }

    .tdp-sizeguide-text {
        padding: 40px 20px 30px;
        align-items: center;
        text-align: center;
    }

    .tdp-sizeguide-sub {
        font-size: 14px;
    }

    .tdp-sizeguide-title {
        font-size: 22px;
    }

    .tdp-sizeguide-btn {
        align-self: center;
    }

    .tdp-sizeguide-img {
        width: 100%;
        padding: 0 20px 40px;
        overflow: hidden;
    }

    .tdp-sizeguide-img img {
        height: 220px;
    }
}