/* =======================================
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;
}

/*=========================
BEST SELLERS
=========================*/

.best-sellers{
    padding:50px 0 70px;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

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

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
  min-height:340px;

}

.product-card .btn{
    width:100%;
    padding:10px;
    font-size:14px;
    border-radius:25px;
}
.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    height:170px;
    object-fit:contain;
    padding:10px;
    
}
.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:15px;
}
.discount{
    position:absolute;
    left:15px;
    top:15px;
    background:#FFD400;
    padding:6px 12px;
    font-weight:700;
    border-radius:30px;
}

.wishlist{
    position:absolute;
    right:15px;
    top:15px;
    background:#fff;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}


.product-info{
    padding:15px;
}

.product-info h3{
    font-size:18px;
    margin-bottom:8px;
    line-height:1.3;
}
.rating{
    color:#FFD400;
    margin-bottom:15px;
}

.price{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:20px;
     font-size:17px;
}

.new{
    font-size:22px;
    font-weight:700;
}

.old{
    text-decoration:line-through;
    color:#888;
}

.cart-btn{
    display:block;
    background:#111;
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:40px;
    transition:.3s;
}

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

/*==========================
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
=========================*/

.trending-products{
      padding:35px 0 70px;
    background:#fff;
}

.trendingSwiper{
    padding:20px 5px 0px;
}
.section-title{
    margin-bottom:35px;
}

/*=========================
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;
}

/*=========================
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;
}

}
