/*
Theme Name: DG Time
Theme URI: https://www.dgtime.it/
Author: DG Time
Description: Tema custom DG Time - Orologeria
Version: 3.1
*/

/* =========================================================
   01. VARIABLES
   ========================================================= */

:root{
    --green:#071c16;
    --green-2:#0b261e;
    --green-3:#103127;
    --green-4:#153a2f;

    --white:#fff;
    --white-soft:#f6f4ef;
    --cream:#f1eee7;

    --gray:#77736c;
    --gray-light:#aaa59c;

    --black:#111;
    --black-soft:#292929;

    --gold:#b28a45;
    --gold-light:#c9a96b;

    --border:rgba(0,0,0,.10);
    --border-light:rgba(255,255,255,.10);

    --max-width:1240px;
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    margin:0;
    padding:0;
}

body{
    background:var(--white-soft);
    color:var(--black);
    font-family:"Montserrat",Arial,Helvetica,sans-serif;
    font-size:15px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
}

a{
    color:inherit;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin:0;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-weight:500;
    line-height:1.1;
}

p{
    margin:0 0 20px;
}

p:last-child{
    margin-bottom:0;
}


/* =========================================================
   03. LAYOUT
   ========================================================= */

.container{
    width:min(100% - 48px,var(--max-width));
    margin:0 auto;
}

.section{
    padding:125px 0;
}

.section h1,
.section h2,
.section h3{
    font-family:"Cormorant Garamond",Georgia,serif;
    color:var(--black);
}

.section h2{
    margin:12px 0 0;
    font-size:54px;
    line-height:1.05;
    letter-spacing:-.5px;
}

.muted{
    color:var(--gray);
}


/* =========================================================
   04. EYEBROW
   ========================================================= */

.eyebrow{
    display:flex;
    align-items:center;
    gap:12px;

    color:var(--gold);
    font-size:10px;
    font-weight:600;
    letter-spacing:2.5px;
    line-height:1.2;
    text-transform:uppercase;
}

.eyebrow::before{
    content:"";
    display:block;
    width:28px;
    height:1px;
    background:currentColor;
    flex-shrink:0;
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    width:100%;

    background:rgba(7,28,22,.94);
    border-bottom:1px solid rgba(201,169,107,.16);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.site-nav{
    min-height:86px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;
}

.logo{
    display:inline-flex;
    align-items:baseline;
    gap:8px;

    color:var(--white);
    text-decoration:none;
    line-height:1;

    flex-shrink:0;
}

.logo-main{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:42px;
    font-weight:500;
    letter-spacing:-1.5px;
}

.logo-time{
    font-family:"Montserrat",Arial,sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:4px;
    color:var(--gold-light);
}

.main-navigation{
    margin-left:auto;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:34px;

    margin:0;
    padding:0;

    list-style:none;
}

.main-menu li{
    margin:0;
    padding:0;
}

.main-menu a{
    position:relative;

    display:inline-block;

    padding:8px 0;

    color:rgba(255,255,255,.82);

    font-family:"Montserrat",Arial,sans-serif;
    font-size:11px;
    font-weight:500;
    letter-spacing:1.7px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        color .25s ease,
        opacity .25s ease;
}

.main-menu a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:1px;

    width:0;
    height:1px;

    background:var(--gold-light);

    transition:width .25s ease;
}

.main-menu a:hover{
    color:var(--white);
}

.main-menu a:hover::after{
    width:100%;
}


/* =========================================================
   06. HERO
   ========================================================= */

.hero{
    position:relative;

    min-height:760px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 76% 32%,
            rgba(201,169,107,.13) 0,
            rgba(201,169,107,.055) 18%,
            transparent 42%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(16,49,39,.8) 0,
            transparent 42%
        ),
        linear-gradient(
            120deg,
            #071c16 0%,
            #0b261e 48%,
            #103127 100%
        );

    color:var(--white);
}

.hero::before{
    content:"";

    position:absolute;

    top:0;
    right:17%;

    width:1px;
    height:100%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(201,169,107,.18) 30%,
            rgba(201,169,107,.18) 70%,
            transparent
        );
}

