/* =====================================================
   BASIC SETTINGS
===================================================== */

:root{
    --green:#17302C;
    --green-light:#3B534E;
    --cream:#EEEFE6;
    --cream-dark:#E4E7DC;
    --gold:#C68A3E;
    --gold-dark:#A66E2A;
    --white:#FBFBF7;
    --border:rgba(23,48,44,.14);
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--cream);
    color:var(--green);
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.55;
}

a{
    color:inherit;
}

img,
video{
    max-width:100%;
}

.container{
    width:90%;
    max-width:1160px;
    margin:auto;
}

h1,
h2,
h3{
    margin:0;
}

.label{
    color:var(--gold-dark);
    font-size:12px;
    font-weight:bold;
    letter-spacing:2px;
    text-transform:uppercase;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:4px;
    font-size:14px;
    font-weight:bold;
    text-decoration:none;
    border:1px solid var(--green);
    cursor:pointer;
    transition:.2s;
}

.btn-primary{
    background:var(--green);
    color:var(--cream);
}

.btn-primary:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
}

.btn-outline{
    background:transparent;
    color:var(--green);
}

.btn-outline:hover{
    background:var(--green);
    color:white;
}


/* =====================================================
   HEADER
===================================================== */

header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(238,239,230,.95);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
}

.navbar{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:bold;
    text-decoration:none;
}

.logo-mark{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--green);
    position:relative;
}

.logo-mark:after{
    content:"";
    position:absolute;
    width:10px;
    height:10px;
    border:2px solid var(--cream);
    border-radius:50%;
    left:8px;
    top:8px;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    font-size:14px;
    transition:.2s;
}

.nav-links a:hover{
    color:var(--gold-dark);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle{
    display:none;

    width:42px;
    height:42px;

    padding:8px;

    border:0;
    background:transparent;

    cursor:pointer;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;
}

.menu-toggle span{
    display:block;

    width:24px;
    height:2px;

    background:var(--green);

    border-radius:2px;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =====================================================
   HERO
===================================================== */

.hero{
    padding:75px 0 60px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:45px;
    align-items:center;
}

.hero h1{
    font-size:52px;
    line-height:1.05;
    margin:15px 0 20px;
}

.hero h1 span{
    color:var(--gold-dark);
}

.hero-text{
    max-width:600px;
    color:var(--green-light);
    font-size:17px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:28px 0 35px;
}

.stats{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    border-top:1px solid var(--border);
    padding-top:25px;
}

.stat strong{
    display:block;
    font-size:25px;
}

.stat small{
    color:var(--green-light);
    font-size:12px;
}


/* =====================================================
   HERO VIDEO
===================================================== */

.hero-visual{
    position:relative;
    background:var(--green);
    border-radius:10px;
    overflow:hidden;
    height:520px;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(23,48,44,0) 45%,
        rgba(23,48,44,.85) 100%
    );
    pointer-events:none;
}

.play-button{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.4);
    background:rgba(23,48,44,.65);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
}

.play-button:hover{
    background:var(--green);
}

.play-button svg{
    width:17px;
    height:17px;
}

.hero-caption{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:3;
    background:var(--white);
    padding:14px 18px;
    border-radius:6px;
    max-width:270px;
    font-size:12px;
}

.hero-caption strong{
    display:block;
    font-size:15px;
    margin-bottom:3px;
}


/* =====================================================
   TRUST
===================================================== */

.trust{
    background:var(--cream-dark);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:20px 0;
}

