/* =========================================================
   PRODUCT VIEW
========================================================= */

.pv-container{
    width:min(
        1280px,
        calc(100% - 48px)
    );

    margin:auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.pv-breadcrumb{
    padding:18px 0;

    background:#fffaf2;

    border-bottom:
        1px solid #efdfc4;
}


.pv-breadcrumb nav{
    display:flex;
    align-items:center;

    gap:9px;

    flex-wrap:wrap;

    color:#8a7c6d;

    font-size:11px;
}


.pv-breadcrumb a{
    transition:
        color .25s ease;
}


.pv-breadcrumb a:hover{
    color:#b96b00;
}


.pv-breadcrumb strong{
    color:#b96b00;

    font-weight:600;
}


/* =========================================================
   HERO
========================================================= */

.pv-hero{
    padding:
        52px 0
        58px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(225,167,55,.09),
            transparent 30%
        ),
        #fffdf9;
}


.pv-grid{
    display:grid;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(380px,.92fr);

    gap:62px;

    align-items:center;
}


/* =========================================================
   GALLERY
========================================================= */

.pv-main-slider{
    position:relative;

    height:500px;

    border:
        1px solid #ead5b1;

    border-radius:18px;

    overflow:hidden;

    background:#f6efe5;

    box-shadow:
        0 18px 45px
        rgba(73,48,18,.08);
}


.pv-main-track{
    width:100%;
    height:100%;

    display:flex;

    transition:
        transform .9s
        cubic-bezier(
            .22,
            .61,
            .36,
            1
        );

    will-change:transform;
}


.pv-main-slide{
    flex:
        0 0
        100%;

    width:100%;
    height:100%;

    margin:0;

    overflow:hidden;
}


.pv-main-slide img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform 1.1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.pv-main-slider:hover
.pv-main-slide img{
    transform:
        scale(1.025);
}


/* ARROWS */

