/* =========================
   Google Font
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   Reset
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
     padding-top: 120px;

}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   Container
========================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   Header
========================= */

.header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:999;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.logo a{
    font-size:30px;
    font-weight:700;
    color:#ff4f81;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover,
.navbar .active{
    color:#ff4f81;
}

.header-icons{
    display:flex;
    gap:22px;
    font-size:20px;
}

.header-icons i{
    cursor:pointer;
    transition:.3s;
}

.header-icons i:hover{
    color:#ff4f81;
}

/* =========================
   Hero
========================= */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/banners/banner.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    padding:0 8%;
}

.hero-content{
    max-width:650px;
    color:#fff;
}

.hero h4{
    font-size:20px;
    color:#ffd166;
    margin-bottom:15px;
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* =========================
   Buttons
========================= */

.btn{
    display:inline-block;
    padding:14px 34px;
    background:#ff4f81;
    color:#fff;
    border-radius:50px;
    transition:.3s;
    margin-right:15px;
}

.btn:hover{
    background:#e6396d;
}

.btn-outline{
    display:inline-block;
    padding:14px 34px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* =========================
   Section
========================= */

section{
    padding:100px 0;
}

/* =========================
   Section Title
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

/* =========================
   Categories
========================= */

.categories{
    background:#fafafa;
}

.category-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.category-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.category-card h3{

    text-align:center;

    padding:18px;

    font-size:22px;

}

/* =========================
   Products
========================= */

.products{

    background:#fff;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-image{

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:330px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    margin-bottom:10px;

    font-size:22px;

}

.price{

    display:block;

    font-size:20px;

    font-weight:700;

    color:#ff4f81;

    margin-bottom:20px;

}

.btn-cart{

    width:100%;

    border:none;

    padding:14px;

    background:#ff4f81;

    color:#fff;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.btn-cart:hover{

    background:#111;
}
/*==========================
Premium Product Card
==========================*/

.product-image{

    position:relative;

}

.sale-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#ff4f81;

    color:#fff;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}

.product-icons{

    position:absolute;

    right:15px;

    top:15px;

    display:flex;

    flex-direction:column;

    gap:12px;

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-icons{

    opacity:1;

}

.product-icons i{

    width:42px;

    height:42px;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.product-icons i:hover{

    background:#ff4f81;

    color:#fff;

}

.rating{

    color:#ffb400;

    margin:10px 0;

    font-size:18px;

}

.price-box{

    display:flex;

    justify-content:center;

    gap:12px;

    align-items:center;

    margin-bottom:20px;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:17px;

}

.price{

    font-size:24px;

    font-weight:700;

    color:#ff4f81;

}
/*==========================
Top Bar
==========================*/

.top-bar{

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 40px;

    background: #111;

    color: #fff;

    font-size: 14px;

    z-index: 1001;

    display: flex;

    align-items: center;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:10px;

}

.top-right{

    display:flex;

    gap:18px;

}

.top-right a{

    color:#fff;

    transition:.3s;

}

.top-right a:hover{

    color:#ff4f81;

}
/*==========================
Search Box
==========================*/

.search-box{

    width:340px;

    display:flex;

    border:2px solid #eee;

    border-radius:50px;

    overflow:hidden;

    background:#fff;

}

.search-box input{

    width:100%;

    border:none;

    outline:none;

    padding:12px 18px;

    font-size:15px;

}

.search-box button{

    width:55px;

    border:none;

    background:#ff4f81;

    color:#fff;

    cursor:pointer;

}

/*==========================
Header Icons
==========================*/

.header-icons{

    display:flex;

    gap:18px;

}

.icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#f7f7f7;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    cursor:pointer;

    transition:.3s;

}

.icon:hover{

    background:#ff4f81;

    color:#fff;

}

.icon span{

    position:absolute;

    top:-6px;

    right:-6px;

    width:20px;

    height:20px;

    background:#111;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

}
/*==========================
Services Section
==========================*/

.services{

    padding:80px 0;

    background:#f1f1f1;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.service-box{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.service-box:hover{

    transform:translateY(-10px);

}

.service-box i{

    font-size:45px;

    color:#4f78ff;

    margin-bottom:20px;

}

.service-box h3{

    margin-bottom:12px;

    font-size:22px;

}

.service-box p{

    color:#666;

    line-height:1.7;

}

/*==========================
New Arrivals
==========================*/

.new-arrivals{

    background:#fafafa;

    padding:100px 0;

}
/*==========================
Offer Banner
==========================*/

.offer-banner{

    background:url("../images/banners/offer-banner.jpg") center center/cover no-repeat;

    height:500px;

    position:relative;

    margin:100px 0;

}

.offer-overlay{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.offer-content{

    color:#fff;

    max-width:700px;

    padding:20px;

}

.offer-content span{

    display:inline-block;

    background:#ff4f81;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

    letter-spacing:1px;

}

.offer-content h2{

    font-size:60px;

    margin-bottom:10px;

    font-weight:700;

}

.offer-content h3{

    font-size:30px;

    margin-bottom:20px;

}

.offer-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}
/*==========================
Trending Products
==========================*/

.trending-products{

    background:#ffffff;

    padding:100px 0;

}

.trending-products .sale-badge{

    background:#111;

}

/*==========================
Newsletter
==========================*/

.newsletter{

    padding:100px 0;

    background:#ff4f81;

}

.newsletter-box{

    max-width:700px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.newsletter-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.newsletter-box p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

}

.newsletter-form{

    display:flex;

    background:#fff;

    border-radius:50px;

    overflow:hidden;

    max-width:600px;

    margin:auto;

}

.newsletter-form input{

    flex:1;

    border:none;

    outline:none;

    padding:18px 25px;

    font-size:16px;

}

.newsletter-form button{

    background:#111;

    color:#fff;

    border:none;

    padding:0 35px;

    cursor:pointer;

    transition:.3s;

    font-size:16px;

}

.newsletter-form button:hover{

    background:#333;

}

/*==========================
Footer
==========================*/

.footer{

    background:#111;

    color:#fff;

    padding:80px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-box h2{

    color:#ff4f81;

    margin-bottom:20px;

}

.footer-box h3{

    margin-bottom:20px;

}

.footer-box p{

    color:#ccc;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box ul{

    padding:0;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#ccc;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#ff4f81;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:#222;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#ff4f81;

}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:20px;

    text-align:center;

    color:#aaa;

}
/*==========================
Page Banner
==========================*/

.page-banner{

    height:320px;

    background:url("../images/banners/shop-banner.jpg") center/cover;

    position:relative;

    margin-top:20px;

}

.page-overlay{

    width:100%;

    height:100%;

    background:rgba(0,0,0,.5);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

}

.page-overlay h1{

    font-size:55px;

    margin-bottom:15px;

}

.page-overlay p{

    font-size:18px;

}

/*==========================
Shop Layout
==========================*/

.shop{

    padding:100px 0;

}

.shop-layout{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:40px;

}

.sidebar{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.sidebar h3{

    margin-bottom:25px;

}

.sidebar ul li{

    padding:15px 0;

    border-bottom:1px solid #eee;

    cursor:pointer;

    transition:.3s;

}

.sidebar ul li:hover{

    color:#ff4f81;

    padding-left:10px;

}
.shop-products{

    width:100%;

}

.shop .product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}
/*==========================
Sidebar Filter
==========================*/

.filter-box{

    margin-bottom:35px;

}

.filter-box h3{

    margin-bottom:18px;

    font-size:22px;

}

.filter-box ul{

    padding:0;

}

.filter-box ul li{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #eee;

    cursor:pointer;

    transition:.3s;

}

.filter-box ul li:hover{

    color:#ff4f81;

}

.search-filter{

    width:100%;

    padding:12px 15px;

    border:1px solid #ddd;

    border-radius:8px;

    outline:none;

}

.filter-box input[type="range"]{

    width:100%;

    margin:15px 0;

}

.filter-box label{

    display:block;

    margin-bottom:12px;

    cursor:pointer;

}

/*==========================
Single Product
==========================*/

.single-product{

padding:100px 0;

}

.single-product-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}

.main-image{

width:100%;

border-radius:15px;

}

.thumbnail-gallery{

display:flex;

gap:15px;

margin-top:20px;

}

.thumbnail-gallery img{

width:110px;

height:110px;

object-fit:cover;

border-radius:10px;

cursor:pointer;

border:2px solid #eee;

transition:.3s;

}

.thumbnail-gallery img:hover{

border-color:#ff4f81;

}

.product-details h2{

font-size:38px;

margin-bottom:20px;

}

.product-price{

font-size:34px;

color:#ff4f81;

margin:25px 0;

}

.product-details p{

line-height:1.9;

color:#666;

}

/*==========================
Product Options
==========================*/

.product-option{

    margin-top:30px;

}

.product-option h4{

    margin-bottom:15px;

}

/* Size */

.size-list{

    display:flex;

    gap:15px;

}

.size-list button{

    width:50px;

    height:50px;

    border:1px solid #ddd;

    background:#fff;

    cursor:pointer;

    border-radius:8px;

    transition:.3s;

}

.size-list button:hover{

    background:#ff4f81;

    color:#fff;

    border-color:#ff4f81;

}

/* Color */

.color-list{

    display:flex;

    gap:15px;

}

.color-list span{

    width:35px;

    height:35px;

    border-radius:50%;

    cursor:pointer;

    border:2px solid #ddd;

}

.pink{

    background:#ff4f81;

}

.black{

    background:#111;

}

.white{

    background:#fff;

}

/* Quantity */

.quantity-box{

    display:flex;

    width:150px;

}

.quantity-box button{

    width:45px;

    border:none;

    background:#ff4f81;

    color:#fff;

    cursor:pointer;

    font-size:20px;

}

.quantity-box input{

    width:60px;

    text-align:center;

    border:1px solid #ddd;

    outline:none;

}

/* Buttons */

.product-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.buy-btn{

    padding:15px 35px;

    border:none;

    background:#25D366;

    color:#fff;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.buy-btn:hover{

    background:#1da851;

}
/*==========================
Cart Page
==========================*/

.cart-page{

padding:100px 0;

}

.cart-layout{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

.cart-table table{

width:100%;

border-collapse:collapse;

background:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.cart-table th,
.cart-table td{

padding:20px;

border-bottom:1px solid #eee;

text-align:center;

}

.product-cell{

display:flex;

align-items:center;

gap:15px;

}

.product-cell img{

width:90px;

border-radius:10px;

}

.qty-box{

display:flex;

justify-content:center;

}

.qty-box button{

width:35px;

height:35px;

background:#ff4f81;

color:#fff;

border:none;

cursor:pointer;

}

.qty-box input{

width:50px;

text-align:center;

border:1px solid #ddd;

}

.cart-summary{

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

height:fit-content;

}

.cart-summary h2{

margin-bottom:30px;

}

.summary-item{

display:flex;

justify-content:space-between;

margin-bottom:20px;

}

.total{

font-size:22px;

font-weight:bold;

color:#ff4f81;

}

.cart-summary .btn{

width:100%;

text-align:center;

margin-top:20px;

}
/*==========================
Checkout
==========================*/

.checkout{

padding:100px 0;

}

.checkout-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

.checkout-form{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.checkout-form input,
.checkout-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

outline:none;

font-family:Poppins;

}

.order-summary{

background:#fff;

padding:35px;

border-radius:15px;

height:fit-content;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/*==========================
Mobile Menu
==========================*/

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:#111;

}

@media (max-width:991px){

    .menu-toggle{

        display:block;

        z-index:1002;

    }

    .navbar{

        position:fixed;

        top:0;

        right:-100%;

        width:280px;

        height:100vh;

        background:#fff;

        transition:.4s;

        box-shadow:-5px 0 20px rgba(0,0,0,.15);

        padding-top:90px;

        z-index:1001;

    }

    .navbar.active{

        right:0;

    }

    .navbar ul{

        display:flex;

        flex-direction:column;

        gap:0;

        padding:0;

    }

    .navbar ul li{

        border-bottom:1px solid #eee;

    }

    .navbar ul li a{

        display:block;

        padding:18px 25px;

        font-size:17px;

    }

}
.menu-toggle{

    display:none;

}

@media(max-width:991px){

.menu-toggle{

display:block;

font-size:28px;

cursor:pointer;

}

.navbar{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#fff;

transition:.4s;

z-index:9999;

}

.navbar.active{

right:0;

}

.navbar ul{

display:flex;

flex-direction:column;

padding-top:90px;

}

}
@media (max-width:768px){

.hero h1{

    font-size:52px;

    line-height:1.1;

}

.hero p{

    font-size:18px;

}

}
.menu-toggle{

    margin-right:15px;

    font-size:28px;

}
@media (max-width:768px){

.header-icons{

    gap:12px;

}

.header-icons .icon{

    width:40px;

    height:40px;

}

}
@media (max-width:768px){

.search-box{

    display:none;

}

}

@media (max-width:768px){

.logo{

    flex:1;

    text-align:center;

}

.logo a{

    font-size:24px;

}

}

@media (max-width:991px){

    .menu-toggle{
        display:block;
    }

}
@media (max-width:768px){

.page-banner h1{

    font-size:42px;

    line-height:1.1;

}

.page-banner p{

    font-size:18px;

}

}
/*======================================
PRODUCT DETAILS
======================================*/

.product-details{
    padding:80px 0;
}

.product-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.product-gallery{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.main-product-image{
    width:100%;
    display:block;
}

.product-content h2{
    font-size:34px;
    margin-bottom:15px;
    color:#222;
}

.product-badge{
    display:inline-block;
    padding:6px 15px;
    background:#ff4081;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.rating{
    color:#ffc107;
    font-size:18px;
    margin:15px 0;
}

.price-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:20px;
}

.price{
    color:#ff4081;
    font-size:32px;
    font-weight:700;
}

.product-description{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.product-options{
    margin-bottom:25px;
}

.product-options h4{
    margin-bottom:12px;
}

.sizes{
    display:flex;
    gap:10px;
}

.sizes button{
    width:50px;
    height:50px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.sizes button:hover{
    background:#ff4081;
    color:#fff;
    border-color:#ff4081;
}

.quantity-box{
    display:flex;
    width:max-content;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
}

.quantity-box button{
    width:45px;
    border:none;
    background:#f5f5f5;
    cursor:pointer;
    font-size:20px;
    transition:.3s;
}

.quantity-box button:hover{
    background:#ff4081;
    color:#fff;
}

.quantity-box input{
    width:60px;
    border:none;
    text-align:center;
    font-size:18px;
    font-weight:600;
    outline:none;
}

.product-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.product-buttons .btn,
.buy-btn{
    padding:15px 35px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.product-buttons .btn{
    background:#111;
    color:#fff;
}

.product-buttons .btn:hover{
    background:#333;
}

.buy-btn{
    background:#ff4081;
    color:#fff;
}

.buy-btn:hover{
    background:#e73370;
}

@media(max-width:992px){

.product-wrapper{

grid-template-columns:1fr;

}

.product-content{

margin-top:30px;

}

.product-content h2{

font-size:28px;

}

.price{

font-size:28px;

}

}

@media(max-width:576px){

.product-buttons{

flex-direction:column;

}

.product-buttons .btn,
.buy-btn{

width:100%;

}

.sizes{

flex-wrap:wrap;

}

}
/*======================================
CONTACT PAGE
======================================*/

.contact-section{
    padding:80px 0;
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    margin-top:50px;
}

.contact-info{
    display:grid;
    gap:20px;
}

.info-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.info-box:hover{
    transform:translateY(-5px);
}

.info-box i{
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#ff4081;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.info-box h3{
    margin-bottom:10px;
    color:#222;
    font-size:20px;
}

.info-box p{
    color:#777;
    line-height:1.7;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#ff4081;
}

.input-group textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form .btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:8px;
    background:#ff4081;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form .btn:hover{
    background:#e73370;
}

.map-section{
    margin-top:80px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}

/*======================================
Responsive
======================================*/

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.contact-section{

padding:60px 0;

}

.contact-form{

padding:25px;

}

.info-box{

padding:25px;

}

.info-box i{

width:60px;
height:60px;
line-height:60px;
font-size:24px;

}

.map-section iframe{

height:320px;

}

}
/*======================================
ABOUT PAGE
======================================*/

.about-section{
    padding:80px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
    display:block;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.section-subtitle{
    display:inline-block;
    color:#ff4081;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}

.about-content h2{
    font-size:38px;
    color:#222;
    margin-bottom:20px;
    line-height:1.3;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.about-content .btn{
    display:inline-block;
    margin-top:15px;
}

/*======================================
WHY CHOOSE US
======================================*/

.why-us{
    padding:80px 0;
    background:#f8f8f8;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#ff4081;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.feature-box h3{
    margin-bottom:15px;
    color:#222;
}

.feature-box p{
    color:#777;
    line-height:1.8;
}

/*======================================
COUNTER SECTION
======================================*/

.counter-section{
    padding:80px 0;
    background:#ebebeb;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box h2{
    color:#ff4081;
    font-size:42px;
    margin-bottom:10px;
}

.counter-box p{
    font-size:17px;
    color:#1b1b1b;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.about-wrapper{
    grid-template-columns:1fr;
}

.features-grid{
    grid-template-columns:repeat(2,1fr);
}

.counter-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-content{
    text-align:center;
}

}

@media(max-width:576px){

.about-section,
.why-us,
.counter-section{
    padding:60px 0;
}

.about-content h2{
    font-size:28px;
}

.features-grid{
    grid-template-columns:1fr;
}

.counter-grid{
    grid-template-columns:1fr;
}

.feature-box{
    padding:30px 20px;
}

.counter-box h2{
    font-size:34px;
}

}

/*======================================
FAQ PAGE
======================================*/

.faq-section{
    padding:80px 0;
    background:#f8f8f8;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#222;
    transition:.3s;
}

.faq-question:hover{
    background:#fff5f8;
}

.faq-question i{
    color:#ff4081;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

@media(max-width:768px){

.faq-section{
    padding:60px 0;
}

.faq-question{
    font-size:16px;
    padding:18px;
}

.faq-answer p{
    padding:0 18px 18px;
}

}
/*======================================
POLICY PAGES
======================================*/

.policy-section{

padding:80px 0;

background:#fff;

}

.policy-content{

max-width:900px;

margin:auto;

background:#fff;

padding:45px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.policy-content h2{

font-size:34px;

margin-bottom:20px;

color:#222;

}

.policy-content h3{

margin-top:35px;

margin-bottom:15px;

color:#ff4081;

}

.policy-content p{

line-height:1.9;

color:#666;

margin-bottom:15px;

}

.policy-content ul{

padding-left:20px;

}

.policy-content li{

margin-bottom:12px;

line-height:1.8;

color:#666;

}

@media(max-width:768px){

.policy-section{

padding:60px 0;

}

.policy-content{

padding:25px;

}

.policy-content h2{

font-size:28px;

}

}
.text-center{
    text-align:center;
    margin-top:40px;
}
.sizes button.active{

    background:#ff4d6d;

    color:#fff;

    border-color:#ff4d6d;

}
@media (max-width:991px){

.hero h1{
    font-size:42px;
}

.shop-layout{
    grid-template-columns:1fr;
}

.shop .product-grid{
    grid-template-columns:repeat(2,1fr);
}

.cart-layout{
    grid-template-columns:1fr;
}

.checkout-grid{
    grid-template-columns:1fr;
}

.single-product-grid{
    grid-template-columns:1fr;
}

}
@media (max-width:768px){

.hero{
    height:auto;
    padding:120px 0 80px;
}

.hero-content{
    text-align:center;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.section-title h2{
    font-size:30px;
}

.category-grid,
.product-grid,
.shop .product-grid,
.footer-grid,
.service-grid{
    grid-template-columns:1fr;
}

.newsletter-form{
    flex-direction:column;
    border-radius:10px;
}

.newsletter-form input{
    width:100%;
}

.newsletter-form button{
    width:100%;
    padding:18px;
}

.top-bar{
    display:none;
}

body{
    padding-top:80px;
}

.header{
    top:0;
}

.page-overlay h1{
    font-size:34px;
}

.page-overlay p{
    font-size:16px;
}

}
@media (max-width:576px){

.container{
    width:94%;
}

.header .container{
    height:70px;
}

.logo a{
    font-size:22px;
}

.header-icons{
    gap:8px;
}

.icon{
    width:38px;
    height:38px;
}

.btn,
.buy-btn,
.btn-cart{
    width:100%;
}

.product-buttons{
    flex-direction:column;
}

.cart-table{
    overflow-x:auto;
}

.cart-table table{
    min-width:700px;
}

.page-banner{
    height:220px;
}

.page-overlay h1{
    font-size:28px;
}

.offer-content h2{
    font-size:34px;
}

.offer-content h3{
    font-size:22px;
}

.offer-content p{
    font-size:15px;
}

}