.hero::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-170px;
    bottom:-240px;

    border:1px solid rgba(201,169,107,.09);
    border-radius:50%;

    box-shadow:
        0 0 0 70px rgba(201,169,107,.025),
        0 0 0 140px rgba(201,169,107,.018);
}

.hero-inner{
    position:relative;
    z-index:2;

    max-width:760px;

    padding:110px 0;
}

.hero .eyebrow{
    margin-bottom:25px;
    color:var(--gold-light);
}

.hero h1{
    max-width:780px;

    color:var(--white);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:86px;
    font-weight:500;
    line-height:.93;

    letter-spacing:-2.5px;
}

.hero p{
    max-width:610px;

    margin:32px 0 38px;

    color:rgba(255,255,255,.72);

    font-size:16px;
    line-height:1.8;
}

.hero .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:52px;
    padding:0 30px;

    background:var(--gold-light);
    border:1px solid var(--gold-light);

    color:var(--green);

    font-family:"Montserrat",Arial,sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.hero .btn:hover{
    background:transparent;
    border-color:var(--gold-light);
    color:var(--white);

    transform:translateY(-2px);
}


/* =========================================================
   07. BUTTONS
   ========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:48px;
    padding:0 25px;

    border:1px solid var(--green);

    background:transparent;
    color:var(--green);

    font-family:"Montserrat",Arial,sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:1.8px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.btn:hover{
    background:var(--green);
    border-color:var(--green);
    color:var(--white);

    transform:translateY(-2px);
}


/* =========================================================
   08. SECTION HEADER
   ========================================================= */

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:40px;
    margin-bottom:55px;
}

.section-head > div{
    max-width:760px;
}

.section-head h2{
    margin-top:12px;
}


/* =========================================================
   09. WATCH GRID
   ========================================================= */

.grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}


/* =========================================================
   10. WATCH CARD
   ========================================================= */

.watch-card{
    overflow:hidden;

    background:#fff;

    border:1px solid var(--border);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.watch-card:hover{
    transform:translateY(-9px);

    border-color:rgba(178,138,69,.45);

    box-shadow:0 22px 50px rgba(7,28,22,.13);
}

.watch-card-image{
    display:block;
    position:relative;

    overflow:hidden;

    background:#f0eee8;

    aspect-ratio:4/3;
}

.watch-card-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .55s ease;
}

.watch-card:hover .watch-card-image img{
    transform:scale(1.035);
}

.watch-placeholder{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--green);

    color:var(--gold-light);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:30px;
    letter-spacing:4px;
}

.watch-card-body{
    padding:25px 24px 28px;
}

.watch-card-brand{
    margin-bottom:8px;

    color:var(--gold);

    font-size:10px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.watch-card-title{
    margin:0;

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    font-weight:500;
    line-height:1.15;
}

.watch-card-title a{
    color:var(--black);
    text-decoration:none;

    transition:color .2s ease;
}

.watch-card-title a:hover{
    color:var(--gold);
}

.watch-card-price{
    margin-top:13px;

    color:var(--green);

    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}


/* =========================================================
   11. SERVICES
   ========================================================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1px;

    background:var(--border);
}

.service{
    min-height:280px;

    padding:38px 34px;

    background:var(--white-soft);
}

.service .eyebrow{
    margin-bottom:25px;
}

.service h3{
    margin-bottom:18px;

    color:var(--black);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:34px;
    font-weight:500;
}

.service p{
    max-width:330px;

    color:var(--gray);

    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   12. CHI SIAMO
   ========================================================= */

#chi-siamo{
    background:var(--cream);
}

#chi-siamo h2{
    max-width:800px;

    margin-top:12px;

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:58px;
    line-height:1.02;
    letter-spacing:-.5px;
}

#chi-siamo .muted{
    font-size:15px;
    line-height:1.9;
}


/* =========================================================
   13. CONTATTI
   ========================================================= */

#contatti{
    background:var(--green);
    color:var(--white);
}

#contatti h2{
    max-width:800px;

    margin-top:12px;

    color:var(--white);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:58px;
    line-height:1.02;
    letter-spacing:-.5px;
}

#contatti .muted{
    color:rgba(255,255,255,.66);
    font-size:15px;
    line-height:1.8;
}

#contatti .btn{
    border-color:var(--gold-light);
    color:var(--gold-light);
}