.pv-arrow{
    position:absolute;

    z-index:5;

    top:50%;

    width:44px;
    height:44px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius:50%;

    display:grid;
    place-items:center;

    color:#fff;

    background:
        rgba(27,17,9,.55);

    transform:
        translateY(-50%);

    cursor:pointer;

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


.pv-arrow:hover{
    background:#bd7104;

    transform:
        translateY(-50%)
        scale(1.06);
}


.pv-arrow svg{
    width:19px;
    height:19px;

    fill:none;

    stroke:currentColor;

    stroke-width:2;
}


.pv-prev{
    left:16px;
}


.pv-next{
    right:16px;
}


/* COUNT */

.pv-count{
    position:absolute;

    z-index:5;

    right:16px;
    bottom:16px;

    padding:
        8px 12px;

    border-radius:30px;

    background:
        rgba(24,15,8,.55);

    backdrop-filter:
        blur(8px);

    color:#fff;

    font-size:10px;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.pv-thumbnails{
    margin-top:12px;

    display:flex;

    gap:10px;

    overflow-x:auto;

    padding-bottom:4px;

    scrollbar-width:none;
}


.pv-thumbnails::-webkit-scrollbar{
    display:none;
}


.pv-thumb{
    flex:
        0 0
        82px;

    width:82px;
    height:68px;

    padding:3px;

    border:
        1px solid
        #e4ceb0;

    border-radius:10px;

    overflow:hidden;

    background:#fff;

    cursor:pointer;

    opacity:.58;

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


.pv-thumb.active{
    opacity:1;

    border-color:#c77b05;

    transform:
        translateY(-2px);
}


.pv-thumb img{
    width:100%;
    height:100%;

    border-radius:6px;

    object-fit:cover;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.pv-content{
    max-width:530px;
}


.pv-kicker{
    display:block;

    color:#b86a02;

    font-size:11px;
    font-weight:700;

    letter-spacing:1.25px;
}


.pv-line{
    width:32px;
    height:2px;

    margin:
        13px 0
        18px;

    background:#ca7b06;
}


.pv-content h1{
    margin:0;

    color:#241a13;

    font:
        600 48px/1.04
        "Playfair Display",
        serif;

    letter-spacing:-1.25px;
}


.pv-heading-rule{
    width:90px;

    display:flex;
    align-items:center;

    margin:
        22px 0;
}


.pv-heading-rule span{
    flex:1;

    height:1px;

    background:#c77b05;
}


.pv-heading-rule i{
    width:6px;
    height:6px;

    border:
        1px solid
        #c77b05;

    transform:
        rotate(45deg);
}


.pv-lead{
    margin:
        0 0
        14px;

    color:#40372f;

    font-size:15px;
    font-weight:500;

    line-height:1.7;
}


.pv-description{
    margin:0;

    color:#71675e;

    font-size:12px;

    line-height:1.8;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.pv-highlights{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:10px;

    margin:
        28px 0;
}


.pv-highlights > div{
    min-height:90px;

    padding:14px 10px;

    border:
        1px solid
        #ead4ae;

    border-radius:10px;

    display:flex;

    flex-direction:column;

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

    gap:9px;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            #fffdf9,
            #fff5e4
        );
}


.pv-highlights svg{
    width:28px;
    height:28px;

    fill:none;

    stroke:#c47705;

    stroke-width:1.6;
}


.pv-highlights span{
    font-size:9px;

    font-weight:700;
}


/* =========================================================
   BUTTONS
========================================================= */

.pv-actions{
    display:flex;

    gap:12px;

    flex-wrap:wrap;
}


.pv-primary-btn,
.pv-call-btn{
    min-height:50px;

    padding:
        0 23px;

    border-radius:6px;

    display:inline-flex;

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

    gap:12px;

    font-size:10px;
    font-weight:700;

    letter-spacing:.6px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.pv-primary-btn{
    color:#fff;

    background:
        linear-gradient(
            90deg,
            #b96b00,
            #d58c08
        );

    box-shadow:
        0 12px 25px
        rgba(180,104,0,.18);
}


.pv-call-btn{
    color:#a76000;

    border:
        1px solid
        #cc8410;

    background:#fff;
}


.pv-primary-btn:hover,
.pv-call-btn:hover{
    transform:
        translateY(-3px);
}


.pv-actions svg{
    width:17px;
    height:17px;

    fill:none;

    stroke:currentColor;

    stroke-width:1.8;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.pv-applications{
    padding:
        50px 0;

    background:#fff6e6;
}


.pv-section-heading{
    max-width:700px;

    margin:
        0 auto
        28px;

    text-align:center;
}


.pv-section-heading > span{
    color:#b96b02;

    font-size:10px;
    font-weight:700;

    letter-spacing:1.2px;
}


.pv-section-heading h2{
    margin:
        8px 0
        0;

    color:#281d15;

    font:
        600 36px/1.1
        "Playfair Display",
        serif;
}


.pv-application-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:15px;
}


.pv-application-card{
    min-height:135px;

    padding:22px;

    border:
        1px solid
        #e6c996;

    border-radius:12px;

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

    transition-delay:
        var(
            --delay,
            0ms
        ) !important;
}


.pv-application-card strong{
    display:block;

    color:#c77b05;

    font:
        600 24px
        "Playfair Display",
        serif;
}


.pv-application-card h3{
    margin:
        18px 0
        0;

    font-size:13px;
}


/* =========================================================
   RELATED
========================================================= */

.pv-related{
    padding:
        50px 0
        58px;

    background:#fffdf9;
}


.pv-related-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:16px;
}


.pv-related-card{
    padding-bottom:17px;

    border:
        1px solid
        #ead8ba;

    border-radius:12px;

    overflow:hidden;

    background:#fff;

    box-shadow:
        0 9px 24px
        rgba(72,47,16,.06);

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

    transition-delay:
        var(
            --delay,
            0ms
        );
}


.pv-related-card:hover{
    transform:
        translateY(-7px);

    box-shadow:
        0 18px 34px
        rgba(72,47,16,.11);
}


.pv-related-card > div{
    height:190px;

    overflow:hidden;
}


.pv-related-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .6s ease;
}


.pv-related-card:hover img{
    transform:
        scale(1.05);
}


.pv-related-card > span,
.pv-related-card h3,
.pv-related-card small{
    display:block;

    margin-left:15px;

    margin-right:15px;
}


.pv-related-card > span{
    margin-top:13px;

    color:#b76a02;

    font-size:8px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.7px;
}


.pv-related-card h3{
    margin-top:6px;

    margin-bottom:11px;

    font:
        600 17px/1.15
        "Playfair Display",
        serif;
}


.pv-related-card small{
    color:#b76a02;

    font-size:9px;

    font-weight:700;
}


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

@media(max-width:1000px){

    .pv-grid{
        gap:32px;

        grid-template-columns:
            1fr 1fr;
    }


    .pv-main-slider{
        height:430px;
    }


    .pv-content h1{
        font-size:40px;
    }


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

}


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

@media(max-width:760px){

    .pv-breadcrumb{
        margin-top: 15px;
    }

    .pv-container{
        width:
            calc(100% - 26px);
    }


    .pv-hero{
        padding:
            25px 0
            40px;
    }


    .pv-grid{
        grid-template-columns:1fr;

        gap:30px;
    }


    .pv-main-slider{
        height:340px;
    }


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


    .pv-content h1{
        font-size:36px;
    }


    .pv-highlights{
        grid-template-columns:
            repeat(3,1fr);
    }


    .pv-actions{
        display:grid;

        grid-template-columns:1fr;
    }


    .pv-primary-btn,
    .pv-call-btn{
        width:100%;
    }


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


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

}


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

@media(max-width:480px){

    .pv-main-slider{
        height:280px;
    }


    .pv-content h1{
        font-size:31px;
    }


    .pv-lead{
        font-size:13px;
    }


    .pv-highlights{
        grid-template-columns:1fr;
    }


    .pv-highlights > div{
        min-height:70px;

        flex-direction:row;

        text-align:left;
    }


    .pv-application-grid{
        grid-template-columns:1fr;
    }


    .pv-related-grid{
        grid-template-columns:1fr;
    }


    .pv-related-card > div{
        height:240px;
    }

}

/* =========================================================
   PRODUCT AVAILABLE SIZES
========================================================= */

.pv-size-section{
    position:relative;

    margin-top:26px;
    padding:22px;

    overflow:hidden;

    border:1px solid rgba(199,123,5,.20);
    border-radius:18px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(222,163,52,.12),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            #fffdfa 0%,
            #fff7e7 100%
        );

    box-shadow:
        0 14px 35px rgba(90,58,16,.07);
}


.pv-size-section::before{
    content:"";

    position:absolute;

    top:0;
    left:22px;
    right:22px;

    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #bd7005,
            #e3ae48,
            transparent
        );
}


/* =========================================================
   HEADING
========================================================= */

.pv-size-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    margin-bottom:18px;
}


