/* =======================================
MEDORA SHOE STUDIO
Main Stylesheet
Designed by Shabz Studio
======================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}
a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/*==========================
COLOR VARIABLES
==========================*/

:root{
    --primary:#111111;
    --secondary:#FFD400;
    --white:#ffffff;
    --gray:#f6f6f6;
    --text:#2b2b2b;
    --border:#e5e5e5;
    --shadow:0 8px 25px rgba(0,0,0,.08);
}

/*==========================
BUTTON
==========================*/

.btn{
    display:inline-block;
    padding:14px 30px;
    background:var(--secondary);
    color:#111;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#111;
    color:#fff;
}

/*==================================
HEADER
==================================*/

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    
}

.header-main{
    background:#111;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}
/* FIXED: was declared 3x (grid, then flex twice). Merged into one clean flex layout. */
.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
}

/* FIXED: was declared twice (width:190px, then overridden to height:70px/width:auto).
   Merged into the final intended size. */
.logo img{
    width:auto;
    height:70px;
    display:block;
}

/* FIXED: was declared twice — first block had "flex:1" (flex-basis:0), which silently
   overrode the fixed width:520px set in the second block and stretched the search bar
   to fill the header, breaking the layout. Removed flex:1 and merged into one block. */

.search-box{
    width:520px;
    display:flex;
    max-width:650px;
    height:52px;
    border:2px solid #FFD400;
    background:#fff;
}
.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:0 20px;
    font-size:15px;
}

.search-box button{
    width:65px;
    border:none;
    background:#FFD400;
    cursor:pointer;
    font-size:18px;
}

.search-box button:hover{
    background:#111;
    color:#fff;
}

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

.header-icons a{
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:14px;
   color:#fff;
    position:relative;
}

.header-icons i{
    font-size:28px;
    margin-bottom:6px;
}

.header-icons a:hover{
    color:#FFD400;
}

.header-icons small{
    position:absolute;
    top:-5px;
    right:-8px;
    background:red;
    color:#fff;
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
}

.cart-count{
    position:absolute;
    top:-7px;
    right:-10px;
    width:20px;
    height:20px;
    background:red;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:11px;
    font-weight:700;
}

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

/* FIXED: was declared twice (both display:none, second added more props). Merged. */
.menu-btn{
    display:none;
    font-size:30px;
    background:none;
    border:none;
    cursor:pointer;
    color:#111;
}

.mobile-menu{
    position:fixed;
    left:-100%;
    top:0;
    width:300px;
    height:100%;
    background:#111;
    transition:.35s;
    z-index:99999;
    padding:25px;
    overflow:auto;
}

.mobile-menu.active{
    left:0;
}

.mobile-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.mobile-top img{
    width:180px;
}