#contatti .btn:hover{
    background:var(--gold-light);
    border-color:var(--gold-light);
    color:var(--green);
}


/* =========================================================
   14. SINGLE WATCH
   ========================================================= */

.single-watch{
    padding:100px 0 120px;
    background:var(--white-soft);
}

.single-watch-grid{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    gap:80px;
    align-items:start;
}

.single-watch-gallery{
    background:#efede7;
}

.single-watch-main-image{
    width:100%;
    aspect-ratio:1/1;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.single-watch-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.single-watch-placeholder{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--green);

    color:var(--gold-light);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:42px;
    letter-spacing:5px;
}

.single-watch-info{
    padding-top:15px;
}

.single-watch-brand{
    margin-bottom:12px;

    color:var(--gold);

    font-size:10px;
    font-weight:600;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.single-watch-title{
    margin:0;

    color:var(--black);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:64px;
    font-weight:500;
    line-height:.98;
    letter-spacing:-1px;
}

.single-watch-price{
    margin-top:25px;

    color:var(--green);

    font-size:18px;
    font-weight:600;
}

.single-watch-description{
    margin-top:35px;

    color:var(--gray);

    font-size:15px;
    line-height:1.9;
}

.single-watch-meta{
    margin-top:35px;

    border-top:1px solid var(--border);
}

.single-watch-meta-row{
    display:flex;
    justify-content:space-between;
    gap:30px;

    padding:15px 0;

    border-bottom:1px solid var(--border);

    font-size:13px;
}

.single-watch-meta-label{
    color:var(--gray);

    font-size:10px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.single-watch-meta-value{
    color:var(--black);
    text-align:right;
}


/* =========================================================
   15. WATCH GALLERY
   ========================================================= */

.single-watch-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;

    margin-top:10px;
}

.single-watch-thumb{
    display:block;

    aspect-ratio:1/1;

    overflow:hidden;

    background:#efede7;

    border:1px solid transparent;
}

.single-watch-thumb:hover{
    border-color:var(--gold);
}

.single-watch-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================================================
   16. FILTER / ARCHIVE
   ========================================================= */

.filterbar{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;

    margin-top:-20px;
    margin-bottom:50px;

    padding-bottom:22px;

    border-bottom:1px solid var(--border);
}

.filter-link{
    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:40px;
    padding:0 17px;

    border:1px solid transparent;

    color:var(--gray);

    font-family:"Montserrat",Arial,sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.filter-link:hover{
    color:var(--green);
    border-color:rgba(178,138,69,.45);
}

.filter-link:first-child{
    color:var(--green);
    border-color:var(--green);
}

.filter-link:first-child:hover{
    background:var(--green);
    color:var(--white);
    transform:translateY(-1px);
}


/* =========================================================
   ARCHIVE GRID
   ========================================================= */

.archive .grid{
    margin-top:0;
}


/* =========================================================
   ARCHIVE RESPONSIVE
   ========================================================= */

@media (max-width:650px){

    .filterbar{
        gap:6px;

        margin-top:-10px;
        margin-bottom:38px;

        padding-bottom:18px;
    }

    .filter-link{
        min-height:38px;
        padding:0 13px;

        font-size:9px;
        letter-spacing:1.2px;
    }

}
/* =========================================================
   17. FOOTER
   ========================================================= */

.footer{
    padding:85px 0 30px;

    background:#05140f;

    color:rgba(255,255,255,.7);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;

    gap:55px;

    padding-bottom:65px;
}

.footer-logo{
    color:var(--white);

    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:42px;
    font-weight:500;
    line-height:1;
    letter-spacing:-1px;
}

.footer-logo span{
    margin-left:8px;

    color:var(--gold-light);

    font-family:"Montserrat",Arial,sans-serif;
    font-size:11px;
    font-weight:500;
    letter-spacing:4px;
}

.footer-description{
    max-width:330px;

    margin-top:22px;

    color:rgba(255,255,255,.52);

    font-size:13px;
    line-height:1.8;
}

.footer-title{
    margin-bottom:20px;

    color:var(--gold-light);

    font-size:10px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-links{
    margin:0;
    padding:0;

    list-style:none;
}

.footer-links li{
    margin:0 0 10px;
    padding:0;
}

.footer-links a{
    color:rgba(255,255,255,.62);

    font-size:13px;

    text-decoration:none;

    transition:color .2s ease;
}

.footer-links a:hover{
    color:var(--white);
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.footer-contact a,
.footer-contact span{
    color:rgba(255,255,255,.62);

    font-size:13px;

    text-decoration:none;

    transition:color .2s ease;
}

.footer-contact a:hover{
    color:var(--gold-light);
}

.footer-button{
    display:inline-flex;

    margin-top:20px;
    padding:12px 18px;

    border:1px solid rgba(201,169,107,.5);

    color:var(--gold-light);

    font-size:9px;
    font-weight:600;
    letter-spacing:1.8px;
    text-transform:uppercase;

    text-decoration:none;

    transition:
        background .2s ease,
        color .2s ease;
}

.footer-button:hover{
    background:var(--gold-light);
    color:var(--green);
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.09);

    color:rgba(255,255,255,.38);

    font-size:10px;
    letter-spacing:.4px;
}


/* =========================================================
   18. WORDPRESS
   ========================================================= */

.aligncenter{
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.alignleft{
    float:left;
    margin:0 25px 20px 0;
}

.alignright{
    float:right;
    margin:0 0 20px 25px;
}

.wp-caption{
    max-width:100%;
}

.wp-caption-text{
    margin-top:8px;

    color:var(--gray);

    font-size:11px;
}


/* =========================================================
   19. ADMIN BAR
   ========================================================= */

.admin-bar .site-header{
    top:32px;
}


/* =========================================================
   20. TABLET
   ========================================================= */

@media (max-width:1000px){

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

    .section{
        padding:100px 0;
    }

    .section h2{
        font-size:48px;
    }

    .hero{
        min-height:700px;
    }

    .hero h1{
        font-size:74px;
    }

    .single-watch-grid{
        gap:50px;
    }

    .single-watch-title{
        font-size:54px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .service-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .site-nav{
        min-height:78px;
        gap:20px;
    }

    .main-menu{
        gap:20px;
    }

    .main-menu a{
        font-size:10px;
        letter-spacing:1.4px;
    }

    .logo-main{
        font-size:37px;
    }

    .logo-time{
        font-size:10px;
        letter-spacing:3px;
    }
}


/* =========================================================
   21. MOBILE
   ========================================================= */

@media (max-width:650px){

    .container{
        width:min(100% - 40px,var(--max-width));
    }

    .section{
        padding:80px 0;
    }

    .section h2{
        font-size:43px;
    }

    .section-head{
        display:block;

        margin-bottom:38px;
    }

    .section-head .btn{
        margin-top:25px;
    }

    /* Header */

    .site-nav{
        min-height:72px;
    }

    .main-navigation{
        display:none;
    }

    .logo-main{
        font-size:34px;
    }

    .logo-time{
        font-size:9px;
        letter-spacing:2.5px;
    }

    /* Hero */

    .hero{
        min-height:620px;
    }

    .hero-inner{
        padding:100px 0 85px;
    }

    .hero h1{
        max-width:360px;

        font-size:58px;
        letter-spacing:-1.5px;
    }

    .hero p{
        max-width:420px;

        margin-top:28px;

        font-size:15px;
        line-height:1.75;
    }

    .hero .eyebrow{
        font-size:10px;
        letter-spacing:2px;
    }

    /* Grid */

    .grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .watch-card-body{
        padding:22px 20px 25px;
    }

    .watch-card-title{
        font-size:26px;
    }

    /* Services */

    .service-grid{
        grid-template-columns:1fr;
        gap:1px;
    }

    .service{
        min-height:auto;
        padding:32px 25px;
    }

    .service h3{
        font-size:32px;
    }

    /* Chi siamo */

    #chi-siamo h2{
        font-size:46px;
    }

    /* Contatti */

    #contatti h2{
        font-size:46px;
    }

    /* Single watch */

    .single-watch{
        padding:70px 0 90px;
    }

    .single-watch-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .single-watch-info{
        padding-top:0;
    }

    .single-watch-title{
        font-size:52px;
    }

    .single-watch-description{
        margin-top:28px;
    }

    .single-watch-thumbs{
        grid-template-columns:repeat(4,1fr);
        gap:7px;
    }

    /* Archive */

    .watch-archive{
        padding:70px 0 90px;
    }

    .watch-filter{
        margin-bottom:35px;
    }

    /* Footer */

    .footer{
        padding:65px 0 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;

        padding-bottom:45px;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;

        gap:8px;
    }

    /* WordPress admin bar */

    .admin-bar .site-header{
        top:46px;
    }
}


/* =========================================================
   22. SMALL MOBILE
   ========================================================= */

@media (max-width:400px){

    .hero h1{
        font-size:52px;
    }

    .section h2{
        font-size:39px;
    }

    #chi-siamo h2,
    #contatti h2{
        font-size:41px;
    }

    .single-watch-title{
        font-size:46px;
    }

    .logo-main{
        font-size:31px;
    }

    .logo-time{
        font-size:8px;
        letter-spacing:2px;
    }
}

/* =========================================================
   23. SINGLE OROLOGIO - DG TIME
   ========================================================= */
/* =========================================================
   PAGINA DETTAGLIO OROLOGIO
   ========================================================= */

.watch-detail{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
    gap:90px;
    align-items:start;
    padding:95px 0 125px;
}


/* =========================================================
   GALLERIA
   ========================================================= */

.watch-gallery{
    min-width:0;
}

.watch-main-image{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#f3f1eb;
}

.watch-main-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    transition:opacity .25s ease, transform .5s ease;
}

.watch-main-image:hover img{
    transform:scale(1.015);
}


/* Placeholder */

.watch-gallery > .watch-placeholder{
    width:100%;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--green);
    color:var(--gold-light);
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:42px;
    letter-spacing:5px;
}