.pv-size-title{
    display:flex;
    align-items:center;

    gap:12px;
}


.pv-size-icon{
    width:44px;
    height:44px;

    flex:0 0 44px;

    display:grid;
    place-items:center;

    border:1px solid #e5bd74;
    border-radius:13px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff0cf
        );

    color:#b66b00;

    box-shadow:
        0 7px 16px
        rgba(163,100,10,.09);
}


.pv-size-icon svg{
    width:21px;
    height:21px;

    fill:none;

    stroke:currentColor;
    stroke-width:1.7;

    stroke-linecap:round;
    stroke-linejoin:round;
}


.pv-size-title small{
    display:block;

    margin-bottom:4px;

    color:#ad6502;

    font-size:9px;
    font-weight:700;

    letter-spacing:1.5px;
}


.pv-size-title strong{
    display:block;

    color:#211810;

    font:
        600 20px/1.1
        "Playfair Display",
        serif;
}


.pv-size-count{
    flex:0 0 auto;

    padding:7px 11px;

    border:1px solid #e5c68c;
    border-radius:999px;

    background:#ffffff;

    color:#9e6005;

    font-size:9px;
    font-weight:800;

    letter-spacing:1px;
}


/* =========================================================
   SIZE GRID
========================================================= */

.pv-size-grid{
    display:grid;

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

    gap:10px;
}