.mobile-top button{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu ul{
    padding:0;
}

.mobile-menu li{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu a{
    display:block;
    padding:18px 0;
    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.mobile-menu a:hover{
    color:#FFD400;
    padding-left:10px;
}

.menu-overlay{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/*==================================
NAVIGATION
==================================*/

.main-nav{
    border-top:1px solid #eee;
}

.main-nav ul{
    display:flex;
    justify-content:center;
    gap:35px;
}

.main-nav li{
    position:relative;
}

.main-nav a{
    display:block;
    padding:18px 0;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.main-nav a:hover{
    color:#FFD400;
}

.main-nav li::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:#FFD400;
    transition:.3s;
}

.main-nav li:hover::after{
    width:100%;
}

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

.hero-slider{
    width:100%;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    height:650px;
}

.heroSwiper img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#111;
    color:#FFD400;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px;
    font-weight:700;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.6;
}

.swiper-pagination-bullet-active{
    background:#FFD400;
    opacity:1;
}

/*==============================
CATEGORY
==============================*/

.category-slider{
    
    background:#fff;
    padding:25px 0 20px;
}

.category-wrapper{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.category-item{
    text-align:center;
    cursor:pointer;
    transition:.3s;
}

.category-item img{
    width:95px;
    height:95px;
    object-fit:cover;
    border-radius:50%;
    background:#f7f7f7;
    border:3px solid #eee;
    padding:12px;
    transition:.3s;
}

.category-item:hover img{
    transform:translateY(-10px);
    border-color:#FFD400;
}

.category-item p{
    margin-top:12px;
    font-weight:600;
    font-size:15px;
}

/* =========================================
   MEDORA — MOST WANTED PRODUCT STACK
========================================= */

.most-wanted{
    padding:80px 0;
    background:#fff;
    overflow:hidden;
}

.most-wanted .section-title{
    text-align:center;
    margin-bottom:45px;
}

.most-wanted .eyebrow{
    display:block;
    color:#a88837;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:10px;
}

.most-wanted .section-title h2{
    font-size:42px;
    margin-bottom:8px;
}

.most-wanted .section-title p{
    color:#777;
}


/* =========================================
   STACK AREA
========================================= */

.wanted-stack{
    position:relative;
    width:100%;
    max-width:1050px;
    height:560px;
    margin:0 auto;
}


/* =========================================
   PRODUCT CARD
========================================= */

.wanted-card{
    position:absolute;
    left:50%;
    top:0;

    width:430px;
    height:500px;

    background:#f6f6f6;
    border-radius:24px;

    overflow:hidden;

    transform:
        translateX(-50%)
        scale(.86)
        rotate(-5deg);

    opacity:0;

    transition:
        transform .7s ease,
        opacity .7s ease,
        z-index .7s;

    box-shadow:0 20px 50px rgba(0,0,0,.12);
}


/* ACTIVE CARD */

.wanted-card.active{
    opacity:1;
    z-index:5;

    transform:
        translateX(-50%)
        scale(1)
        rotate(0deg);

    box-shadow:0 25px 60px rgba(0,0,0,.18);
}


/* SECOND CARD */

.wanted-card:nth-child(2){
    opacity:1;
    z-index:4;

    transform:
        translateX(-42%)
        scale(.92)
        rotate(6deg);
}


/* THIRD CARD */

.wanted-card:nth-child(3){
    opacity:1;
    z-index:3;

    transform:
        translateX(-34%)
        scale(.84)
        rotate(-8deg);
}


/* FOURTH CARD */

.wanted-card:nth-child(4){
    opacity:1;
    z-index:2;

    transform:
        translateX(-26%)
        scale(.76)
        rotate(10deg);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.wanted-card img{
    width:100%;
    height:300px;

    object-fit:contain;

    padding:30px;

    display:block;
}


/* =========================================
   CATEGORY LABEL
========================================= */

.wanted-category{
    position:absolute;

    top:18px;
    left:18px;

    padding:7px 14px;

    background:#111;
    color:#FFD400;

    border-radius:30px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;

    z-index:5;
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.wanted-info{
    padding:5px 30px 25px;
}

.wanted-info h3{
    font-size:25px;
    margin-bottom:5px;
}

.wanted-info p{
    color:#777;
    font-size:14px;
    margin-bottom:10px;
}

.wanted-price{
    font-size:23px;
    font-weight:700;
    margin-bottom:15px;
}


/* =========================================
   SHOP BUTTON
========================================= */

.wanted-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:11px 20px;

    background:#111;
    color:#fff;

    border-radius:30px;

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

    transition:.3s;
}

.wanted-btn:hover{
    background:#FFD400;
    color:#111;
}


/* =========================================
   CONTROLS
========================================= */

.wanted-controls{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:25px;

    margin-top:5px;
}

.wanted-controls button{
    width:42px;
    height:42px;

    border:1px solid #ddd;
    background:#fff;

    border-radius:50%;

    cursor:pointer;

    transition:.3s;
}

.wanted-controls button:hover{
    background:#111;
    color:#FFD400;
}

.wanted-dots{
    display:flex;
    gap:7px;
}

.wanted-dot{
    width:7px;
    height:7px;

    background:#ddd;

    border-radius:50%;
}

.wanted-dot.active{
    width:22px;
    border-radius:10px;
    background:#111;
}


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

@media(max-width:768px){

    .most-wanted{
        padding:55px 0;
    }

    .most-wanted .section-title{
        margin-bottom:30px;
    }

    .most-wanted .section-title h2{
        font-size:30px;
    }

    .most-wanted .section-title p{
        font-size:14px;
    }

    .wanted-stack{
        height:430px;
        max-width:100%;
    }

    .wanted-card{
        width:290px;
        height:390px;
        border-radius:20px;
    }
.wanted-card.stack-two{
    opacity:1;
    z-index:4;
    transform:
        translateX(-42%)
        scale(.92)
        rotate(6deg);
}

.wanted-card.stack-three{
    opacity:1;
    z-index:3;
    transform:
        translateX(-34%)
        scale(.84)
        rotate(-8deg);
}

.wanted-card.stack-four{
    opacity:1;
    z-index:2;
    transform:
        translateX(-26%)
        scale(.76)
        rotate(10deg);
}
    .wanted-card img{
        height:220px;
        padding:20px;
    }

    .wanted-info{
        padding:5px 20px 20px;
    }

    .wanted-info h3{
        font-size:20px;
    }

    .wanted-info p{
        font-size:13px;
    }

    .wanted-price{
        font-size:19px;
        margin-bottom:10px;
    }

    .wanted-btn{
        padding:9px 16px;
        font-size:12px;
    }

    .wanted-category{
        top:12px;
        left:12px;
        font-size:9px;
        padding:6px 10px;
    }

    .wanted-controls{
        margin-top:0;
        gap:18px;
    }

}
/*==========================
FEATURED COLLECTIONS
==========================*/

.premium-collections{
    padding:35px 0 70px;
    background:#fff;
}
.premium-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.premium-large{
    position:relative;
    height:760px;
    overflow:hidden;
    border-radius:25px;
}
.premium-large img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
    object-position:center;
}

.premium-large:hover img{
    transform:scale(1.08);
}

.premium-small{
    display:grid;
    gap:25px;
}

.premium-card{
    position:relative;
    height:367px;
    overflow:hidden;
    border-radius:25px;
}

.premium-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
    object-position:center;
}

.premium-card:hover img{
    transform:scale(1.08);
}

.premium-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.15));
    color:#fff;
}