/* =========================================================
   MINIATURE
   ========================================================= */

.watch-thumbnails{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
    margin-top:12px;
}

.watch-thumbnail{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    padding:0;
    overflow:hidden;
    background:#f3f1eb;
    border:1px solid transparent;
    cursor:pointer;
    opacity:.72;
    transition:
        border-color .25s ease,
        opacity .25s ease;
}

.watch-thumbnail img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.watch-thumbnail:hover{
    border-color:var(--gold);
    opacity:1;
}

.watch-thumbnail:hover img{
    transform:scale(1.045);
}

.watch-thumbnail.is-active{
    border-color:var(--gold);
    opacity:1;
}

.watch-thumbnail.is-active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:2px;
    background:var(--gold);
}


/* =========================================================
   INFORMAZIONI
   ========================================================= */

.watch-information{
    padding-top:18px;
}

.watch-information .eyebrow{
    margin-bottom:20px;
}


/* Titolo */

.watch-information h1{
    max-width:650px;
    margin:0;
    color:var(--black);
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:70px;
    font-weight:500;
    line-height:.92;
    letter-spacing:-1.8px;
}


/* Descrizione */

.watch-description{
    max-width:590px;
    margin-top:34px;
    color:var(--gray);
    font-size:15px;
    line-height:1.9;
}

