/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================
   GLOBAL CSS
========================================= */

*{
    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;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}


/* =========================================
   NAVBAR
========================================= */

.navbar{
    padding:15px 0;
    background:#fff !important;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#111 !important;
    letter-spacing:1px;
}

.nav-link{
    font-weight:500;
    margin-left:20px;
    transition:.3s;
    position:relative;
}

.nav-link:hover{
    color:#e63946 !important;
}

.nav-link.active{
    color:#e63946 !important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#e63946;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.badge{
    font-size:10px;
    padding:5px 8px;
}


/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    min-height:85vh;
    display:flex;
    align-items:center;
    background:#f8f8f8;
    padding:70px 0;
}

.hero-section h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-section p{
    font-size:18px;
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

.hero-section img{
    width:100%;
    height:500px;
    object-fit:contain;
    animation:floatImage 3s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}


/* =========================================
   SECTION TITLE
========================================= */

.section-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}


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

.page-header{
    background:#f8f8f8;
    padding:70px 0;
}

.page-header h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:10px;
}

.page-header p{
    font-size:18px;
    color:#666;
}
/* =========================================
   CATEGORY SECTION
========================================= */

.category-section{
    background:#fff;
    padding:40px 0;
}

.category-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:center;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    padding-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.category-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#f8f8f8;
    padding:20px;
    transition:.4s;
}

.category-card:hover img{
    transform:scale(1.05);
}

.category-card h4{
    margin-top:18px;
    font-size:22px;
    font-weight:600;
}
.category-card .btn{
    width:85%;
    margin:15px auto 0;
}

/* =========================================
   FEATURED SECTION
========================================= */

.featured-section{
    background:#f8f8f8;
}

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

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:#f8f8f8;
    padding:20px;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-info{
    padding:20px;
}

.product-info h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.product-info p{
    margin-bottom:10px;
}

.product-price{
    color:#e63946;
    font-size:22px;
    font-weight:700;
}

.product-info .btn{
    margin-top:10px;
}


/* =========================================
   OFFER SECTION
========================================= */

.offer-section{
    background:#111;
    color:#fff;
    padding:70px 0;
    margin-top:40px;
}

.offer-section h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.offer-section p{
    font-size:18px;
    margin-bottom:25px;
}

.offer-section .btn-light{
    border-radius:30px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.offer-section .btn-light:hover{
    transform:translateY(-3px);
}
/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-details{
    padding-left:40px;
}

.product-details h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.product-details h3{
    margin:20px 0;
}

.product-details p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}


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

.product-image-box{
    background:#f8f8f8;
    border-radius:20px;
    padding:30px;
    min-height:520px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}


/* =========================================
   PRODUCT CAROUSEL
========================================= */

.carousel-item img{
    width:100%;
    height:460px;
    object-fit:contain;
    padding:20px;
    background:#f8f8f8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,.6);
    border-radius:50%;
    padding:18px;
}


/* =========================================
   PRODUCT RATING
========================================= */

.rating{
    color:#f4b400;
    font-size:18px;
    font-weight:600;
    margin:12px 0;
}


/* =========================================
   SIZE BUTTONS
========================================= */

.size-btn{
    min-width:60px;
    border-radius:30px;
    margin-right:10px;
    margin-bottom:10px;
    transition:.3s;
}

.size-btn:hover{
    transform:translateY(-2px);
}

.size-btn.active{
    background:#111;
    color:#fff;
}


/* =========================================
   PRODUCT ACTION BUTTONS
========================================= */

.product-details .btn{
    margin-top:10px;
    margin-right:10px;
}


/* =========================================
   SUGGESTED PRODUCTS
========================================= */

#suggestedProducts{
    margin-top:20px;
}

#suggestedProducts .product-card{
    height:100%;
}

#suggestedProducts img{
    height:240px;
    object-fit:contain;
    background:#f8f8f8;
    padding:15px;
}
/* =========================================
   CART PAGE
========================================= */

.cart-section{
    background:#fff;
    padding:50px 0;
}

.cart-item{
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:20px;
    transition:.3s;
}

