/*
=========================================
MuscleCash Ecommerce
Bootstrap 5.3
style.css
=========================================
*/

/*=======================================
Google Font
=======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=======================================
Variables
=======================================*/

:root{

--primary:#16a34a;
--primary-dark:#0f8d3d;
--secondary:#111827;
--light:#f8f9fa;
--gray:#6c757d;
--border:#ececec;
--white:#ffffff;
--danger:#ef4444;

--radius:12px;

--shadow:0 8px 25px rgba(0,0,0,.08);

--transition:.35s ease;

}

/*=======================================
Reset
=======================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

font-size:15px;

color:#333;

background:#fff;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

padding:0;

margin:0;

list-style:none;

}

section{

position:relative;

}

/*=======================================
Scrollbar
=======================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#efefef;

}

/*=======================================
Common Heading
=======================================*/

.section-title h2{

font-size:34px;

font-weight:700;

color:#111;

margin-bottom:8px;

}

.section-title p{

color:#777;

font-size:15px;

}

/*=======================================
Buttons
=======================================*/

.btn{

border-radius:40px;

padding:12px 26px;

font-weight:600;

transition:.3s;

}

.btn-success{

background:var(--primary);

border:none;

}

.btn-success:hover{

background:var(--primary-dark);

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(22,163,74,.3);

}