.premium-overlay span{
    display:inline-block;
    width:max-content;
    padding:8px 18px;
    background:#FFD400;
    color:#111;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.premium-overlay h2{
    font-size:52px;
    margin-bottom:15px;
}

.premium-overlay h3{
    font-size:34px;
    margin-bottom:15px;
}

.premium-overlay p{
    font-size:18px;
    margin-bottom:25px;
    color:#ddd;
}

.premium-overlay a{

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

/*======================
OFFER BANNER
======================*/


    .offer-banner{
padding-top:20px;
padding-bottom:70px;
}



.offer-content{
background:#111;
border-radius:25px;
display:flex;
justify-content:space-between;
align-items:center;
padding:45px;
color:#fff;
}

.offer-content h5{
    color:#FFD400;
    margin-bottom:15px;
    letter-spacing:2px;
}

.offer-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.offer-content p{
    margin-bottom:30px;
    font-size:18px;
    color:#ddd;
}

.offer-content img{
    width:420px;
}

/* =========================
   TRENDING NOW
========================= */

.trending-products{
    padding:55px 0 65px;
    background:#fff;
}

.trending-title{
    text-align:left;
    margin-bottom:25px;
}

.trending-title h2{
    font-size:32px;
    margin-bottom:6px;
}

.trending-title p{
    color:#666;
    font-size:15px;
}

.trendingSwiper{
    overflow:hidden;
    padding:5px 2px 15px;
}

.trendingSwiper .swiper-slide{
    height:auto;
}


/* PRODUCT CARD */

.trending-card{
    position:relative;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.trending-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}


/* IMAGE */

.trending-card img{
    width:100%;
    height:175px;
    object-fit:contain;
    display:block;
    padding:15px;
}


/* DISCOUNT */

.trending-discount{
    position:absolute;
    top:10px;
    left:10px;
    background:#FFD400;
    color:#111;
    padding:5px 9px;
    border-radius:20px;
    font-size:10px;
    font-weight:700;
    z-index:2;
}


/* WISHLIST */

.trending-wishlist{
    position:absolute;
    top:10px;
    right:10px;

    width:30px;
    height:30px;

    border:1px solid #ddd;
    background:#fff;
    border-radius:50%;

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

    cursor:pointer;
    z-index:2;
}


/* INFO */

.trending-info{
    padding:10px 12px 13px;
}

.trending-info h3{
    font-size:15px;
    margin:0 0 10px;
    line-height:1.25;
    font-weight:600;
}


/* PRICE */

.trending-price{
    display:flex;
    align-items:center;
    gap:7px;
}

.trending-price span{
    font-size:16px;
    font-weight:700;
}

.trending-price del{
    color:#999;
    font-size:11px;
}


/* PLUS BUTTON */

.trending-add{
    margin-left:auto;

    width:30px;
    height:30px;

    border-radius:50%;
    background:#111;
    color:#FFD400;

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

    font-size:20px;
    text-decoration:none;
}


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

@media(max-width:768px){

    .trending-products{
        padding:40px 0 50px;
    }

    .trending-title{
        margin-bottom:18px;
    }

    .trending-title h2{
        font-size:26px;
    }

    .trending-title p{
        font-size:14px;
    }

    .trendingSwiper{
        padding-left:12px;
        padding-right:12px;
    }

    .trending-card img{
        height:135px;
        padding:10px;
    }

    .trending-info{
        padding:8px 10px 10px;
    }

    .trending-info h3{
        font-size:13px;
        min-height:32px;
        margin-bottom:7px;
    }

    .trending-price span{
        font-size:15px;
    }

    .trending-price del{
        font-size:10px;
    }

    .trending-add{
        width:28px;
        height:28px;
    }

}
/*=========================
BRANDS
=========================*/

.brands{
    padding:50px 0;
    background:#f7f7f7;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
    align-items:center;
}

.brand-grid img{
    width:130px;
    margin:auto;
    filter:grayscale(100%);
    opacity:.7;
    transition:.3s;
}

.brand-grid img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

/*==========================
WHY CHOOSE US
==========================*/

.why-us{
    padding:90px 0;
    background:#111;
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#1b1b1b;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #2c2c2c;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#FFD400;
}

.why-card i{
    font-size:52px;
    color:#FFD400;
    margin-bottom:25px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#ccc;
    line-height:28px;
}
/* =========================
   STORE LOCATION
========================= */

.store-locations{
    padding:75px 0;
    background:#f7f7f7;
}

.store-title{
    text-align:center;
    margin-bottom:40px;
}

.store-title span{
    display:block;
    color:#a88837;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:8px;
}

.store-title h2{
    font-size:38px;
    margin-bottom:8px;
}

.store-title p{
    color:#666;
    font-size:16px;
}


/* MAIN CARD */

.store-location-card{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}


/* MAP */

.store-map{
    min-height:420px;
}

.store-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:0;
    display:block;
}