.trust-list{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.trust-list span{
    color:var(--green-light);
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
}


/* =====================================================
   SECTIONS
===================================================== */

section{
    padding:85px 0;
}

.section-title{
    max-width:650px;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    line-height:1.15;
    margin:12px 0;
}

.section-title p{
    color:var(--green-light);
}


/* =====================================================
   VIDEO SECTION
===================================================== */

.video-box{
    background:var(--green);
    border-radius:14px;
    overflow:hidden;
}

.video-box video{
    width:100%;
    display:block;
}

.video-caption{
    display:flex;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.7);
    padding:16px 24px;
    font-size:12px;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.dark-box{
    background:var(--green);
    color:var(--cream);
    border-radius:14px;
    padding:55px 30px 35px;
}

.dark-box .section-title p{
    color:rgba(255,255,255,.65);
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:rgba(255,255,255,.15);
}

.step{
    background:var(--green);
    padding:30px 22px 34px;
}

.step-number{
    color:var(--gold);
    font-size:13px;
    font-weight:bold;
}

.step-icon{
    width:65px;
    height:65px;
    margin:20px 0;
    color:var(--gold);
}

.step h3{
    font-size:17px;
    margin-bottom:8px;
}

.step p{
    color:rgba(255,255,255,.65);
    font-size:14px;
    margin:0;
}

.safety-note{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.14);
    color:rgba(255,255,255,.6);
    font-size:13px;
}


/* =====================================================
   FEATURES
===================================================== */

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--border);
    border:1px solid var(--border);
    border-radius:10px;
    overflow:hidden;
}

.feature{
    background:var(--cream);
    padding:30px 26px;
}

.feature-icon{
    width:32px;
    height:32px;
    color:var(--gold-dark);
    margin-bottom:18px;
}

.feature h3{
    font-size:17px;
    margin-bottom:8px;
}

