/* =======================================
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{
    width:100%;
    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;

}
/*==================================
TOP OFFER BAR
==================================*/

.offer-bar{

    background:#FFD400;

    color:#111;

    padding:10px 0;

    font-size:14px;

    font-weight:600;

    overflow:hidden;

}

.offer-slider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

}

/*==================================
UTILITY BAR
==================================*/

.utility-bar{

    background:#111;

    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.utility-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.left-links,

.right-links{

    display:flex;

    gap:25px;

}

.right-links a:hover,

.left-links a:hover{

    color:#FFD400;

}

/*==================================
HEADER
==================================*/

.main-header{

    position:sticky;

    top:0;

    z-index:999;

    background:#fff;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.header-main{

    padding:18px 0;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:70px;

    width:auto;

}

.menu-btn{

    display:none;

}

.search-box{

    width:520px;

    display:flex;

    border:2px solid #eee;

    border-radius:50px;

    overflow:hidden;

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:15px 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:30px;

}

.header-icons a{

    display:flex;

    flex-direction:column;

    align-items:center;

    position:relative;

    font-size:13px;

}

.header-icons i{

    font-size:22px;

    margin-bottom:5px;

}

.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;

}

/*==================================
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{
    padding:50px 0;
    background:#fff;
}

.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:120px;
    height:120px;
    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:80px 0;

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:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

position:relative;

transition:.4s;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

height:300px;

object-fit:cover;

}

.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:20px;

}

.product-info h3{

font-size:20px;

margin-bottom:10px;

}

.rating{

color:#FFD400;

margin-bottom:15px;

}

.price{

display:flex;

gap:12px;

align-items:center;

margin-bottom:20px;

}

.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:90px 0;

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;

}

.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;

}

.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{

color:#FFD400;

font-weight:700;

font-size:18px;

}
/*======================
OFFER BANNER
======================*/

.offer-banner{

padding:90px 0;

}

.offer-content{

background:#111;

border-radius:25px;

display:flex;

justify-content:space-between;

align-items:center;

padding:70px;

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:90px 0;

background:#fff;

}

.trendingSwiper{

padding:20px 5px 50px;

}
/*=========================
BRANDS
=========================*/

.brands{

padding:90px 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;

}

.call-btn{

background:#FFD400;

color:#111;

}

.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){

.mobile-bottom-bar{

display:flex;

position:fixed;

bottom:0;

left:0;

width:100%;

background:#111;

justify-content:space-around;

padding:12px 0;

z-index:99999;

box-shadow:0 -5px 20px rgba(0,0,0,.2);

}

.mobile-bottom-bar a{

display:flex;

flex-direction:column;

align-items:center;

color:#fff;

font-size:12px;

}

.mobile-bottom-bar i{

font-size:22px;

margin-bottom:5px;

color:#FFD400;

}

}