.watch-description p{
    margin-bottom:18px;
}

.watch-description p:last-child{
    margin-bottom:0;
}


/* =========================================================
   SPECIFICHE TECNICHE
   ========================================================= */

.watch-specs{
    margin-top:42px;
    border-top:1px solid var(--border);
}

.watch-spec{
    display:grid;
    grid-template-columns:145px minmax(0,1fr);
    gap:25px;
    padding:16px 0;
    border-bottom:1px solid var(--border);
    transition:padding-left .25s ease;
}

.watch-spec:hover{
    padding-left:5px;
}

.watch-spec strong{
    color:var(--gray);
    font-size:9px;
    font-weight:600;
    letter-spacing:1.8px;
    line-height:1.5;
    text-transform:uppercase;
}

.watch-spec span{
    color:var(--black);
    font-size:13px;
    line-height:1.55;
}


/* Prezzo */

.watch-spec strong:first-child{
    /* mantiene la struttura originale */
}


/* =========================================================
   CTA
   ========================================================= */

.watch-information > .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    margin-top:40px;
    padding:0 34px;
    background:var(--green);
    border:1px solid var(--green);
    color:var(--white);
    font-size:10px;
    font-weight:600;
    letter-spacing:1.6px;
    text-transform:uppercase;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.watch-information > .btn:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--white);
    transform:translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1000px){

    .watch-detail{
        grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);
        gap:55px;
        padding:80px 0 105px;
    }

    .watch-information h1{
        font-size:58px;
    }

    .watch-description{
        margin-top:28px;
        font-size:14px;
    }

    .watch-spec{
        grid-template-columns:120px minmax(0,1fr);
        gap:18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:650px){

    .watch-detail{
        grid-template-columns:1fr;
        gap:42px;
        padding:60px 0 80px;
    }

    .watch-information{
        padding-top:0;
    }

    .watch-information .eyebrow{
        margin-bottom:16px;
    }

    .watch-information h1{
        font-size:52px;
        line-height:.95;
        letter-spacing:-1px;
    }

    .watch-description{
        margin-top:27px;
        font-size:14px;
        line-height:1.85;
    }

    .watch-specs{
        margin-top:34px;
    }

    .watch-spec{
        grid-template-columns:110px minmax(0,1fr);
        gap:15px;
        padding:14px 0;
    }

    .watch-spec strong{
        font-size:8px;
        letter-spacing:1.5px;
    }

    .watch-spec span{
        font-size:12px;
    }

    .watch-information > .btn{
        width:100%;
        margin-top:32px;
    }

    .watch-thumbnails{
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:7px;
        margin-top:8px;
    }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width:400px){

    .watch-information h1{
        font-size:46px;
    }

    .watch-spec{
        grid-template-columns:95px minmax(0,1fr);
        gap:12px;
    }

}