/* DETAILS */

.store-details{
    padding:50px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.store-label{
    color:#a88837;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:12px;
}

.store-details h3{
    font-size:32px;
    margin-bottom:15px;
}

.store-description{
    color:#666;
    line-height:1.6;
    margin-bottom:28px;
}


/* DETAIL ITEM */

.store-detail-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.store-detail-item > i{
    color:#a88837;
    font-size:18px;
    margin-top:4px;
    width:20px;
}

.store-detail-item strong{
    display:block;
    margin-bottom:5px;
    font-size:14px;
}

.store-detail-item p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.5;
}


/* DIRECTIONS */

.direction-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#111;
    color:#fff;

    padding:14px 24px;
    border-radius:30px;

    text-decoration:none;
    font-size:14px;
    font-weight:600;

    width:max-content;
    margin-top:10px;

    transition:.3s;
}

.direction-btn:hover{
    background:#FFD400;
    color:#111;
}


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

@media(max-width:768px){

    .store-locations{
        padding:50px 0;
    }

    .store-title{
        margin-bottom:25px;
    }

    .store-title h2{
        font-size:28px;
    }

    .store-title p{
        font-size:14px;
    }

    .store-location-card{
        grid-template-columns:1fr;
        border-radius:18px;
    }

    .store-map{
        min-height:260px;
    }

    .store-map iframe{
        min-height:260px;
    }

    .store-details{
        padding:30px 22px;
    }

    .store-details h3{
        font-size:25px;
    }

    .direction-btn{
        width:100%;
    }

}
/*=========================
FOOTER
=========================*/