.feature p{
    color:var(--green-light);
    font-size:14px;
    margin:0;
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.feature-image-box{
    width:100%;
    max-width:1000px;
    margin:0 auto;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.feature-main-image{
    display:block;
    width:100%;
    height:auto;
}


/* =====================================================
   ROLES
===================================================== */

.roles{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.role{
    background:var(--cream-dark);
    border:1px solid var(--border);
    padding:12px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
}

.role span{
    color:var(--gold-dark);
}


/* =====================================================
   WHY EASY MOBILITY
===================================================== */

.comparison-card{
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    background:var(--white);
}

.comparison-header,
.comparison-row{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.comparison-header{
    background:var(--green);
    color:var(--cream);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.comparison-header div{
    padding:18px 24px;
}

.comparison-header div:last-child{
    color:var(--gold);
}

.comparison-row{
    border-top:1px solid var(--border);
}

.comparison-row div{
    padding:18px 24px;
    font-size:14px;
    color:var(--green-light);
}

.comparison-row div:first-child{
    border-right:1px solid var(--border);
}

.comparison-row div:last-child{
    color:var(--green);
}

.comparison-row strong{
    font-weight:600;
}

.comparison-bottom{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    padding:22px 24px;
    border-top:1px solid var(--border);
    background:var(--cream-dark);
}

.comparison-bottom span{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.05em;
    padding:8px 12px;
    border:1px solid var(--border);
    border-radius:100px;
    background:var(--white);
}


/* =====================================================
   PRODUCT
===================================================== */

.product{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
}

.product-image{
    position:relative;
    width:100%;
    height:570px;
    background:#f7f8f6;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-slider{
    width:100%;
    height:100%;
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.product-slider::-webkit-scrollbar{
    display:none;
}

.product-slide{
    min-width:100%;
    height:570px;
    scroll-snap-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px 55px;
}

.product-slide img{
    width:100%;
    height:100%;
    max-width:650px;
    object-fit:contain;
    display:block;
}

.product-prev,
.product-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:50%;
    background:rgba(255,255,255,.95);
    color:#333;
    font-size:19px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    z-index:5;
    transition:.2s;
}

.product-prev:hover,
.product-next:hover{
    transform:translateY(-50%) scale(1.06);
}

.product-prev{
    left:18px;
}

.product-next{
    right:18px;
}

.product-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:8px;
    padding:7px 11px;
    background:rgba(255,255,255,.92);
    border-radius:30px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    z-index:5;
}

.product-dot{
    width:8px;
    height:8px;
    padding:0;
    border:none;
    border-radius:50%;
    background:#c8c8c8;
    cursor:pointer;
}

.product-dot.active{
    width:10px;
    height:10px;
    background:#222;
}

.product-info{
    padding:42px;
}

.stock{
    color:#3F7A5A;
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
}

.product-info h3{
    font-size:23px;
    margin:15px 0;
}

.price{
    font-size:38px;
    font-weight:bold;
    margin:15px 0;
}

.price small{
    font-size:14px;
}

.specs{
    list-style:none;
    padding:0;
    margin:25px 0 30px;
}

.specs li{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:10px 0;
    border-top:1px solid var(--border);
    font-size:14px;
}

.specs li:last-child{
    border-bottom:1px solid var(--border);
}

.specs strong{
    font-size:13px;
    text-align:right;
}

.colors{
    display:flex;
    align-items:center;
    gap:12px;
    margin:10px 0 28px;
}

.color{
    width:30px;
    height:30px;
    border-radius:50%;
    border:2px solid transparent;
    cursor:pointer;
    padding:0;
    transition:.2s;
}

.color:hover{
    transform:scale(1.08);
}

.color.active{
    outline:2px solid #222;
    outline-offset:3px;
}

.product-actions{
    display:flex;
    gap:12px;
    width:100%;
}

.product-actions .btn{
    flex:1;
    text-align:center;
    white-space:nowrap;
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.testimonial-section{
    background:var(--cream-dark);
}

.testimonial-slider{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.testimonial-track{
    display:flex;
    transition:transform .45s ease;
}

.testimonial{
    min-width:100%;
    padding:60px 70px;
    text-align:center;
}

.testimonial blockquote{
    max-width:800px;
    margin:0 auto;
    font-size:27px;
    line-height:1.4;
    font-weight:500;
}

.testimonial cite{
    display:block;
    margin-top:20px;
    color:var(--green-light);
    font-size:13px;
}

.slider-buttons{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.slider-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid var(--green);
    background:transparent;
    cursor:pointer;
    font-size:18px;
}

.slider-btn:hover{
    background:var(--green);
    color:white;
}

.slider-dots{
    display:flex;
    justify-content:center;
    gap:7px;
    margin-top:15px;
}

.slider-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#aaa;
    cursor:pointer;
}

.slider-dot.active{
    background:var(--green);
}


/* =====================================================
   FAQ
===================================================== */

.faq{
    max-width:820px;
    margin:auto;
}

.faq-item{
    border-top:1px solid var(--border);
    padding:21px 0;
}

.faq-item:last-child{
    border-bottom:1px solid var(--border);
}

.faq-item summary{
    cursor:pointer;
    font-weight:bold;
}

.faq-item p{
    color:var(--green-light);
    font-size:14px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section{
    background:var(--cream-dark);
}

.contact-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    font-size:38px;
    line-height:1.15;
    margin:12px 0;
}

.contact-info p{
    color:var(--green-light);
}

.contact-details{
    margin-top:30px;
}

.contact-details div{
    margin:12px 0;
}

.contact-form{
    background:var(--white);
    padding:35px;
    border-radius:12px;
    border:1px solid var(--border);
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:bold;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:13px;
    border:1px solid var(--border);
    border-radius:5px;
    background:white;
    color:var(--green);
    font-family:inherit;
}

.form-group textarea{
    min-height:130px;
    resize:vertical;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.form-message{
    display:none;
    padding:12px;
    margin-top:15px;
    background:#e6f3e9;
    color:#28613a;
    border-radius:5px;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter{
    background:var(--green);
    color:var(--cream);
    padding:60px 30px;
    text-align:center;
    border-radius:14px;
}

.newsletter h2{
    font-size:34px;
    margin:10px 0;
}

.newsletter p{
    color:rgba(255,255,255,.65);
    max-width:600px;
    margin:0 auto 25px;
}

.newsletter-form{
    display:flex;
    max-width:550px;
    margin:auto;
    gap:10px;
}

.newsletter-form input{
    flex:1;
    padding:14px;
    border:0;
    border-radius:4px;
}

.newsletter-form button{
    border:0;
    background:var(--gold);
    color:var(--green);
    padding:14px 22px;
    border-radius:4px;
    font-weight:bold;
    cursor:pointer;
}


/* =====================================================
   CTA
===================================================== */

.cta{
    background:var(--green);
    color:var(--cream);
    border-radius:14px;
    padding:60px 30px;
    text-align:center;
}

.cta h2{
    font-size:36px;
    max-width:600px;
    margin:12px auto;
}

.cta p{
    color:rgba(255,255,255,.65);
    max-width:600px;
    margin:0 auto 25px;
}

.cta .btn-primary{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--green);
}

.cta .btn-outline{
    color:white;
    border-color:rgba(255,255,255,.4);
    margin-left:8px;
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    padding:55px 0 35px;
    border-top:1px solid var(--border);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:40px;
}

footer h4{
    margin-top:0;
}

footer p,
footer li{
    color:var(--green-light);
    font-size:14px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer li{
    margin:9px 0;
}

footer a{
    text-decoration:none;
}

.footer-bottom{
    margin-top:45px;
    padding-top:20px;
    border-top:1px solid var(--border);
    color:var(--green-light);
    font-size:13px;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

.reveal{
    opacity:0;
    transform:translateY(18px);
    transition:.6s ease;
}

.reveal.show{
    opacity:1;
    transform:none;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:850px){

    .navbar{
        position:relative;
    }

    /* Hide desktop navigation */
    .nav-links{
        display:none;
    }

    /* Hide desktop Buy Now */
    .desktop-buy{
        display:none;
    }

    /* Show hamburger */
    .menu-toggle{
        display:flex;
    }

    /* Mobile dropdown */
    .nav-links.active{
        display:flex;

        position:absolute;

        top:calc(100% + 10px);
        left:0;
        right:0;

        flex-direction:column;
        align-items:stretch;

        gap:0;

        padding:8px;

        background:var(--white);

        border:1px solid var(--border);
        border-radius:8px;

        box-shadow:0 10px 30px rgba(23,48,44,.12);

        z-index:1000;
    }

    .nav-links.active a{
        display:block;
        width:100%;
        padding:14px 16px;
        border-radius:5px;
    }

    .nav-links.active a:hover{
        background:var(--cream-dark);
        color:var(--gold-dark);
    }


    .hero-grid,
    .product,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .steps{
        grid-template-columns:1fr 1fr;
    }

    .features{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .product{
        gap:45px;
    }

    .product-image{
        height:520px;
    }

    .product-slide{
        height:520px;
    }

    .comparison-header div,
    .comparison-row div{
        padding:14px 15px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:600px){

    .navbar{
        min-height:64px;
    }

    .logo{
        font-size:18px;
    }

    .logo-mark{
        width:28px;
        height:28px;
    }

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:35px;
    }

    .hero-visual{
        height:430px;
    }

    .hero-video{
        height:430px;
    }

    .steps,
    .features{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .testimonial{
        padding:40px 25px;
    }

    .testimonial blockquote{
        font-size:21px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .cta h2{
        font-size:30px;
    }

    .cta .btn-outline{
        margin:10px 0 0;
    }

    .product-image{
        height:390px;
        border-radius:16px;
    }

    .product-slide{
        height:390px;
        padding:25px;
    }

    .product-prev,
    .product-next{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .product-prev{
        left:10px;
    }

    .product-next{
        right:10px;
    }

    .product-dots{
        bottom:12px;
    }

    .product-actions{
        flex-direction:column;
    }

    .product-actions .btn{
        width:100%;
    }

    .comparison-header{
        font-size:10px;
    }

    .comparison-row div{
        font-size:13px;
    }

    .comparison-bottom{
        padding:16px;
    }

    .feature-image-box{
        border-radius:10px;
    }

    .feature-main-image{
        width:100%;
        height:auto;
        aspect-ratio:1000 / 425;
        object-fit:contain;
    }

}


/* =====================================================
   HAMBURGER ANIMATION
===================================================== */

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}


/* =========================================
   PRODUCT LAYOUT
========================================= */

.product {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}


/* =========================================
   LARGE CLEAN IMAGE AREA
========================================= */

.product-image {
    position: relative;
    width: 100%;
    height: 570px;

    background: #f7f8f6;

    border-radius: 22px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   SLIDER
========================================= */

.product-slider {
    width: 100%;
    height: 100%;

    display: flex;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================
   EACH IMAGE
========================================= */

.product-slide {
    min-width: 100%;
    height: 570px;

    scroll-snap-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px 55px;

    box-sizing: border-box;
}


.product-slide img {
    width: 100%;
    height: 100%;

    max-width: 650px;

    object-fit: contain;

    display: block;
}


/* =========================================
   ARROWS
========================================= */

.product-prev,
.product-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    border: 1px solid rgba(0,0,0,.08);

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #333;

    font-size: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0,0,0,.08);

    z-index: 5;

    transition: all .2s ease;
}


.product-prev:hover,
.product-next:hover {

    transform: translateY(-50%) scale(1.06);

}


.product-prev {
    left: 18px;
}


.product-next {
    right: 18px;
}


/* =========================================
   IMAGE DOTS
========================================= */

.product-dots {

    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 11px;

    background: rgba(255,255,255,.92);

    border-radius: 30px;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);

    z-index: 5;
}


.product-dot {

    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #c8c8c8;

    cursor: pointer;

    transition: all .2s ease;
}


.product-dot.active {

    width: 10px;
    height: 10px;

    background: #222;
}


/* =========================================
   COLOUR SELECTOR
========================================= */

.colors {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 10px 0 28px;
}


.color {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    border: 2px solid transparent;

    cursor: pointer;

    padding: 0;

    transition: all .2s ease;
}


.color:hover {

    transform: scale(1.08);

}


.color.active {

    outline: 2px solid #222;

    outline-offset: 3px;

}


/* =========================================
   ACTION BUTTONS
========================================= */

.product-actions {

    display: flex;

    gap: 12px;

    width: 100%;
}


.product-actions .btn {

    flex: 1;

    text-align: center;

    white-space: nowrap;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .product {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .product-image {

        height: 520px;

    }

    .product-slide {

        height: 520px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .product-image {

        height: 390px;

        border-radius: 16px;

    }


    .product-slide {

        height: 390px;

        padding: 25px;

    }


    .product-prev,
    .product-next {

        width: 38px;
        height: 38px;

        font-size: 16px;

    }


    .product-prev {

        left: 10px;

    }


    .product-next {

        right: 10px;

    }


    .product-dots {

        bottom: 12px;

    }


    .product-actions {

        flex-direction: column;

    }


    .product-actions .btn {

        width: 100%;

    }

}
/* =========================
   Footer
========================= */

/* =========================
   Footer
========================= */

footer {
    background: #102622;
    color: #ffffff;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 20px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-grid p {
    color: #b8d0cc;
    line-height: 1.6;
    margin: 0 0 15px;
}

.footer-grid h4 {
    margin: 0 0 18px;
    color: #8fa8a3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    color: #c4d5d2;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #8fa8a3;
    font-size: 13px;
}


/* =========================
   Mobile Footer
========================= */

@media (max-width: 768px) {

    .footer-inner {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
/* =====================================================
   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, 0.25);
  border-radius: 50%;

  color: #fff;
  background: rgba(255, 255, 255, 0.03);

  text-decoration: none;
  font-size: 18px;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 480px) {

  .footer-social {
    gap: 14px;
    margin-top: 20px;
    padding: 15px 0;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    position: relative;
    top: -15px;
}

/* Mobile */
@media (max-width: 768px) {
    .logo img {
        top: -10px;
    }
}