/* =========================================================
   17. GERARCHIA VISIVA ARCHIVIO
   ========================================================= */

.section > .container > .section-head{
    margin-bottom:48px;
}

.section > .container > .section-head h1{
    max-width:700px;
    margin-top:8px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:72px;
    font-weight:500;
    line-height:.95;
    letter-spacing:-1.8px;
    color:var(--black);
}

.section > .container > .section-head .muted{
    max-width:560px;
    margin-top:18px;
    font-size:14px;
    line-height:1.8;
}

.filterbar + .grid{
    margin-top:0;
}

@media (max-width:1000px){

    .section > .container > .section-head h1{
        font-size:62px;
    }

}

@media (max-width:650px){

    .section > .container > .section-head{
        margin-bottom:38px;
    }

    .section > .container > .section-head h1{
        font-size:52px;
        line-height:.95;
        letter-spacing:-1px;
    }

    .section > .container > .section-head .muted{
        margin-top:15px;
        font-size:13px;
    }

}

/* =========================================================
   18. WATCH CARD — REFINEMENT
   ========================================================= */

.watch-card{
    border:1px solid rgba(0,0,0,.08);
    background:var(--white);
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.watch-card:hover{
    transform:translateY(-6px);
    border-color:rgba(178,138,69,.38);
    box-shadow:0 18px 42px rgba(7,28,22,.10);
}

.watch-card-image{
    aspect-ratio:4 / 3;
    background:#f3f1eb;
}

.watch-card-image img{
    transition:transform .7s cubic-bezier(.2,.7,.2,1);
}

.watch-card:hover .watch-card-image img{
    transform:scale(1.025);
}

.watch-card-body{
    padding:23px 24px 25px;
}

.watch-card-brand{
    margin-bottom:9px;
    color:var(--gold);
    font-size:9px;
    font-weight:600;
    letter-spacing:2px;
}

.watch-card-title{
    font-size:29px;
    line-height:1.1;
    letter-spacing:-.2px;
}

.watch-card-price{
    margin-top:14px;
    color:var(--green);
    font-size:13px;
    font-weight:600;
    letter-spacing:.7px;
}

@media (max-width:650px){

    .watch-card:hover{
        transform:none;
        box-shadow:none;
    }

    .watch-card-body{
        padding:20px 19px 22px;
    }

    .watch-card-title{
        font-size:27px;
    }

}

/* =========================================================
   20. HOMEPAGE — VETRINA
   ========================================================= */

#vetrina{
    position:relative;
}

#vetrina .section-head{
    margin-bottom:45px;
}