.footer{
    background:#0d0d0d;
    color:#fff;
    padding:80px 0 30px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
    margin-bottom:50px;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-col p{
    color:#bbb;
    line-height:30px;
    margin-bottom:15px;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:22px;
    color:#FFD400;
}

.footer-col ul{
    padding:0;
}

.footer-col li{
    margin-bottom:14px;
}

.footer-col a{
    color:#bbb;
    transition:.3s;
}

.footer-col a:hover{
    color:#FFD400;
    padding-left:6px;
}

.footer-col i{
    color:#FFD400;
    margin-right:10px;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-links a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #333;
    border-radius:50%;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    background:#FFD400;
    color:#111;
}

.payment-icons{
    display:flex;
    justify-content:center;
    gap:25px;
    padding:35px 0;
    flex-wrap:wrap;
}

.payment-icons img{
    height:38px;
    background:#fff;
    padding:8px 15px;
    border-radius:8px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:25px;
    border-top:1px solid #222;
    color:#999;
    font-size:15px;
}

.footer-bottom a{
    color:#FFD400;
    font-weight:600;
}

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

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.whatsapp-btn,
.call-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.3s;
    animation:float 2s ease-in-out infinite;
}

.whatsapp-btn{
    background:#25D366;
       bottom:95px;
}

.call-btn{
    background:#FFD400;
    color:#111;
    bottom:25px;
}

.whatsapp-btn:hover{
    transform:scale(1.12);
}

.call-btn:hover{
    transform:scale(1.12);
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

.mobile-bottom-bar{
    display:none;
}

@media(max-width:768px){

.header-main{
    border-bottom:12px solid #fff;
      padding:10px 0;
}

.main-nav{
    display:none;

}
.header-wrapper{
    display:grid;
    grid-template-columns:40px 1fr 80px;
    align-items:center;
    gap:10px;
}
.heroSwiper{
    height:320px;
}

.heroSwiper img{
    height:320px;
    object-fit:cover;
}
.menu-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
}

.logo{
    display:flex;
    justify-content:center;
    align-items:center;
}


.logo img{
    width:130px;
    height:auto;
}
.search-box{
    display:none;
}

.header-icons{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:15px;
}

.header-icons a{
    font-size:24px;
}

.header-icons a:last-child{
    display:block;
}

.header-icons a:nth-child(3){
    display:none;
}
.utility-bar{
    display:none;
}
.premium-large{
    height:320px;
}

.premium-card{
    height:260px;
}

.premium-overlay{
    padding:20px;
    justify-content:flex-end;
}

.premium-overlay span{
    font-size:10px;
    padding:4px 12px;
    margin-bottom:8px;
}

.premium-overlay h2{
    font-size:34px;
    line-height:1.1;
    margin-bottom:8px;
}

.premium-overlay h3{
    font-size:26px;
    line-height:1.1;
    margin-bottom:8px;
}

.premium-overlay p{
    font-size:14px;
    line-height:1.4;
    margin-bottom:12px;
}

.premium-overlay a{
    font-size:15px;
}
.whatsapp-btn{
    right:18px;
    bottom:95px;
    width:58px;
    height:58px;
}

.call-btn{
    right:18px;
    bottom:25px;
    width:58px;
    height:58px;
}

}