.cart-item:hover{
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.cart-item img{
    width:120px;
    height:120px;
    object-fit:contain;
    background:#f8f8f8;
    border-radius:12px;
    padding:10px;
}

.cart-item h5{
    font-weight:600;
    margin-bottom:10px;
}

.cart-item p{
    margin-bottom:8px;
}

.cart-item .btn{
    min-width:40px;
}

.cart-summary{
    background:#f8f8f8;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}

.cart-summary h3{
    font-weight:700;
    margin-bottom:20px;
}

.cart-summary hr{
    margin:20px 0;
}


/* =========================================
   WISHLIST PAGE
========================================= */

.wishlist-section{
    background:#fff;
    padding:50px 0;
}

.wishlist-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    padding:20px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.wishlist-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.wishlist-card img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#f8f8f8;
    padding:15px;
    margin-bottom:15px;
    transition:.4s;
}

.wishlist-card:hover img{
    transform:scale(1.05);
}

.wishlist-card h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.wishlist-card .product-price{
    font-size:22px;
    font-weight:700;
    color:#e63946;
    margin-bottom:15px;
}

.wishlist-empty{
    padding:60px 20px;
}

.wishlist-empty h3{
    font-weight:700;
    margin-bottom:15px;
}

.wishlist-empty p{
    color:#666;
    margin-bottom:25px;
}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-section{
    background:#f8f8f8;
    padding:60px 0;
}

.checkout-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.checkout-box h3{
    font-weight:700;
    margin-bottom:25px;
}

.checkout-box input,
.checkout-box textarea,
.checkout-box select{
    border-radius:10px;
    padding:12px 15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    width:100%;
    transition:.3s;
}

.checkout-box input:focus,
.checkout-box textarea:focus,
.checkout-box select:focus{
    border-color:#111;
    box-shadow:none;
    outline:none;
}


/* =========================================
   ORDER CONFIRMATION
========================================= */

.order-confirmation{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f8f8;
    padding:60px 0;
}

.confirmation-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    max-width:700px;
    width:100%;
}

.success-icon{
    font-size:70px;
    color:#28a745;
    margin-bottom:20px;
}

.confirmation-box h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.confirmation-box p{
    color:#666;
}

.order-details{
    background:#f8f8f8;
    border-radius:15px;
    padding:20px;
    margin-top:30px;
}


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

.btn{
    border-radius:30px;
    padding:12px 25px;
    font-weight:500;
    transition:.3s;
}

.btn-dark{
    background:#111;
    color:#fff;
    border:none;
}

.btn-dark:hover{
    background:#e63946;
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline-dark{
    border-radius:30px;
}

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

.btn-outline-danger{
    border-radius:30px;
}

.btn-outline-danger:hover{
    transform:translateY(-3px);
}


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

.footer{
    background:#181818;
    color:#fff;
    padding:50px 0 20px;
}

.footer h4,
.footer h5{
    font-weight:600;
    margin-bottom:15px;
}

.footer p{
    color:#ccc;
    margin-bottom:10px;
}

.footer hr{
    border-color:#555;
    margin:25px 0;
}


/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media(max-width:992px){

.hero-section{
    text-align:center;
}

.hero-section h1{
    font-size:42px;
}

.hero-section img{
    height:380px;
}

.product-details{
    padding-left:0;
    margin-top:30px;
}

.product-image-box{
    min-height:420px;
}

.carousel-item img{
    height:360px;
}

.nav-link{
    margin-left:0;
}

.cart-summary{
    position:static;
    margin-top:30px;
}

}


@media(max-width:768px){

.page-header h1{
    font-size:36px;
}

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

.product-card img{
    height:240px;
}

.category-card img{
    height:220px;
}

.wishlist-card img{
    height:220px;
}

.cart-item{
    text-align:center;
}

.cart-item img{
    margin:auto;
    margin-bottom:15px;
}

}


@media(max-width:576px){

.hero-section{
    padding:40px 0;
}

.hero-section h1{
    font-size:32px;
}

.hero-section p{
    font-size:16px;
}

.hero-section img{
    height:280px;
}

.page-header{
    padding:50px 0;
}

.page-header h1{
    font-size:30px;
}

.section-title{
    font-size:26px;
}

.category-card img{
    height:180px;
}

.product-card img{
    height:200px;
}

.product-image-box{
    min-height:300px;
    padding:20px;
}

.carousel-item img{
    height:250px;
}

.product-details h1{
    font-size:28px;
}

.confirmation-box{
    padding:30px 20px;
}

.success-icon{
    font-size:55px;
}

.confirmation-box h1{
    font-size:30px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.product-details .btn{
    width:100%;
    margin-right:0;
}

}