#vetrina .section-head h2{
    max-width:700px;
    margin-top:8px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:64px;
    font-weight:500;
    line-height:.95;
    letter-spacing:-1.5px;
    color:var(--black);
}

#vetrina .section-head .muted{
    max-width:560px;
    margin-top:17px;
    font-size:14px;
    line-height:1.8;
}

#vetrina .grid{
    gap:26px;
}

#vetrina .watch-card{
    background:var(--white);
}

#vetrina .watch-card-image{
    aspect-ratio:4 / 3;
}

#vetrina .watch-card-body{
    padding:22px 23px 24px;
}

#vetrina .watch-card-title{
    font-size:28px;
}

#vetrina .section-head > a.btn{
    flex-shrink:0;
}

@media (max-width:1000px){

    #vetrina .section-head h2{
        font-size:56px;
    }

}

@media (max-width:650px){

    #vetrina .section-head{
        margin-bottom:36px;
    }

    #vetrina .section-head h2{
        font-size:48px;
        letter-spacing:-1px;
    }

    #vetrina .section-head .muted{
        font-size:13px;
    }

}

/* =========================================================
   21. HOMEPAGE — HERO REFINEMENT
   ========================================================= */

#hero{
    position:relative;
    min-height:calc(100vh - 82px);
    display:flex;
    align-items:center;
    overflow:hidden;
}

#hero .hero-inner{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:110px 0 125px;
}

#hero .eyebrow{
    margin-bottom:25px;
}

#hero h1{
    max-width:760px;
    margin:0;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(72px,8vw,118px);
    font-weight:500;
    line-height:.86;
    letter-spacing:-3px;
}

#hero p{
    max-width:570px;
    margin:32px 0 0;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.9;
}

#hero .btn{
    margin-top:38px;
    min-height:56px;
    padding:0 35px;
}

@media (max-width:1000px){

    #hero{
        min-height:auto;
    }

    #hero .hero-inner{
        padding:100px 0 110px;
    }

    #hero h1{
        font-size:82px;
        letter-spacing:-2px;
    }

}

@media (max-width:650px){

    #hero .hero-inner{
        padding:80px 0 90px;
    }

    #hero .eyebrow{
        margin-bottom:20px;
    }

    #hero h1{
        font-size:60px;
        line-height:.9;
        letter-spacing:-1.5px;
    }

    #hero p{
        margin-top:26px;
        font-size:14px;
        line-height:1.8;
    }

    #hero .btn{
        width:100%;
        margin-top:32px;
    }

}

.av-credit-link{
    display:none !important;
}

.logo-ampersand{
    color:var(--gold-light);
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:24px;
    font-weight:400;
    margin-left:-2px;
    margin-right:-2px;
}

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    padding:0;
    margin:0;

    background:transparent !important;
    border:0 !important;
    outline:none;

    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;

    position:relative;
    z-index:1002;
}

.menu-toggle span{
    display:block;

    width:22px;
    height:1px;

    background:var(--gold-light);

    transition:
        transform .25s ease,
        opacity .25s ease;
}

@media (max-width:650px){

    .menu-toggle{
        display:flex;
    }

    .main-navigation{
        display:none;
    }

    .main-navigation.is-open{
        display:block;

        position:absolute;
        top:100%;
        left:0;
        right:0;
        z-index:1001;

        background:var(--green);

        border-top:1px solid rgba(201,169,107,.12);
        border-bottom:1px solid rgba(201,169,107,.16);
    }

    .main-navigation.is-open .main-menu{
        display:flex;
        flex-direction:column;
        align-items:stretch;

        gap:0;
        padding:10px 20px 15px;
    }

    .main-navigation.is-open .main-menu a{
        display:block;
        padding:14px 0;

        color:rgba(255,255,255,.82);

        border-bottom:1px solid rgba(255,255,255,.08);

        font-size:10px;
        letter-spacing:2px;
    }

    .main-navigation.is-open .main-menu li:last-child a{
        border-bottom:0;
    }

    .menu-toggle.is-open span:nth-child(1){
        transform:translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.is-open span:nth-child(3){
        transform:translateY(-6px) rotate(-45deg);
    }
}

/* =========================================================
   CHI SIAMO — TESTO + IMMAGINE
========================================================= */

.about-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(380px,.85fr);
    gap:80px;
    align-items:center;

    margin-top:45px;
}