.btn-outline-success{

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline-success:hover{

background:var(--primary);

color:#fff;

}

/*=======================================
Top Header
=======================================*/

.top-header{

background:#111;

color:#fff;

font-size:13px;

}

.top-info li{

margin-right:22px;

}

.top-info i{

color:#22c55e;

margin-right:6px;

}

.top-links li{

margin-left:18px;

}

.top-links a{

color:#fff;

}

.top-links a:hover{

color:#22c55e;

}

/*=======================================
Main Header
=======================================*/

.main-header{

background:#fff;

box-shadow:0 5px 18px rgba(0,0,0,.05);

position:relative;

z-index:99;

}

.logo img{

max-height:65px;

}

/*=======================================
Search
=======================================*/

.search-box .form-control{

height:55px;

border-radius:50px 0 0 50px;

padding-left:22px;

border:2px solid #e8e8e8;

box-shadow:none;

}

.search-box .btn{

border-radius:0 50px 50px 0;

width:70px;

font-size:18px;

}

/*=======================================
Header Icons
=======================================*/

.header-icons{

gap:28px;

align-items:center;

}

.header-icons a{

color:#333;

display:flex;

align-items:center;

gap:8px;

font-size:15px;

font-weight:500;

position:relative;

}

.header-icons a:hover{

color:var(--primary);

}

.header-icons i{

font-size:22px;

}

.cart-btn{

position:relative;

}

.cart-btn .badge{

position:absolute;

top:-10px;

right:-12px;

}

/*=======================================
Navbar
=======================================*/

.navbar{

padding:14px 0;

}

.category-btn{

border-radius:50px;

padding:12px 20px;

font-weight:600;

}

.category-btn i{

margin-right:8px;

}

.navbar-nav{

gap:18px;

}

.navbar-nav .nav-link{

font-weight:600;

color:#222;

position:relative;

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .nav-link::after{

content:'';

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:var(--primary);

transition:.3s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

/*=======================================
Hero Slider
=======================================*/

.hero-section{

background:#f4fff7;

padding:70px 0;

overflow:hidden;

}

.carousel-item{

padding:40px 0;

}

.hero-section h5{

color:var(--primary);

font-size:22px;

font-weight:600;

margin-bottom:15px;

}

.hero-section h1{

font-size:62px;

font-weight:800;

line-height:1.1;

margin-bottom:20px;

}

.hero-section h1 span{

color:var(--primary);

}

.hero-section p{

font-size:18px;

color:#666;

max-width:480px;

margin-bottom:30px;

}

.hero-btn{

display:flex;

gap:15px;

}

.hero-product{

animation:float 4s ease-in-out infinite;

}

/*=======================================
Hero Animation
=======================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

/*=======================================
Carousel
=======================================*/

.carousel-control-next,

.carousel-control-prev{

width:55px;

height:55px;

background:#fff;

border-radius:50%;

top:45%;

box-shadow:var(--shadow);

opacity:1;

}

.carousel-control-prev{

left:25px;

}

.carousel-control-next{

right:25px;

}

.carousel-control-next-icon,

.carousel-control-prev-icon{

filter:invert(1);

}

/*=======================================
Features
=======================================*/

.features{

background:#fff;

}

.feature-box{

display:flex;

align-items:center;

gap:18px;

padding:24px;

background:#fff;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.35s;

height:100%;

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box i{

width:65px;

height:65px;

background:#e8fff0;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

color:var(--primary);

}

.feature-box h6{

font-size:17px;

font-weight:700;

margin-bottom:4px;

}

.feature-box p{

margin:0;

color:#777;

font-size:14px;

}
/*=======================================
CATEGORY SECTION
=======================================*/

.category-section{
    background:#fff;
}

.category-item{
    text-align:center;
    transition:all .35s ease;
    cursor:pointer;
}

.category-img{
    width:130px;
    height:130px;
    margin:auto;
    border-radius:50%;
    background:#f8f8f8;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:all .35s ease;
    border:2px solid transparent;
    overflow:hidden;
}

.category-img img{
    max-height:85px;
    transition:.4s;
}

.category-item h6{
    margin-top:18px;
    font-weight:600;
    font-size:15px;
}

.category-item:hover .category-img{
    background:#ecfff3;
    border-color:var(--primary);
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(22,163,74,.15);
}

.category-item:hover img{
    transform:scale(1.08);
}

/*=======================================
OFFER BANNERS
=======================================*/

.offer-banner{
    background:#fff;
}

.offer-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    min-height:250px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.4s;
}

.offer-card img{
    max-height:170px;
    transition:.4s;
}

.offer-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.offer-card:hover img{
    transform:scale(1.08);
}

.offer-content span{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.offer-content h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.offer-content p{
    color:#666;
    margin-bottom:20px;
}

.offer-card.green{
    background:linear-gradient(135deg,#16a34a,#4ade80);
    color:#fff;
}

.offer-card.green p{
    color:#fff;
}

.offer-card.white{
    background:#fff;
    border:1px solid #ececec;
}

.offer-card.dark{
    background:#111827;
    color:#fff;
}

.offer-card.dark p{
    color:#ddd;
}

.offer-icon{
    font-size:90px;
    opacity:.15;
}

/*=======================================
SECTION HEADINGS
=======================================*/

.product-section{
    background:#fff;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
}

.section-title p{
    color:#777;
}

/*=======================================
PRODUCT CARD
=======================================*/

.product-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.product-image{

    position:relative;

    background:#fafafa;

    padding:35px;

    text-align:center;

}

.product-image img{

    height:220px;

    object-fit:contain;

    transition:.35s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

.product-card .badge{

    position:absolute;

    top:15px;

    left:15px;

    z-index:2;

    border-radius:30px;

    padding:8px 14px;

    font-size:11px;

    letter-spacing:.5px;

}

.product-body{

    padding:22px;

}

.product-body small{

    color:#888;

    display:block;

    margin-bottom:6px;

}

.product-body h5{

    font-size:17px;

    font-weight:600;

    line-height:1.5;

    margin-bottom:12px;

    min-height:52px;

}

.rating{

    color:#ffb400;

    font-size:15px;

    margin-bottom:14px;

}

.rating span{

    color:#777;

    margin-left:8px;

}

.price{

    font-size:24px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:18px;

}

.price del{

    color:#999;

    font-size:15px;

    margin-left:8px;

    font-weight:400;

}

.product-card .btn{

    border-radius:12px;

    padding:12px;

}

/*=======================================
PRODUCT BUTTON HOVER
=======================================*/

.product-card .btn:hover{

    transform:translateY(-2px);

}

/*=======================================
DEAL SECTION
=======================================*/

.deal-section{

    background:#f8fff9;

}

.deal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.deal-header h2{

    font-size:36px;

    font-weight:700;

}

.deal-header p{

    color:#666;

}

.countdown{

    display:flex;

    gap:18px;

}

.countdown div{

    width:90px;

    height:90px;

    background:#fff;

    border-radius:15px;

    text-align:center;

    display:flex;

    flex-direction:column;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    font-size:13px;

    font-weight:500;

}

.countdown span{

    font-size:30px;

    color:var(--primary);

    font-weight:700;

}

.deal-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    overflow:hidden;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.deal-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.deal-card img{

    height:180px;

    object-fit:contain;

    margin:20px auto;

    transition:.35s;

}

.deal-card:hover img{

    transform:scale(1.08);

}

.discount{

    position:absolute;

    top:18px;

    left:18px;

    background:#ef4444;

    color:#fff;

    padding:8px 14px;

    border-radius:25px;

    font-size:12px;

    font-weight:600;

}

.deal-card h5{

    font-size:18px;

    font-weight:600;

    margin-bottom:10px;

}

.deal-card h4{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

}

/*=======================================
COMMON HOVER EFFECT
=======================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-10px);

}

.shadow-hover:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/*=======================================
CUSTOM BOOTSTRAP 5-COLUMN
=======================================*/

@media(min-width:992px){

.col-lg-2-4{

    flex:0 0 20%;

    max-width:20%;

}

}
/*==================================================
WHY CHOOSE US
==================================================*/

.why-section{
    background:#fff;
}

.why-box{
    background:#fff;
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    height:100%;
}

.why-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.why-box i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#eafcf0;
    color:var(--primary);
    font-size:32px;
    margin-bottom:20px;
}

.why-box h6{
    font-size:18px;
    font-weight:600;
}

.why-box p{
    color:#777;
    margin:0;
}

/*==================================================
EXPLORE BY GOAL
==================================================*/

.goal-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:420px;
}

.goal-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.goal-card:hover img{
    transform:scale(1.12);
}

.goal-content{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:#fff;
}

.goal-content h4{
    font-size:28px;
    font-weight:700;
}

.goal-content p{
    color:#eee;
    margin-bottom:18px;
}

/*==================================================
NEW ARRIVALS
==================================================*/

.new-arrivals{
    background:#f8f9fa;
}

/*==================================================
BRANDS
==================================================*/

.brand-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    border:1px solid #eee;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:130px;
}

.brand-box img{
    max-height:60px;
    filter:grayscale(100%);
    transition:.35s;
}

.brand-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.brand-box:hover img{
    filter:none;
}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:20px;
}

.customer{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:25px;
}

.customer img{
    width:60px;
    height:60px;
    object-fit:cover;
}

.customer h6{
    margin:0;
    font-weight:600;
}

.customer small{
    color:#888;
}

/*==================================================
BLOG
==================================================*/

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card img{
    height:240px;
    width:100%;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-content small{
    color:var(--primary);
    font-weight:600;
}

.blog-content h4{
    font-size:22px;
    margin:15px 0;
    font-weight:700;
}

.blog-content p{
    color:#666;
}

/*==================================================
NEWSLETTER
==================================================*/

.newsletter-section{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    padding:70px 0;
    color:#fff;
}

.newsletter-section h2{
    font-weight:700;
    margin-bottom:10px;
}

.newsletter-form .form-control{
    height:60px;
    border:none;
    border-radius:50px 0 0 50px;
    padding-left:25px;
}

.newsletter-form .btn{
    border-radius:0 50px 50px 0;
    padding:0 35px;
}

/*==================================================
INSTAGRAM
==================================================*/

.instagram-section img{
    border-radius:15px;
    transition:.35s;
}

.instagram-section img:hover{
    transform:scale(1.05);
}

/*==================================================
FOOTER
==================================================*/

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 30px;
}

.footer h5{
    margin-bottom:25px;
    font-weight:700;
}

.footer p{
    color:#cbd5e1;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#cbd5e1;
}

.footer ul li a:hover{
    color:#22c55e;
    padding-left:6px;
}

.footer-contact li{
    color:#cbd5e1;
}

.footer-contact i{
    color:#22c55e;
    width:25px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#1f2937;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.35s;
}

.social-icons a:hover{
    background:var(--primary);
}

.footer hr{
    border-color:#374151;
    margin:40px 0 25px;
}

/*==================================================
FLOATING BUTTONS
==================================================*/

.whatsapp-btn,
.scroll-top{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:.35s;
}

.whatsapp-btn{
    left:25px;
    bottom:25px;
    background:#25D366;
    font-size:30px;
}

.scroll-top{
    right:25px;
    bottom:25px;
    border:none;
    background:var(--primary);
    font-size:22px;
}

.whatsapp-btn:hover,
.scroll-top:hover{
    transform:translateY(-6px);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:50px 0;
}

.hero-section h1{
    font-size:42px;
}

.hero-btn{
    justify-content:center;
}

.header-icons{
    justify-content:center;
    margin-top:20px;
}

.section-title,
.deal-header{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.countdown{
    justify-content:center;
}

.goal-card{
    height:350px;
}

}

@media(max-width:768px){

.top-header{
    display:none;
}

.search-box{
    margin:20px 0;
}

.hero-section h1{
    font-size:34px;
}

.hero-section p{
    font-size:15px;
}

.section-title h2{
    font-size:28px;
}

.offer-card{
    flex-direction:column;
    text-align:center;
    gap:25px;
}

.offer-card img{
    max-height:140px;
}

.category-img{
    width:100px;
    height:100px;
}

.category-img img{
    max-height:65px;
}

.goal-card{
    height:300px;
}

.newsletter-section{
    text-align:center;
}

.newsletter-form{
    margin-top:25px;
}

.footer{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}

@media(max-width:576px){

.hero-section h1{
    font-size:30px;
}

.btn{
    padding:10px 18px;
}

.countdown div{
    width:70px;
    height:70px;
}

.countdown span{
    font-size:22px;
}

.feature-box{
    flex-direction:column;
    text-align:center;
}

.header-icons{
    gap:15px;
    flex-wrap:wrap;
}

.whatsapp-btn,
.scroll-top{
    width:50px;
    height:50px;
}

}