/* =========================================================
   PRODUCT.CSS
   EASY MOBILITY PRODUCT PAGE
========================================================= */


/* =========================================================
   BASIC SETTINGS
========================================================= */

:root{
    --green:#17302C;
    --green2:#29443F;
    --green3:#4B625D;

    --cream:#EEEFE6;
    --cream2:#E4E7DC;
    --white:#FFFFFF;

    --orange:#C68A3E;
    --orange2:#A66E2A;

    --line:rgba(23,48,44,.14);

    --heading:"Fraunces",serif;
    --body:"Inter",sans-serif;
    --mono:"IBM Plex Mono",monospace;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;

    background:var(--cream);

    color:var(--green);

    font-family:var(--body);

    line-height:1.6;

    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea{
    font-family:inherit;
}

.container{
    width:100%;
    max-width:1180px;

    margin:0 auto;

    padding:0 28px;
}


/* =========================================================
   HEADER
========================================================= */

header{
    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(238,239,230,.94);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--line);
}

.nav{
    width:100%;
    max-width:1180px;

    margin:0 auto;

    padding:17px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo{
    display:flex;

    align-items:center;

    gap:10px;

    font-family:var(--heading);

    font-size:20px;

    font-weight:600;

    white-space:nowrap;
}

.logo img{
    display:block;

    position:relative;

    top:-15px;

    width:auto;

    max-height:48px;
}

.logo-mark{
    width:31px;
    height:31px;

    flex-shrink:0;

    border-radius:50%;

    background:var(--green);

    position:relative;
}

.logo-mark:after{
    content:"";

    position:absolute;

    inset:8px;

    border:2px solid var(--cream);

    border-radius:50%;

    border-right-color:transparent;

    transform:rotate(45deg);
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links{
    display:flex;

    align-items:center;

    gap:30px;

    list-style:none;

    padding:0;

    margin:0;

    font-size:14px;

    font-weight:500;
}

.nav-links a{
    opacity:.78;

    transition:.2s ease;
}

.nav-links a:hover{
    opacity:1;

    color:var(--orange2);
}

.nav-phone{
    font-family:var(--mono);

    font-size:12px;

    color:var(--green3);
}


/* =========================================================
   NAV BUY
========================================================= */

.nav-buy{
    background:var(--green);

    color:white;

    padding:11px 21px;

    border-radius:4px;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    transition:.2s ease;
}

.nav-buy:hover{
    background:var(--orange2);
}


/* =========================================================
   NAVIGATION ACTIONS
========================================================= */

.nav-actions{
    display:flex;

    align-items:center;

    gap:20px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn{
    display:none;

    border:0;

    background:transparent;

    color:var(--green);

    font-size:28px;

    line-height:1;

    padding:5px;

    cursor:pointer;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media(max-width:900px){

    .nav{
        position:relative;
    }

    .nav-phone{
        display:none;
    }

    .mobile-menu-btn{
        display:block;

        order:2;

        margin-left:auto;

        position:relative;

        z-index:1002;
    }

    .nav-actions{
        order:3;

        gap:12px;
    }

    .nav-links{
        display:none;

        position:absolute;

        top:100%;

        left:0;

        right:0;

        flex-direction:column;

        align-items:stretch;

        gap:0;

        padding:8px 28px 15px;

        margin:0;

        background:rgba(238,239,230,.98);

        border-bottom:1px solid var(--line);

        box-shadow:0 8px 20px rgba(23,48,44,.08);

        z-index:1001;
    }

    .nav-links.mobile-open{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;

        padding:13px 0;

        border-bottom:1px solid var(--line);

        font-size:14px;
    }

    .nav-links li:last-child a{
        border-bottom:0;
    }
}


/* =========================================================
   SMALL MOBILE NAV
========================================================= */

@media(max-width:600px){

    .nav{
        padding:14px 15px;
    }

    .mobile-menu-btn{
        font-size:27px;
    }

    .nav-buy{
        padding:10px 15px;

        font-size:13px;
    }

    .logo{
        font-size:18px;
    }

    .logo img{
        top:-10px;

        max-height:42px;
    }
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement{
    background:var(--green);

    color:var(--cream);

    text-align:center;

    padding:10px 20px;

    font-family:var(--mono);

    font-size:11px;

    letter-spacing:.05em;
}

.announcement strong{
    color:var(--orange);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb{
    padding:25px 0 10px;

    font-size:13px;

    color:var(--green3);
}

.breadcrumb span{
    margin:0 8px;
}


/* =========================================================
   PRODUCT HERO
========================================================= */

.product{
    padding:25px 0 0;
}

.product-grid{
    display:grid;

    grid-template-columns:1.08fr .92fr;

    gap:65px;

    align-items:start;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.gallery{
    position:sticky;

    top:100px;

    width:100%;
}


/* =========================================================
   MAIN PRODUCT PHOTO
========================================================= */

.main-photo{
    position:relative;

    width:100%;

    background:var(--white);

    border-radius:18px;

    min-height:590px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    border:1px solid var(--line);
}

.main-photo img{
    width:100%;

    height:590px;

    object-fit:contain;

    transition:transform .3s ease;
}

.main-photo:hover img{
    transform:scale(1.035);
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.image-label{
    position:absolute;

    top:18px;

    left:18px;

    background:var(--green);

    color:white;

    padding:8px 13px;

    border-radius:30px;

    font-family:var(--mono);

    font-size:10px;

    letter-spacing:.07em;

    text-transform:uppercase;

    z-index:2;
}


/* =========================================================
   ZOOM LABEL
========================================================= */

.zoom-label{
    position:absolute;

    right:18px;

    bottom:18px;

    background:rgba(255,255,255,.9);

    padding:8px 12px;

    border-radius:5px;

    font-size:11px;

    color:var(--green3);

    z-index:3;
}


/* =========================================================
   GALLERY THUMBNAILS
========================================================= */

.thumbnails{
    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:12px;

    margin-top:15px;

    width:100%;
}

.thumb{
    width:100%;

    height:105px;

    min-width:0;

    border-radius:9px;

    border:1px solid var(--line);

    background:white;

    padding:6px;

    cursor:pointer;

    overflow:hidden;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.thumb img{
    width:100%;

    height:100%;

    object-fit:contain;

    display:block;
}

.thumb.active{
    border:2px solid var(--orange);
}

.thumb:hover{
    border:2px solid var(--orange);

    transform:translateY(-2px);
}


/* =========================================================
   THUMBNAILS — TABLET
========================================================= */

@media(max-width:900px){

    .product-grid{
        grid-template-columns:1fr;

        gap:35px;
    }

    .gallery{
        position:relative;

        top:auto;
    }

    .thumbnails{
        grid-template-columns:repeat(4,minmax(0,1fr));

        gap:10px;
    }

    .thumb{
        height:95px;
    }
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info{
    padding-top:7px;

    position:relative;

    z-index:1;
}

.eyebrow{
    display:flex;

    align-items:center;

    gap:9px;

    font-family:var(--mono);

    font-size:11px;

    letter-spacing:.13em;

    text-transform:uppercase;

    color:var(--orange2);
}

.eyebrow:before{
    content:"";

    width:20px;

    height:1px;

    background:var(--orange2);
}

.product-title{
    font-family:var(--heading);

    font-size:clamp(40px,5vw,62px);

    line-height:1.02;

    margin:15px 0 18px;

    letter-spacing:-.025em;
}

.product-subtitle{
    font-size:17px;

    color:var(--green3);

    max-width:570px;

    margin-bottom:20px;
}


/* =========================================================
   RATING
========================================================= */

.rating{
    display:flex;

    align-items:center;

    gap:10px;

    font-size:13px;

    margin-bottom:20px;
}

.stars{
    color:var(--orange);

    letter-spacing:2px;
}

.in-stock{
    display:inline-flex;

    align-items:center;

    gap:8px;

    font-family:var(--mono);

    font-size:11px;

    color:#39734F;

    text-transform:uppercase;
}

.stock-dot{
    width:8px;

    height:8px;

    border-radius:50%;

    background:#39734F;
}


/* =========================================================
   PRICE
========================================================= */

.price-box{
    border-top:1px solid var(--line);

    border-bottom:1px solid var(--line);

    padding:22px 0;

    margin-top:20px;
}

.price{
    font-family:var(--heading);

    font-size:47px;

    font-weight:600;
}

.price small{
    font-family:var(--body);

    font-size:15px;

    color:var(--green3);
}

.price-note{
    font-size:12px;

    color:var(--green3);

    margin-top:2px;
}


/* =========================================================
   COLOUR
========================================================= */

.option{
    margin-top:23px;
}

.option-title{
    font-size:13px;

    font-weight:600;

    margin-bottom:11px;
}

.color-row{
    display:flex;

    gap:12px;
}

.color{
    width:32px;

    height:32px;

    flex-shrink:0;

    border-radius:50%;

    border:3px solid white;

    box-shadow:0 0 0 1px var(--line);

    cursor:pointer;

    transition:.2s ease;
}

.color:hover,
.color.active{
    box-shadow:0 0 0 2px var(--orange);
}


/* =========================================================
   BUY AREA
========================================================= */

.buy-area{
    margin-top:25px;

    position:relative;

    z-index:1;
}

.buy-button{
    width:100%;

    border:0;

    background:var(--green);

    color:white;

    padding:17px 20px;

    border-radius:5px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.buy-button:hover{
    background:var(--orange2);

    transform:translateY(-1px);
}

.buy-note{
    text-align:center;

    font-size:11px;

    color:var(--green3);

    margin-top:10px;
}


/* =========================================================
   TRUST CARDS
========================================================= */

.trust-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:1px;

    background:var(--line);

    border:1px solid var(--line);

    margin-top:25px;
}

.trust-item{
    background:var(--cream);

    padding:17px 13px;

    text-align:center;
}

.trust-icon{
    font-size:21px;

    margin-bottom:3px;
}

.trust-item strong{
    display:block;

    font-size:12px;
}

.trust-item span{
    font-size:10px;

    color:var(--green3);
}


/* =========================================================
   QUICK SPECS
========================================================= */

.quick-specs{
    padding:22px 0 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:1px;

    background:var(--line);
}

.quick-spec{
    background:var(--cream);

    padding:17px 10px;

    text-align:center;
}

.quick-spec strong{
    display:block;

    font-family:var(--heading);

    font-size:22px;
}

.quick-spec span{
    font-size:10px;

    font-family:var(--mono);

    text-transform:uppercase;

    color:var(--green3);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{
    border-top:1px solid var(--line);

    border-bottom:1px solid var(--line);

    background:var(--cream2);

    padding:21px 0;
}

.trust-strip-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    text-align:center;
}

.trust-strip-item{
    font-family:var(--mono);

    font-size:11px;

    color:var(--green3);
}

.trust-strip-item strong{
    display:block;

    color:var(--green);

    margin-bottom:3px;
}


/* =========================================================
   INTRO
========================================================= */

.intro{
    padding:100px 0 60px;
}

.intro-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:end;
}

.intro h2{
    font-family:var(--heading);

    font-size:clamp(32px,4vw,48px);

    line-height:1.08;

    margin:14px 0 0;
}

.intro-text{
    color:var(--green3);

    font-size:16px;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.features{
    padding:35px 0 100px;
}

.feature-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:1px;

    background:var(--line);

    border:1px solid var(--line);

    border-radius:12px;

    overflow:hidden;
}

.feature{
    background:var(--cream);

    padding:32px 27px;

    transition:.2s;
}

.feature:hover{
    background:var(--white);

    transform:translateY(-2px);
}

.feature-number{
    font-family:var(--mono);

    font-size:11px;

    color:var(--orange2);
}

.feature h3{
    font-family:var(--heading);

    font-size:22px;

    margin:20px 0 8px;
}

.feature p{
    font-size:14px;

    color:var(--green3);

    margin:0;
}


/* =========================================================
   DARK PRODUCT STORY
========================================================= */

.story{
    background:var(--green);

    color:var(--cream);

    padding:100px 0;
}

.story-grid{
    display:grid;

    grid-template-columns:.85fr 1.15fr;

    gap:70px;

    align-items:center;
}

.story h2{
    font-family:var(--heading);

    font-size:clamp(34px,4vw,50px);

    line-height:1.08;

    margin:15px 0;
}

.story p{
    color:rgba(238,239,230,.68);
}

.story-list{
    margin:30px 0 0;

    padding:0;

    list-style:none;
}

.story-list li{
    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.12);

    display:flex;

    gap:14px;
}

.story-list b{
    color:var(--orange);
}

.story-card{
    background:var(--cream2);

    color:var(--green);

    border-radius:14px;

    padding:35px;
}

.story-card-title{
    font-family:var(--heading);

    font-size:28px;

    margin-bottom:25px;
}

.story-stat{
    display:flex;

    justify-content:space-between;

    border-bottom:1px solid var(--line);

    padding:15px 0;

    font-size:14px;
}

.story-stat strong{
    font-family:var(--mono);

    font-size:13px;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.spec-section{
    padding:100px 0;
}

.section-head{
    max-width:650px;

    margin-bottom:45px;
}

.section-head h2{
    font-family:var(--heading);

    font-size:clamp(32px,4vw,47px);

    line-height:1.1;

    margin:13px 0;
}

.section-head p{
    color:var(--green3);
}

.spec-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:1px;

    background:var(--line);

    border:1px solid var(--line);

    border-radius:12px;

    overflow:hidden;
}

.spec{
    background:var(--cream);

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:17px 20px;

    font-size:14px;
}

.spec span{
    color:var(--green3);
}

.spec strong{
    text-align:right;

    font-weight:600;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.review-section{
    background:var(--cream2);

    padding:100px 0;
}

.review-header{
    display:flex;

    justify-content:space-between;

    align-items:end;

    gap:30px;

    margin-bottom:35px;
}

.review-header h2{
    font-family:var(--heading);

    font-size:42px;

    margin:10px 0 0;
}

.review-arrows{
    display:flex;

    gap:8px;
}

.review-arrows button{
    width:42px;

    height:42px;

    border:1px solid var(--line);

    background:var(--cream);

    border-radius:50%;

    cursor:pointer;

    font-size:18px;
}

.review-arrows button:hover{
    background:var(--green);

    color:white;
}

.review-slider{
    display:flex;

    gap:20px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    scrollbar-width:none;
}

.review-slider::-webkit-scrollbar{
    display:none;
}

.review{
    min-width:75%;

    scroll-snap-align:start;

    background:var(--white);

    border-radius:14px;

    padding:40px;

    border:1px solid var(--line);
}

.review-stars{
    color:var(--orange);

    letter-spacing:3px;
}

.review blockquote{
    font-family:var(--heading);

    font-size:clamp(22px,3vw,31px);

    line-height:1.35;

    margin:22px 0;
}

.reviewer{
    font-family:var(--mono);

    font-size:11px;

    color:var(--green3);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section{
    padding:100px 0;
}

.faq{
    max-width:850px;

    margin:auto;
}

details{
    border-top:1px solid var(--line);

    padding:22px 0;
}

details:last-child{
    border-bottom:1px solid var(--line);
}

summary{
    cursor:pointer;

    list-style:none;

    display:flex;

    justify-content:space-between;

    gap:20px;

    font-weight:600;

    font-size:16px;
}

summary::-webkit-details-marker{
    display:none;
}

summary:after{
    content:"+";

    color:var(--orange2);

    font-family:var(--mono);

    font-size:20px;

    flex-shrink:0;
}

details[open] summary:after{
    content:"−";
}

details p{
    color:var(--green3);

    max-width:700px;

    font-size:14px;

    margin:14px 0 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact{
    padding:0 0 100px;
}

.contact-box{
    display:grid;

    grid-template-columns:.8fr 1.2fr;

    background:var(--green);

    color:var(--cream);

    border-radius:15px;

    overflow:hidden;
}

.contact-content{
    padding:55px 45px;
}

.contact-content h2{
    font-family:var(--heading);

    font-size:40px;

    line-height:1.1;

    margin:15px 0;
}

.contact-content p{
    color:rgba(238,239,230,.67);
}

.contact-form{
    background:var(--cream2);

    color:var(--green);

    padding:45px;
}

.form-row{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;
}

.form-group{
    margin-bottom:17px;
}

.form-group label{
    display:block;

    font-size:12px;

    font-weight:600;

    margin-bottom:7px;
}

.form-group input,
.form-group textarea{
    width:100%;

    border:1px solid var(--line);

    background:var(--white);

    padding:13px;

    border-radius:4px;

    outline:none;
}

.form-group textarea{
    min-height:110px;

    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--orange);
}

.submit{
    width:100%;

    border:0;

    background:var(--green);

    color:white;

    padding:14px;

    border-radius:4px;

    font-weight:600;

    cursor:pointer;
}

.submit:hover{
    background:var(--orange2);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter{
    padding:0 0 90px;
}

.newsletter-box{
    background:var(--cream2);

    border:1px solid var(--line);

    border-radius:14px;

    padding:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;
}

.newsletter h2{
    font-family:var(--heading);

    font-size:30px;

    margin:0 0 6px;
}

.newsletter p{
    color:var(--green3);

    margin:0;
}

.newsletter-form{
    display:flex;

    min-width:420px;
}

.newsletter-form input{
    flex:1;

    border:1px solid var(--line);

    border-right:0;

    padding:14px;

    background:white;

    border-radius:4px 0 0 4px;
}

.newsletter-form button{
    border:0;

    background:var(--green);

    color:white;

    padding:0 22px;

    border-radius:0 4px 4px 0;

    font-weight:600;

    cursor:pointer;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
    background:var(--green);

    color:var(--cream);

    border-top:1px solid rgba(238,239,230,.10);

    margin:0;

    padding:0;
}

.footer-inner,
footer > .container{
    width:100%;

    max-width:1180px;

    margin:0 auto;

    padding:55px 28px 25px;
}

.footer-grid{
    display:grid;

    grid-template-columns:1.5fr 1fr 1fr;

    gap:45px;

    align-items:start;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo{
    font-family:var(--heading);

    font-size:24px;

    font-weight:600;

    color:var(--cream);

    margin:0 0 16px;
}

footer .logo{
    color:var(--cream);

    margin:0 0 16px;
}

footer .logo img{
    top:-8px;
}

footer .logo-mark{
    background:var(--cream);
}

footer .logo-mark:after{
    border-color:var(--green);

    border-right-color:transparent;
}


/* =========================================================
   FOOTER TEXT
========================================================= */

footer p{
    color:rgba(238,239,230,.72);

    font-size:14px;

    line-height:1.7;

    max-width:520px;

    margin:0 0 14px;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

footer h4,
.footer-title{
    font-family:var(--mono);

    font-size:11px;

    line-height:1.3;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.04em;

    color:rgba(238,239,230,.62);

    margin:0 0 18px;
}


/* =========================================================
   FOOTER LISTS
========================================================= */

footer ul,
.footer-links{
    list-style:none;

    padding:0;

    margin:0;
}

footer li,
.footer-links li{
    margin:0 0 10px;

    font-size:14px;

    line-height:1.5;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

footer a{
    color:rgba(238,239,230,.82);

    text-decoration:none;

    transition:color .2s ease;
}

footer a:hover{
    color:var(--orange);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

footer .footer-contact,
footer .contact-info{
    color:rgba(238,239,230,.78);

    font-size:14px;

    line-height:1.8;
}


/* =========================================================
   FOOTER SOCIAL ICONS
========================================================= */

.footer-social{
    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:24px;

    margin-top:24px;

    padding:20px 0;
}

.footer-social a{
    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.25);

    border-radius:50%;

    color:#fff;

    background:rgba(255,255,255,.03);

    text-decoration:none;

    font-size:18px;

    transition:all .3s ease;
}

.footer-social a:hover{
    transform:translateY(-3px);

    background:rgba(255,255,255,.12);

    border-color:rgba(255,255,255,.6);

    color:#fff;

    box-shadow:0 4px 12px rgba(0,0,0,.25);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
    border-top:1px solid rgba(238,239,230,.12);

    margin-top:35px;

    padding-top:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    color:rgba(238,239,230,.55);

    font-size:12px;

    line-height:1.5;
}

.footer-bottom span{
    float:none !important;
}

footer .social-links{
    display:flex;

    align-items:center;

    gap:18px;
}

footer .social-links a{
    color:rgba(238,239,230,.65);

    font-size:12px;
}

footer .social-links a:hover{
    color:var(--orange);
}


/* =========================================================
   MOBILE BUY BAR
========================================================= */

.mobile-buy{
    display:none;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:800px){

    .intro-grid{
        grid-template-columns:1fr;

        gap:25px;
    }

    .story-grid{
        grid-template-columns:1fr;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .contact-box{
        grid-template-columns:1fr;
    }

    .newsletter-box{
        flex-direction:column;

        align-items:flex-start;
    }

    .newsletter-form{
        width:100%;

        min-width:0;
    }
}


/* =========================================================
   TABLET / MOBILE PRODUCT GALLERY
========================================================= */

@media(max-width:768px){

    /* -----------------------------------------------------
       GENERAL
    ----------------------------------------------------- */

    .container{
        padding-left:16px;

        padding-right:16px;
    }

    .product{
        padding-top:15px;
    }

    .product-grid{
        display:block;

        width:100%;
    }


    /* -----------------------------------------------------
       GALLERY
    ----------------------------------------------------- */

    .gallery{
        position:relative !important;

        top:auto !important;

        width:100%;

        max-width:100%;

        overflow:visible !important;
    }


    /* -----------------------------------------------------
       MAIN PHOTO
    ----------------------------------------------------- */

    .main-photo{
        position:relative !important;

        width:100%;

        height:auto !important;

        min-height:0 !important;

        display:flex;

        align-items:center;

        justify-content:center;

        background:#fff;

        border-radius:14px;

        overflow:hidden !important;

        margin:0;

        padding:0;

        border:1px solid var(--line);
    }

    .main-photo img{
        position:relative !important;

        display:block !important;

        width:100% !important;

        max-width:100% !important;

        height:auto !important;

        max-height:none !important;

        object-fit:contain !important;

        transform:none !important;
    }

    .main-photo:hover img{
        transform:none !important;
    }


    /* -----------------------------------------------------
       IMAGE LABEL
    ----------------------------------------------------- */

    .image-label{
        position:absolute !important;

        top:12px;

        left:12px;

        z-index:5;

        padding:7px 10px;

        font-size:9px;
    }


    /* -----------------------------------------------------
       ZOOM LABEL
       Stays inside main image.
    ----------------------------------------------------- */

    .zoom-label{
        position:absolute !important;

        right:10px !important;

        bottom:10px !important;

        width:auto !important;

        height:auto !important;

        margin:0 !important;

        padding:6px 9px !important;

        background:rgba(255,255,255,.92);

        border-radius:5px;

        font-size:10px;

        line-height:1.3;

        z-index:6;

        display:block !important;
    }


    /* -----------------------------------------------------
       FOUR THUMBNAILS
       Always clean 4-column row.
    ----------------------------------------------------- */

    .thumbnails{
        position:relative !important;

        display:grid !important;

        grid-template-columns:repeat(4,minmax(0,1fr)) !important;

        gap:8px !important;

        width:100% !important;

        height:auto !important;

        min-height:0 !important;

        margin:12px 0 0 !important;

        padding:0 !important;

        overflow:visible !important;

        align-items:stretch;

        z-index:2;
    }

    .thumb{
        position:relative !important;

        display:flex !important;

        align-items:center;

        justify-content:center;

        width:100% !important;

        min-width:0 !important;

        height:78px !important;

        min-height:78px !important;

        margin:0 !important;

        padding:4px !important;

        background:#fff;

        border:1px solid var(--line);

        border-radius:8px;

        overflow:hidden !important;

        transform:none !important;

        z-index:2;
    }

    .thumb img{
        position:relative !important;

        display:block !important;

        width:100% !important;

        height:100% !important;

        max-width:100% !important;

        max-height:100% !important;

        object-fit:contain !important;

        margin:0 !important;
    }

    .thumb.active{
        border:2px solid var(--orange) !important;
    }

    .thumb:hover{
        transform:none !important;

        border:2px solid var(--orange);
    }


    /* -----------------------------------------------------
       PRODUCT INFORMATION
       Forces information BELOW gallery.
    ----------------------------------------------------- */

    .product-info{
        position:relative !important;

        display:block !important;

        width:100% !important;

        margin-top:28px !important;

        padding-top:0 !important;

        clear:both;

        z-index:1;
    }

    .product-title{
        font-size:clamp(34px,10vw,46px);

        line-height:1.05;

        margin-top:12px;
    }

    .product-subtitle{
        font-size:15px;

        line-height:1.55;

        margin-bottom:18px;
    }


    /* -----------------------------------------------------
       BUY AREA
    ----------------------------------------------------- */

    .buy-area{
        position:relative;

        width:100%;

        margin-top:22px;

        z-index:1;
    }

    .buy-button{
        position:relative;

        width:100%;

        min-height:52px;

        z-index:1;
    }


    /* -----------------------------------------------------
       TRUST GRID
    ----------------------------------------------------- */

    .trust-grid{
        margin-top:22px;
    }


    /* -----------------------------------------------------
       QUICK SPECS
    ----------------------------------------------------- */

    .quick-specs{
        grid-template-columns:repeat(2,1fr);
    }


    /* -----------------------------------------------------
       WHATSAPP
       Always above fixed Buy Now bar.
    ----------------------------------------------------- */

    #WAButton{
        position:relative !important;

        z-index:10000 !important;
    }

    #WAButton .floating-wpp{
        position:fixed !important;

        right:15px !important;

        bottom:82px !important;

        z-index:10001 !important;
    }


    /* -----------------------------------------------------
       FIXED MOBILE BUY BAR
    ----------------------------------------------------- */

    .mobile-buy{
        position:fixed !important;

        left:0 !important;

        right:0 !important;

        bottom:0 !important;

        width:100% !important;

        height:68px !important;

        display:flex !important;

        align-items:center !important;

        justify-content:space-between !important;

        gap:12px !important;

        padding:10px 14px !important;

        background:rgba(255,255,255,.98) !important;

        border-top:1px solid #ddd;

        box-shadow:0 -4px 16px rgba(0,0,0,.12);

        z-index:9998 !important;
    }

    .mobile-buy-price{
        flex:1;

        min-width:0;

        white-space:nowrap;

        color:var(--green);

        font-family:var(--heading);

        font-size:18px;

        font-weight:600;

        line-height:1.2;
    }

    .mobile-buy a,
    .mobile-buy button{
        flex:0 0 auto;

        height:46px;

        min-width:120px;

        padding:0 18px !important;

        display:flex;

        align-items:center;

        justify-content:center;

        border:0;

        border-radius:7px;

        background:var(--green);

        color:#fff;

        font-size:14px;

        font-weight:700;

        white-space:nowrap;

        text-decoration:none;

        cursor:pointer;
    }


    /* -----------------------------------------------------
       BODY SPACE
       Prevent fixed Buy Now bar from covering content.
    ----------------------------------------------------- */

    body{
        padding-bottom:82px !important;
    }

    footer{
        padding-bottom:82px !important;
    }


    /* -----------------------------------------------------
       MOBILE LOGO
    ----------------------------------------------------- */

    .logo{
        display:flex;

        align-items:center;
    }

    .logo img{
        display:block;

        position:relative;

        top:-10px;

        max-height:42px;

        width:auto;
    }
}


/* =========================================================
   MOBILE TRUST GRID
========================================================= */

@media(max-width:500px){

    .trust-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-content,
    .contact-form{
        padding:30px;
    }

    .footer-inner,
    footer > .container{
        padding:38px 20px 25px;
    }

    footer .logo{
        font-size:19px;
    }

    .footer-logo{
        font-size:20px;
    }

    footer p{
        font-size:13px;
    }

    footer li,
    .footer-links li{
        font-size:13px;
    }

    .footer-bottom{
        font-size:11px;
    }
}


/* =========================================================
   MOBILE — 600px
========================================================= */

@media(max-width:600px){

    .container{
        padding-left:15px;

        padding-right:15px;
    }

    .main-photo{
        border-radius:12px;
    }

    .thumbnails{
        gap:7px !important;

        margin-top:10px !important;
    }

    .thumb{
        height:72px !important;

        min-height:72px !important;

        padding:3px !important;
    }

    .product-info{
        margin-top:24px !important;
    }

    .review{
        min-width:90%;

        padding:28px;
    }

    .mobile-buy{
        height:66px !important;

        padding:9px 12px !important;

        gap:10px !important;
    }

    .mobile-buy-price{
        font-size:17px;
    }

    .mobile-buy a,
    .mobile-buy button{
        min-width:112px;

        height:44px;

        padding:0 15px !important;

        font-size:13px;
    }

    #WAButton .floating-wpp{
        right:13px !important;

        bottom:78px !important;
    }

    .trust-strip-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .newsletter-box{
        padding:30px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media(max-width:480px){

    .footer-social{
        gap:14px;

        margin-top:20px;

        padding:15px 0;
    }

    .footer-social a{
        width:40px;

        height:40px;

        font-size:16px;
    }
}


/* =========================================================
   VERY SMALL MOBILE — 400px
========================================================= */

@media(max-width:400px){

    .container{
        padding-left:12px;

        padding-right:12px;
    }

    .thumbnails{
        gap:6px !important;
    }

    .thumb{
        height:65px !important;

        min-height:65px !important;
    }

    .mobile-buy-price{
        font-size:16px;
    }

    .mobile-buy a,
    .mobile-buy button{
        min-width:105px;

        padding:0 12px !important;

        font-size:12px;
    }

    .mobile-buy{
        gap:7px !important;

        padding-left:10px !important;

        padding-right:10px !important;
    }
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media(max-width:700px){

    .footer-inner,
    footer > .container{
        padding:42px 20px 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;

        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;

        align-items:flex-start;

        gap:8px;

        margin-top:30px;

        padding-top:18px;
    }

    .trust-strip-grid{
        gap:15px;
    }
}