.about-content{
    max-width:680px;
}

.about-content .muted{
    font-size:15px;
    line-height:1.9;
}

.about-image{
    position:relative;
    overflow:hidden;
}

.about-image img{
    display:block;
    width:100%;
    height:auto;

    aspect-ratio:1 / 1;
    object-fit:cover;

    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.025);
}


/* TABLET */

@media (max-width:1000px){

    .about-grid{
        grid-template-columns:minmax(0,1fr) minmax(300px,.8fr);
        gap:50px;
    }

}


/* MOBILE */

@media (max-width:650px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
        margin-top:35px;
    }

    .about-content{
        max-width:none;
    }

    .about-image{
        width:100%;
    }

}

/* BADGE DISPONIBILITÀ */

.watch-card {
    position: relative;
}

.watch-card-image {
    position: relative;
}

.watch-availability {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;

    display: inline-flex;
    align-items: center;

    min-height: 30px;
    padding: 6px 12px;

    border-radius: 999px;

    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: #fff;

    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.watch-availability.is-available {
    background: rgba(29, 92, 64, .94);
}

.watch-availability.is-unavailable {
    background: rgba(110, 35, 35, .94);
}

.watch-availability.is-request {
    background: rgba(178, 138, 69, .95);
}

/* LINK FOOTER SENZA SOTTOLINEATURA */

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
}

/* =========================================================
   RICERCA VETRINA
========================================================= */

.watch-search {
    width: 100%;
    margin: 45px 0 35px;
    clear: both;
}

.watch-search-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-top: 10px;
}

.watch-search-input {
    width: 100%;
    min-height: 54px;

    padding: 0 52px 0 48px;

    border: 1px solid rgba(178, 138, 69, .35);
    border-radius: 999px;

    background: #ffffff;

    color: #071c16;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.watch-search-input::placeholder {
    color: #7b817e;
}

.watch-search-input:focus {
    border-color: #b28a45;

    box-shadow:
        0 0 0 4px rgba(178, 138, 69, .08);
}

.watch-search-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b28a45;

    pointer-events: none;
}

.watch-search-clear {
    position: absolute;

    top: 50%;
    right: 16px;

    width: 28px;
    height: 28px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    background: transparent;

    color: #7b817e;

    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    opacity: .75;

    transition:
        opacity .2s ease,
        color .2s ease;
}

.watch-search-clear:hover {
    opacity: 1;
    color: #b28a45;
}


/* =========================================================
   RISULTATI RICERCA
========================================================= */

#dgtime-search-results {
    position: relative;

    transition:
        opacity .2s ease;
}

#dgtime-search-results.is-searching {
    opacity: .45;
    pointer-events: none;
}


/* =========================================================
   NESSUN RISULTATO
========================================================= */

.search-no-results {
    grid-column: 1 / -1;

    width: 100%;

    padding: 60px 20px;

    text-align: center;
}

.search-no-results p {
    margin: 0;

    color: #727874;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .watch-search {
        margin-top: 25px;
    }

    .watch-search-box {
        max-width: 100%;
    }

    .watch-search-input {
        min-height: 50px;
        font-size: 12px;
    }

}

/* =========================================================
   FIX DEFINITIVO POSIZIONE RICERCA VETRINA
========================================================= */

.watch-search {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;

    margin-top: 50px !important;
    margin-right: 0 !important;
    margin-bottom: 45px !important;
    margin-left: 0 !important;

    padding: 0 !important;

    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.watch-search-box {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    max-width: 620px !important;

    margin: 0 !important;
    padding: 0 !important;

    clear: both !important;
}

.watch-search-input {
    position: relative !important;
    display: block !important;

    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;

    margin: 0 !important;

    box-sizing: border-box !important;
}

.filterbar {
    position: relative !important;
    display: flex !important;

    clear: both !important;

    margin-top: 0 !important;
    margin-bottom: 45px !important;
}

#dgtime-search-results {
    position: relative !important;
    display: grid !important;

    clear: both !important;

    margin-top: 0 !important;
}