/* =========================================================
   SIZE CARD
========================================================= */

.pv-size-card{
    min-height:60px;

    display:grid;

    grid-template-columns:
        34px
        minmax(0,1fr)
        28px;

    align-items:center;

    gap:10px;

    padding:10px 12px;

    border:1px solid #ead4ad;
    border-radius:13px;

    background:
        rgba(255,255,255,.90);

    box-shadow:
        0 8px 20px
        rgba(70,45,12,.045);

    transition:
        transform .3s cubic-bezier(.22,.61,.36,1),
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

    animation:
        pvSizeReveal
        .55s
        cubic-bezier(.22,.61,.36,1)
        both;

    animation-delay:
        var(--size-delay);
}


.pv-size-card:hover{
    transform:
        translateY(-3px);

    border-color:#d69a38;

    background:#ffffff;

    box-shadow:
        0 13px 27px
        rgba(120,75,10,.10);
}


/* =========================================================
   NUMBER
========================================================= */

.pv-size-number{
    width:31px;
    height:31px;

    display:grid;
    place-items:center;

    border-radius:9px;

    background:#fff4dc;

    color:#b66c02;

    font-size:9px;
    font-weight:800;

    letter-spacing:.5px;
}


/* =========================================================
   VALUE
========================================================= */

.pv-size-value{
    min-width:0;

    color:#302419;

    font-size:13px;
    font-weight:700;

    line-height:1.35;

    letter-spacing:.1px;
}


/* =========================================================
   CHECK
========================================================= */

.pv-size-check{
    width:27px;
    height:27px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#f7ead0;

    color:#b66d05;
}


.pv-size-check svg{
    width:14px;
    height:14px;

    fill:none;

    stroke:currentColor;
    stroke-width:2.2;

    stroke-linecap:round;
    stroke-linejoin:round;
}


/* =========================================================
   NOTE
========================================================= */

.pv-size-note{
    display:flex;

    align-items:flex-start;

    gap:8px;

    margin-top:14px;
    padding-top:13px;

    border-top:
        1px solid
        rgba(205,155,74,.25);

    color:#75695c;

    font-size:10px;
    line-height:1.55;
}


.pv-size-note svg{
    width:15px;
    height:15px;

    flex:0 0 15px;

    margin-top:1px;

    fill:none;

    stroke:#b66c02;
    stroke-width:1.7;

    stroke-linecap:round;
    stroke-linejoin:round;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes pvSizeReveal{

    from{
        opacity:0;

        transform:
            translateY(12px);
    }

    to{
        opacity:1;

        transform:
            translateY(0);
    }

}


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

@media(max-width:900px){

    .pv-size-grid{
        grid-template-columns:1fr;
    }

}


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

@media(max-width:760px){

    .pv-size-section{
        margin-top:20px;

        padding:
            17px
            14px;

        border-radius:15px;
    }


    .pv-size-section::before{
        left:14px;
        right:14px;
    }


    .pv-size-heading{
        gap:10px;

        margin-bottom:14px;
    }


    .pv-size-icon{
        width:39px;
        height:39px;

        flex-basis:39px;

        border-radius:11px;
    }


    .pv-size-icon svg{
        width:18px;
        height:18px;
    }


    .pv-size-title small{
        font-size:7px;

        letter-spacing:1.1px;
    }


    .pv-size-title strong{
        font-size:17px;
    }


    .pv-size-count{
        padding:
            6px
            8px;

        font-size:7px;
    }


    .pv-size-grid{
        grid-template-columns:1fr;

        gap:8px;
    }


    .pv-size-card{
        min-height:55px;

        grid-template-columns:
            31px
            minmax(0,1fr)
            25px;

        padding:
            9px
            10px;
    }


    .pv-size-number{
        width:29px;
        height:29px;

        font-size:8px;
    }


    .pv-size-value{
        font-size:12px;
    }


    .pv-size-check{
        width:24px;
        height:24px;
    }


    .pv-size-check svg{
        width:13px;
        height:13px;
    }


    .pv-size-note{
        font-size:9px;
    }

}