/* =====================================================
   ANNOUNCEMENT BAR
===================================================== */

.announcement-bar{

    background:var(--secondary);
    color:var(--white);

    font-size:14px;

    padding:12px 0;

}

.announcement-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.announcement-left{

    font-weight:500;

}

.announcement-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.announcement-right a{

    color:var(--white);

    transition:var(--transition);

}

.announcement-right a:hover{

    color:var(--primary);

}

/* ==========================================
        HEADER
========================================== */

.header{

    background:var(--white);

    box-shadow:var(--shadow-sm);

    padding:20px 0;

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.logo{

    font-size:32px;

    font-weight:800;

    color:var(--secondary);

}

.logo span{

    color:var(--primary);

}

/* Search */

.search-box{

    flex:1;

    display:flex;

    max-width:650px;

    height:52px;

    border:2px solid var(--gray-200);

    border-radius:50px;

    overflow:hidden;

    transition:var(--transition);

}

.search-box:hover{

    border-color:var(--primary);

}

.search-box input{

    flex:1;

    padding:0 20px;

    font-size:15px;

}

.search-box button{

    width:60px;

    background:var(--primary);

    color:#fff;

}

.search-box button:hover{

    background:var(--primary-dark);

}

/* Icons */

.header-icons{

    display:flex;

    align-items:center;

    gap:25px;

}

.header-icons a{

    position:relative;

    font-size:24px;

    color:var(--secondary);

    transition:var(--transition);

}

.header-icons a:hover{

    color:var(--primary);

}

/* Badge */

.badge{

    position:absolute;

    top:-8px;

    right:-10px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:var(--danger);

    color:#fff;

    font-size:11px;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* =====================================================
                    NAVIGATION
===================================================== */

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    background:var(--white);
    border-top:1px solid var(--gray-200);
    border-bottom:1px solid var(--gray-200);
    box-shadow:var(--shadow-sm);
}

.navbar-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    align-items: center;
    width: 100%;
    min-height:70px;
}



/* =============================
   Mobile Menu Button
============================= */

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border-radius:10px;
    background:var(--gray-100);
    font-size:20px;
    color:var(--secondary);
    transition:var(--transition);
}

.menu-toggle:hover{
    background:var(--primary);
    color:var(--white);
}

/* =============================
   Categories
============================= */

.categories{
    position:relative;
}

.category-toggle{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 20px;
    background:var(--primary);
    color:var(--white);
    border-radius:10px;
    font-weight:600;
    transition:var(--transition);
}

.category-toggle:hover{
    background:var(--primary-dark);
}

/* =============================
   Category Dropdown
============================= */

.category-dropdown{
    position:absolute;
    top:110%;
    left:0;
    width:260px;
    background:var(--white);
    border-radius:12px;
    box-shadow:var(--shadow-lg);
    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s;
}

.category-dropdown.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.category-dropdown ul li{
    border-bottom:1px solid var(--gray-200);
}

.category-dropdown ul li:last-child{
    border-bottom:none;
}

.category-dropdown a{
    display:block;
    padding:15px 20px;
    color:var(--gray-700);
    transition:var(--transition);
}

.category-dropdown a:hover{
    background:var(--gray-100);
    color:var(--primary);
    padding-left:28px;
}

/* =============================
   Desktop Navigation
============================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:40px;
}

.nav-menu a{
    position:relative;
    color:var(--secondary);
    font-weight:600;
    transition:var(--transition);
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:var(--primary);
}

/* =============================
   Right Side
============================= */

.nav-right{
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hot-offer{
    color:var(--danger);
    font-weight:700;
    white-space:nowrap;
}

/* =============================
   Mobile Sidebar
============================= */

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100vh;
    background:var(--white);
    z-index:1999;
    transition:.35s;
    overflow-y:auto;
    box-shadow:var(--shadow-xl);
}

.mobile-menu.active{
    left:0;
}

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid var(--gray-200);
}

.close-menu{
    font-size:24px;
}

.mobile-menu ul li{
    border-bottom:1px solid var(--gray-200);
}

.mobile-menu ul li a{
    display:block;
    padding:18px 20px;
    font-weight:500;
    transition:.3s;
}

.mobile-menu ul li a:hover{
    background:var(--gray-100);
    color:var(--primary);
}

/* ==========================================
            HERO SECTION
========================================== */
/* ==========================================
            HERO SLIDER
========================================== */

.hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
    min-height:720px;
}

.heroSwiper{
    width:100%;
    height:100%;
}

.swiper-slide{
    display:flex;
    align-items:center;
}

.hero-wrapper{
    min-height:720px;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;
}

/* ==========================================
            HERO CONTENT
========================================== */

.hero-content{

    max-width:600px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 22px;

    border-radius:50px;

    background:#ffffff;

    color:var(--primary);

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:25px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    color:#111827;

    margin-bottom:25px;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#6b7280;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-buttons .btn{

    padding:16px 36px;

    border-radius:60px;

    font-weight:600;

    transition:.3s;

}

.hero-buttons .btn-primary{

    background:#2563eb;

    color:#fff;

    box-shadow:0 15px 35px rgba(37,99,235,.30);

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

}

.hero-buttons .btn-outline{

    border:2px solid #2563eb;

    color:#2563eb;

    background:#fff;

}

.hero-buttons .btn-outline:hover{

    background:#2563eb;

    color:#fff;

}

.hero-stats{

    display:flex;

    gap:45px;

}

.hero-stats h3{

    font-size:32px;

    color:#2563eb;

    margin-bottom:8px;

}

.hero-stats span{

    color:#6b7280;

}

/* ======================================================
                    HERO IMAGE
====================================================== */

hero-image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
}

.hero-image img{

    width: 100%;
    max-width: 580px;

    height: 580px;

    object-fit: contain;

    object-position: center;

    display: block;

    animation: heroFloat 5s ease-in-out infinite;

    filter: drop-shadow(0 35px 60px rgba(0,0,0,.18));

    transition: .4s;

}

.hero-image img:hover{

    transform: scale(1.03);

}
/* Background Circle */

.hero-image::before{
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#60a5fa);
    opacity: .10;
    z-index: 0;
}

/* Glow */

.hero-image::after{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(37,99,235,.18),transparent 70%);
    z-index: 0;
}

/* Main Image */

.hero-image img{

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 560px;

    object-fit: contain;

    animation: heroFloat 5s ease-in-out infinite;

    filter: drop-shadow(0 35px 60px rgba(0,0,0,.18));

}


.discount-card{

    position:absolute;

    top:60px;

    left:-20px;

    width:140px;

    padding:22px;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    z-index:3;

    animation:heroFloat 4s infinite;

}

.discount-card h2{

    font-size:42px;

    color:#ef4444;

}

.discount-card p{

    margin-top:8px;

    color:#555;

}


.rating-card{

    position:absolute;

    bottom:70px;

    right:-10px;

    width:180px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    padding:18px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

    z-index:3;

    animation:heroFloat 5s infinite;

}

.rating-card h4{

    font-size:22px;

    color:#111827;

}

.rating-card p{

    color:#666;

}

.hero .shape{

    position:absolute;

    border-radius:50%;

    filter:blur(60px);

    z-index:0;

}

.hero .shape-1{

    width:300px;

    height:300px;

    background:#60a5fa55;

    top:-80px;

    left:-80px;

}

.hero .shape-2{

    width:220px;

    height:220px;

    background:#ec489955;

    right:5%;

    bottom:10%;

}

.hero .shape-3{

    width:180px;

    height:180px;

    background:#22c55e44;

    top:45%;

    left:40%;

}

/* ==========================================
        SWIPER NAVIGATION
========================================== */

.swiper-button-next,
.swiper-button-prev{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#ffffff;

    color:#2563eb;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.3s;

}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:22px;
    font-weight:700;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#2563eb;

    color:#ffffff;

}

.swiper-pagination{

    bottom:35px !important;

}

.swiper-pagination-bullet{

    width:14px;

    height:14px;

    background:#cbd5e1;

    opacity:1;

    transition:.3s;

}

.swiper-pagination-bullet-active{

    width:40px;

    border-radius:20px;

    background:#2563eb;

}

/* ==========================================
            HERO SECTION End
========================================== */


/* ==========================================
            FEATURES
========================================== */

.features{

    padding:80px 0;

    background:#fff;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    border:1px solid #edf2f7;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    font-size:32px;

}

.feature-card h3{

    margin-bottom:12px;

    font-size:22px;

}

.feature-card p{

    color:#6b7280;

    line-height:1.7;

}



/* ==========================================
            FEATURES End
========================================== */



/* ==========================================
        SHOP CATEGORY SECTION
========================================== */

.shop-category{

    padding:120px 0;

    background:#f8fafc;

    position:relative;

    overflow:hidden;

}

/* ==========================================
        SECTION HEADER
========================================== */

.section-header{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;

}

.section-subtitle{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    background:#eaf2ff;

    color:#2563eb;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:20px;

}

.section-title{

    font-size:48px;

    font-weight:800;

    color:#111827;

    line-height:1.2;

    margin-bottom:20px;

}

.section-description{

    max-width:650px;

    margin:auto;

    color:#6b7280;

    font-size:18px;

    line-height:1.8;

}

.section-header::after{

    content:"";

    width:90px;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

    display:block;

    margin:35px auto 0;

    border-radius:50px;

}

/* ==========================================
        CATEGORY GRID
========================================== */

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ==========================================
        CATEGORY CARD
========================================== */

.category-card{

    position:relative;

    height:420px;

    border-radius:25px;

    overflow:hidden;

    background:#ffffff;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;

}

.category-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.30) 40%,
        rgba(0,0,0,.85) 100%
    );

    z-index:1;

}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.category-card:hover::before{

    background:rgba(0,0,0,0.60);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.category-card:hover img{

    transform:scale(1.08);

}

/* ==========================================
        CATEGORY OVERLAY
========================================== */

.category-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:30px;

    z-index:2;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        transparent
    );

    transition:.4s;

}

.category-content span{

    display:inline-block;

    padding:8px 18px;

    margin-bottom:18px;

    background:rgba(255,255,255,.20);

    backdrop-filter:blur(10px);

    color:#fff;

    border:1px solid rgba(255,255,255,.35);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.category-content h3{

    font-size:32px;

    color:#fff;

    margin-bottom:20px;

    font-weight:700;

}

.category-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 26px;

    background:#ffffff;

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

    border-radius:50px;

    transition:.35s;

}

.category-btn:hover{

    background:#2563eb;

    color:#fff;

}

.category-btn i{

    transition:.35s;

}

.category-btn:hover i{

    transform:translateX(8px);

}

.category-card:hover .category-content{

    padding-bottom:40px;

}

/* ==========================================
        SHOP CATEGORY SECTION
========================================== */




/*==================================================
            TRENDING PRODUCTS
==================================================*/

.trending-products{

    padding:120px 0;

    background:#f8fafc;

}

/*==================================================
            PRODUCT GRID
==================================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/*==================================================
            PRODUCT CARD
==================================================*/

.product-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/*==================================================
            PRODUCT IMAGE
==================================================*/

.product-image{

    position:relative;

    height:280px;

    background:#f5f5f5;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*==================================================
            BADGE
==================================================*/

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#ef4444;

    color:#fff;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    z-index:5;

}

/*==================================================
            WISHLIST
==================================================*/

.wishlist-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    z-index:5;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.wishlist-btn:hover{

    background:#2563eb;

    color:#fff;

}

/*==================================================
            PRODUCT INFO
==================================================*/

.product-info{

    padding:25px;

}

.product-rating{

    color:#f59e0b;

    font-size:15px;

    margin-bottom:15px;

}

.product-rating span{

    color:#666;

    margin-left:8px;

}

.product-title{

    font-size:20px;

    color:#111827;

    margin-bottom:18px;

    line-height:1.4;

    font-weight:700;

}

.product-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;

}

.new-price{

    font-size:24px;

    color:#2563eb;

    font-weight:700;

}

.old-price{

    color:#9ca3af;

    text-decoration:line-through;

}


.cart-btn{

    width:100%;

    height:52px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.cart-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,99,235,.30);

}

/*==========================================
        PRODUCT ACTIONS
==========================================*/

.product-actions{

    position:absolute;

    top:50%;

    right:18px;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:12px;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:10;

}

.product-card:hover .product-actions{

    opacity:1;

    visibility:visible;

    right:15px;

}

.action-btn{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#111827;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.action-btn:hover{

    background:#2563eb;

    color:#ffffff;

    transform:scale(1.1);

}

.product-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.15);

    opacity:0;

    transition:.4s;

}

.product-card:hover .product-image::after{

    opacity:1;

}

.cart-btn{

    transition:.35s;

}

.product-card:hover .cart-btn{

    transform:translateY(-4px);

}

.product-badge.hot{

    background:#ef4444;

}

.product-badge.sale{

    background:#f97316;

}

.product-badge.new{

    background:#10b981;

}

/*==========================================
        PRODUCT FILTER
==========================================*/

.product-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin:50px 0;
}

.filter-btn{
    padding:14px 28px;
    border:none;
    outline:none;
    border-radius:50px;
    background:#ffffff;
    color:#111827;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.filter-btn:hover,
.filter-btn.active{
    background:#2563eb;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,99,235,.25);
}

/* ==========================================
        TRENDING PRODUCTS End
========================================== */

/*==================================================
                FLASH SALE Section Start 
==================================================*/

.flash-sale{

    padding:120px 0;

    background:#ffffff;

}

.flash-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:70px;

    border-radius:35px;

    overflow:hidden;

    position:relative;

    background:linear-gradient(135deg,#2563eb,#4f46e5,#7c3aed);

}

.flash-wrapper::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-200px;

    right:-150px;

}

.flash-wrapper::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-180px;

    left:-100px;

}

.flash-content{

    position:relative;

    z-index:5;

}

.flash-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    backdrop-filter:blur(12px);

    margin-bottom:25px;

}

.flash-content h2{

    font-size:56px;

    color:#fff;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}


.flash-content h2 span{

    color:#fde047;

}


.flash-content p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:1.8;

    max-width:500px;

    margin-bottom:35px;

}

.flash-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:5;

}


.flash-image img{

    width:100%;

    max-width:500px;

    transition:.5s;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.25));

}

.flash-wrapper:hover .flash-image img{

    transform:scale(1.08) rotate(-3deg);

}

/*==================================================
                COUNTDOWN
==================================================*/

.countdown{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.time-box{

    width:95px;

    height:95px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.20);

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.time-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.22);

}

.time-box h3{

    font-size:34px;

    color:#ffffff;

    font-weight:700;

    margin-bottom:8px;

}

.time-box span{

    color:#ffffff;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

}

/*==================================================
                FLASH BUTTON
==================================================*/

.flash-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 40px;

    margin-top:20px;

    background:#ffffff;

    color:#2563eb;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    border-radius:60px;

    transition:all .4s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.flash-btn:hover{

    background:#111827;

    color:#ffffff;

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(0,0,0,.30);

}

.flash-btn i{

    transition:.35s ease;

}

.flash-btn:hover i{

    transform:translateX(8px);

}

/*==========================================
        FLASH SALE ANIMATION
==========================================*/

.flash-wrapper{

    background:linear-gradient(
        135deg,
        #2563eb,
        #4f46e5,
        #7c3aed,
        #2563eb
    );

    background-size:300% 300%;

    animation:gradientMove 8s ease infinite;

}

@keyframes gradientMove{

    0%{

        background-position:0% 50%;

    }

    50%{

        background-position:100% 50%;

    }

    100%{

        background-position:0% 50%;

    }

}

.flash-image img{

    animation:floatImage 4s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}


.flash-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 42px;

    border-radius:60px;

    text-decoration:none;

    color:#ffffff;

    font-size:17px;

    font-weight:700;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(15px);

    transition:.4s;

}


.flash-btn:hover{

    background:#ffffff;

    color:#2563eb;

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}


.flash-image::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    filter:blur(50px);

    z-index:-1;

}

.flash-wrapper:hover{

    transform:translateY(-5px);

    transition:.4s;

}

/*==================================================
                FLASH SALE Section End 
==================================================*/

/*==================================================
            FEATURED PRODUCTS Start
==================================================*/

/*==================================================
            FEATURED PRODUCTS
==================================================*/

.featured-products{

    padding:120px 0;

    background:#f8fafc;

}

/*==============================
      FILTER BUTTONS
==============================*/

.featured-filter{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin:50px 0;

}

.featured-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:#ffffff;

    color:#374151;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.featured-btn.active{

    background:#2563eb;

    color:#ffffff;

}

.featured-btn:hover{

    background:#2563eb;

    color:#ffffff;

    transform:translateY(-5px);

}

/*==============================
        PRODUCT GRID
==============================*/

.featured-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================
        PRODUCT CARD
==============================*/

.featured-card{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.featured-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

/*==============================
          IMAGE
==============================*/

.featured-image{

    position:relative;

    height:280px;

    overflow:hidden;

    background:#f1f5f9;

}

.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.featured-card:hover .featured-image img{

    transform:scale(1.08);

}

/*==============================
        IMAGE OVERLAY
==============================*/

.featured-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.15);

    opacity:0;

    transition:.35s;

}

.featured-card:hover .featured-image::after{

    opacity:1;

}

/*==============================
        BADGE
==============================*/

.featured-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:10;

    padding:8px 15px;

    border-radius:50px;

    color:#fff;

    font-size:12px;

    font-weight:700;

}

.sale{

    background:#ef4444;

}

.new{

    background:#10b981;

}

.hot{

    background:#f59e0b;

}

/*==============================
      WISHLIST
==============================*/

.featured-wishlist{

    position:absolute;

    top:18px;

    right:18px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    cursor:pointer;

    z-index:20;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.featured-wishlist:hover{

    background:#2563eb;

    color:#ffffff;

}

/*==============================
      PRODUCT ACTIONS
==============================*/

/* Wishlist */

.featured-wishlist{

    position:absolute;

    top:20px;

    right:20px;

    width:48px;

    height:48px;

    z-index:30;

}

/* Action Buttons */

.featured-actions{

    position:absolute;

    top:80px;

    right:20px;

    display:flex;

    flex-direction:column;

    gap:14px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:20;

}

.featured-card:hover .featured-actions{

    opacity:1;

    visibility:visible;

}



.action-btn{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.action-btn:hover{

    background:#2563eb;

    color:#ffffff;

    transform:scale(1.1);

}

/*==============================
      CONTENT
==============================*/

.featured-content{

    padding:25px;

}

.featured-rating{

    color:#f59e0b;

    font-size:15px;

}

.featured-rating span{

    color:#6b7280;

    margin-left:8px;

}

.featured-content h3{

    margin:18px 0;

    font-size:20px;

    color:#111827;

    line-height:1.5;

}

/*==============================
        PRICE
==============================*/

.featured-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.new-price{

    font-size:24px;

    color:#2563eb;

    font-weight:700;

}

.old-price{

    color:#9ca3af;

    text-decoration:line-through;

}

/*==============================
      CART BUTTON
==============================*/

.featured-cart{

    width:100%;

    height:52px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.featured-cart:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(37,99,235,.30);

}

/*==============================
      NO PRODUCT
==============================*/

.no-product{

    display:none;

    text-align:center;

    margin-top:60px;

    font-size:28px;

    font-weight:700;

    color:#111827;

}

/*==================================================
            FEATURED PRODUCTS End
==================================================*/

/*==================================================
                NEW ARRIVALS Start
==================================================*/

.new-arrivals{

    padding:120px 0;

    background:#ffffff;

}

/*==============================
        GRID
==============================*/

.arrival-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/*==============================
        CARD
==============================*/

.arrival-card{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    transition:.4s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.arrival-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    border-color:#2563eb33;

}

/*==============================
        IMAGE
==============================*/

.arrival-image{

    position:relative;

    height:280px;

    overflow:hidden;

    background:#f8fafc;

}

.arrival-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.arrival-card:hover .arrival-image img{

    transform:scale(1.08);

}

/*==============================
        OVERLAY
==============================*/

.arrival-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );

    opacity:0;

    transition:.35s;

}

.arrival-card:hover .arrival-image::after{

    opacity:1;

}

/*==============================
        BADGE
==============================*/

.arrival-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:5;

    padding:8px 18px;

    border-radius:50px;

    background:#2563eb;

    color:#ffffff;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

/*==============================
        WISHLIST
==============================*/

.arrival-wishlist{

    position:absolute;

    top:18px;

    right:18px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#111827;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    z-index:20;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    transition:.35s;

}

.arrival-wishlist:hover{

    background:#ef4444;

    color:#ffffff;

    transform:scale(1.08);

}

/*==============================
        ACTIONS
==============================*/

.arrival-actions{

    position:absolute;

    top:80px;

    right:18px;

    display:flex;

    flex-direction:column;

    gap:14px;

    opacity:0;

    visibility:hidden;

    transform:translateY(-10px);

    transition:.35s;

    z-index:20;

}

.arrival-card:hover .arrival-actions{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*==============================
        ACTION BUTTON
==============================*/

.action-btn{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#111827;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    transition:.35s;

}

.action-btn:hover{

    background:#2563eb;

    color:#ffffff;

    transform:scale(1.08);

}

/*==============================
        CONTENT
==============================*/

.arrival-content{

    padding:25px;

}

.arrival-category{

    color:#2563eb;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.arrival-content h3{

    margin:15px 0;

    font-size:21px;

    color:#111827;

    line-height:1.4;

}

.arrival-rating{

    color:#f59e0b;

    margin-bottom:18px;

}

.arrival-rating span{

    color:#6b7280;

    margin-left:8px;

    font-size:14px;

}

/*==============================
        PRICE
==============================*/

.arrival-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.arrival-price .new-price{

    font-size:24px;

    font-weight:700;

    color:#2563eb;

}

.arrival-price .old-price{

    color:#9ca3af;

    text-decoration:line-through;

}

/*==============================
        BUTTON
==============================*/

.arrival-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.arrival-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(37,99,235,.35);

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.arrival-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.arrival-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.arrival-grid{

grid-template-columns:1fr;

}

.arrival-image{

height:240px;

}

}

/*==================================================
                NEW ARRIVALS End
==================================================*/

/*==================================================
                 QUICK VIEW MODAL Start
==================================================*/

.quick-modal{

    position:fixed;

    inset:0;

    display:none;

    z-index:99999;

}



.quick-modal.active{

    display:block;

}



.quick-modal-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(5px);

}




.quick-modal-box{


    position:relative;

    width:900px;

    max-width:90%;

    background:#ffffff;

    border-radius:30px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    padding:35px;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);


}





.quick-close{


    position:absolute;

    right:20px;

    top:20px;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:#f3f4f6;

    cursor:pointer;

    font-size:20px;

}




.quick-image{

    height:450px;

    background:#f8fafc;

    border-radius:25px;

    overflow:hidden;

}



.quick-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}




.quick-category{

    color:#2563eb;

    font-weight:700;

}



.quick-content h2{

    font-size:32px;

    margin:15px 0;

}




.quick-rating{

    color:#f59e0b;

}



.quick-rating span{

    color:#6b7280;

}



.quick-price{

    margin:20px 0;

}



.quick-price span{

    font-size:30px;

    color:#2563eb;

    font-weight:700;

}



.quick-price del{

    margin-left:15px;

    color:#9ca3af;

}




.quick-option{

    margin-top:25px;

}



.color-list{

    display:flex;

    gap:12px;

}



.color-list span{

    width:30px;

    height:30px;

    border-radius:50%;

    background:#111827;

    cursor:pointer;

}




.color-list span:nth-child(2){

    background:#2563eb;

}



.color-list span:nth-child(3){

    background:#ef4444;

}




.size-list{

    display:flex;

    gap:10px;

}



.size-list button{


    width:45px;

    height:40px;

    border:1px solid #ddd;

    background:white;

    border-radius:8px;

    cursor:pointer;

}



.quick-bottom{


    display:flex;

    gap:20px;

    margin-top:30px;

}




.quantity{

    display:flex;

    align-items:center;

    gap:15px;

}



.quantity button{


    width:40px;

    height:40px;

    border:none;

    background:#f3f4f6;

    border-radius:8px;

}




.quick-cart{


    flex:1;

    border:none;

    background:#2563eb;

    color:white;

    border-radius:12px;

    font-size:16px;

    cursor:pointer;

}





@media(max-width:768px){


.quick-modal-box{


grid-template-columns:1fr;

padding:20px;

}



.quick-image{

height:300px;

}


}

/*==================================================
                 QUICK VIEW MODAL End
==================================================*/

/*==================================================
                BEST SELLERS SECTION Start
==================================================*/

/* =====================================================
                BEST SELLERS SECTION
===================================================== */

.best-seller-section{
    padding:100px 0;
    background:#f8f9fb;
}

/* ===========================
        HEADER
=========================== */

.bs-header{
    text-align:center;
    margin-bottom:50px;
}

.bs-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#111;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.bs-heading{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.bs-description{
    max-width:650px;
    margin:auto;
    color:#777;
    line-height:1.8;
}

/* ===========================
        FILTER BUTTONS
=========================== */

.bs-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.bs-filter-btn{

    border:none;
    outline:none;

    padding:13px 28px;

    border-radius:40px;

    background:#fff;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.bs-filter-btn:hover,
.bs-filter-btn.active{

    background:#111;

    color:#fff;

}

/* ===========================
        PRODUCT GRID
=========================== */

.bs-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ===========================
        PRODUCT CARD
=========================== */

.bs-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

    position:relative;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.bs-card:hover{

    transform:translateY(-10px);

}

/* ===========================
        PRODUCT IMAGE
=========================== */

.bs-image{

    position:relative;

    overflow:hidden;

    height:320px;

}

.bs-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.bs-card:hover .bs-image img{

    transform:scale(1.08);

}

/* ===========================
        BADGE
=========================== */

.bs-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#111;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:12px;

    z-index:5;

}

/* ===========================
        HEART BUTTON
=========================== */

.bs-heart{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:20;

    transition:.35s;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.bs-heart:hover{

    background:#ff3d57;

    color:#fff;

}

/* ===========================
     QUICK VIEW + CART
=========================== */

.bs-hover-icons{

    position:absolute;

    top:70px;

    right:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:.35s;

    z-index:15;

}

.bs-card:hover .bs-hover-icons{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.bs-hover-icons button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.bs-hover-icons button:hover{

    background:#111;

    color:#fff;

}

/* =====================================================
            BEST SELLERS CONTENT
===================================================== */


/* ===========================
        PRODUCT CONTENT
=========================== */

.bs-content{

    padding:22px;

}


.bs-category{

    display:inline-block;

    font-size:13px;

    color:#777;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:.5px;

}


.bs-title{

    font-size:20px;

    font-weight:600;

    line-height:1.4;

    margin-bottom:15px;

    transition:.3s;

}

.bs-title:hover{

    color:#ff4d4d;

}


/* ===========================
        RATING
=========================== */

.bs-rating{

    display:flex;

    align-items:center;

    gap:3px;

    margin-bottom:15px;

}

.bs-rating i{

    color:#ffb400;

    font-size:14px;

}

.bs-rating span{

    margin-left:8px;

    color:#777;

    font-size:14px;

}


/* ===========================
        PRICE
=========================== */

.bs-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;

}

.bs-price strong{

    font-size:24px;

    color:#111;

}

.bs-price del{

    color:#999;

    font-size:15px;

}


/* ===========================
        SOLD
=========================== */

.bs-sold{

    color:#666;

    font-size:14px;

    margin-bottom:20px;

}


/* ===========================
        ADD TO CART
=========================== */

.bs-add-cart{

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    background:#111;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.bs-add-cart:hover{

    background:#ff4d4d;

}


/* ===========================
        CARD HOVER
=========================== */

.bs-card:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}


/* ===========================
        IMAGE OVERLAY
=========================== */

.bs-image::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.04);

    opacity:0;

    transition:.4s;

}

.bs-card:hover .bs-image::after{

    opacity:1;

}


/* ===========================
        FILTER ANIMATION
=========================== */

.bs-card{

    animation:bsFade .4s ease;

}

@keyframes bsFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ===========================
        RESPONSIVE
=========================== */

@media(max-width:1200px){

    .bs-grid{

        grid-template-columns:repeat(3,1fr);

    }

}


@media(max-width:992px){

    .bs-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:576px){

    .bs-grid{

        grid-template-columns:1fr;

    }

    .bs-heading{

        font-size:30px;

    }

    .bs-image{

        height:280px;

    }

    .bs-filter{

        gap:10px;

    }

    .bs-filter-btn{

        padding:10px 18px;

        font-size:14px;

    }

}

/*==================================================
                BEST SELLERS SECTION End
==================================================*/

/*==================================================
                MEGA OFFER BANNER SECTION Start
==================================================*/


.mega-offer-section{
    padding:100px 0;
    background:#f8f9fb;
}

/* ===========================
        MAIN BOX
=========================== */

.mega-offer-box{

    position:relative;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

    overflow:hidden;

    padding:70px;

    border-radius:30px;

    background:linear-gradient(135deg,#111,#1d1d1d,#2b2b2b);

}

/* ===========================
        OVERLAY
=========================== */

.mega-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );

}

/* ===========================
        CONTENT
=========================== */

.mega-content{

    position:relative;

    z-index:2;

    max-width:600px;

}

.mega-badge{

    display:inline-block;

    padding:10px 22px;

    background:#ff4d4d;

    color:#fff;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.mega-title{

    color:#fff;

    font-size:52px;

    line-height:1.2;

    margin-bottom:20px;

}

.mega-title span{

    color:#ffb703;

}

.mega-text{

    color:#d6d6d6;

    line-height:1.8;

    font-size:17px;

    margin-bottom:35px;

}

/* ===========================
        TIMER
=========================== */

.mega-timer{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.timer-box{

    width:90px;
    height:90px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.12);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.35s;

}

.timer-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.15);

}

.timer-box h3{

    color:#fff;

    font-size:30px;

    margin-bottom:6px;

}

.timer-box span{

    color:#ddd;

    font-size:13px;

}

/* ===========================
        BUTTON
=========================== */

.mega-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    background:#ff4d4d;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.mega-btn:hover{

    background:#fff;

    color:#111;

    transform:translateY(-5px);

}

/* ===========================
        IMAGE
=========================== */

.mega-image{

    position:relative;

    z-index:2;

}

.mega-image img{

    width:420px;

    max-width:100%;

    border-radius:20px;

    transition:.5s;

}

.mega-image img:hover{

    transform:scale(1.05) rotate(-2deg);

}

/* ===========================
        RESPONSIVE
=========================== */

@media(max-width:992px){

    .mega-offer-box{

        flex-direction:column;

        text-align:center;

        padding:50px 35px;

    }

    .mega-content{

        max-width:100%;

    }

    .mega-timer{

        justify-content:center;

    }

}

@media(max-width:576px){

    .mega-title{

        font-size:36px;

    }

    .timer-box{

        width:75px;
        height:75px;

    }

    .timer-box h3{

        font-size:24px;

    }

    .mega-btn{

        width:100%;

        justify-content:center;

    }

}

/*==================================================
                MEGA OFFER BANNER SECTION END
==================================================*/

/* =====================================================
            WHY CHOOSE US SECTION Start
===================================================== */

.wc-section{

    padding:100px 0;

    background:linear-gradient(180deg,#ffffff,#f8f9fb);

}


/*==========================
        HEADER
==========================*/

.wc-header{

    text-align:center;

    margin-bottom:70px;

}

.wc-subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#111827;

    color:#fff;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.wc-title{

    font-size:44px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;

}

.wc-description{

    max-width:700px;

    margin:auto;

    color:#6b7280;

    line-height:1.8;

}


/*==========================
        GRID
==========================*/

.wc-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==========================
        CARD
==========================*/

.wc-card{

    background:#ffffff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.05);

}

.wc-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}


/*==========================
    TOP BORDER EFFECT
==========================*/

.wc-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#ff4d4d,#ff9800);

    transform:scaleX(0);

    transition:.4s;

}

.wc-card:hover::before{

    transform:scaleX(1);

}


/*==========================
        ICON
==========================*/

.wc-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#ff4d4d,#ff9800);

    color:#fff;

    font-size:34px;

    transition:.4s;

}

.wc-card:hover .wc-icon{

    transform:rotate(10deg) scale(1.12);

}


/*==========================
        TITLE
==========================*/

.wc-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#111827;

}


/*==========================
        TEXT
==========================*/

.wc-card p{

    color:#6b7280;

    line-height:1.8;

    font-size:15px;

}


/*==========================
    BACKGROUND GLOW
==========================*/

.wc-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,77,77,.08);

    top:-80px;

    right:-80px;

    transition:.5s;

}

.wc-card:hover::after{

    transform:scale(1.4);

}


/*==========================
        RESPONSIVE
==========================*/

@media(max-width:1200px){

    .wc-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wc-grid{

        grid-template-columns:1fr;

    }

    .wc-title{

        font-size:34px;

    }

}

@media(max-width:576px){

    .wc-section{

        padding:70px 0;

    }

    .wc-card{

        padding:35px 25px;

    }

    .wc-icon{

        width:75px;

        height:75px;

        font-size:28px;

    }

    .wc-title{

        font-size:28px;

    }

}

/* =====================================================
            WHY CHOOSE US SECTION End
===================================================== */

/* =====================================================
            Trading Product SECTION Start
===================================================== */

/* Section */

.trending-products{
    padding:80px 0;
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
}

/* Heading */

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#222;
    display:inline-block;
    position:relative;
}

.section-title h2::after{

    content:"";

    position:absolute;

    width:70px;
    height:4px;

    background:#0d6efd;

    left:50%;
    bottom:-12px;

    transform:translateX(-50%);

    border-radius:50px;
}

.section-title p{

    color:#666;
    margin-top:20px;
    font-size:17px;
}


/* Product Card */

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);
}


/* Sale Badge */

.badge-sale{

    position:absolute;

    left:18px;
    top:18px;

    background:linear-gradient(45deg,#ff3d3d,#ff7b00);

    color:#fff;

    padding:7px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:5;
}


/* Wishlist */

.wishlist-btn{

    position:absolute;

    right:18px;
    top:18px;

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    cursor:pointer;

    transition:.35s;

    z-index:20;
}

.wishlist-btn i{

    font-size:18px;
}

.wishlist-btn:hover{

    background:#ff3d3d;

    color:#fff;

    transform:scale(1.08);
}


/* Product Image */

.product-image{

    position:relative;

    overflow:hidden;

    padding:35px;

    background:#f7f9fc;

    text-align:center;
}

.product-image img{

    width:100%;

    height:240px;

    object-fit:contain;

    transition:.45s ease;
}

/* Image Zoom Only */

.product-card:hover .product-image img{

    transform:scale(1.08);
}


/* Hover Action Icons */

.product-actions{

    position:absolute;

    top:75px;

    right:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:15;
}

.product-card:hover .product-actions{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.product-actions a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    color:#222;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    transition:.3s;
}

.product-actions a:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateX(-5px);
}

/* Product Info */

.product-info{
    padding:22px;
}

/* Category */

.category{
    display:inline-block;
    background:#eef4ff;
    color:#0d6efd;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

/* Product Title */

.product-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    line-height:1.4;
    margin:10px 0;
    transition:.3s;
    cursor:pointer;
}

.product-title:hover{
    color:#0d6efd;
}

/* Rating */

.rating{
    margin-top:10px;
    color:#ffc107;
    font-size:15px;
}

.rating span{
    color:#666;
    margin-left:6px;
    font-weight:500;
}

/* Price */

.price{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.new-price{
    color:#dc3545;
    font-size:28px;
    font-weight:700;
}

.price del{
    color:#999;
    font-size:17px;
}

/* Add To Cart Button */

.cart-btn{

    width:100%;

    margin-top:22px;

    border:none;

    outline:none;

    padding:13px;

    border-radius:12px;

    background:linear-gradient(135deg,#0d6efd,#4b94ff);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.cart-btn:hover{

    transform:translateY(-3px);

    background:linear-gradient(135deg,#0b5ed7,#0d6efd);

    box-shadow:0 15px 30px rgba(13,110,253,.35);
}

/* Active Wishlist */

.wishlist-btn.active{

    background:#ff3d3d;

    color:#fff;
}

/* Card Shine Effect */

.product-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.8s;

    z-index:1;
}

.product-card:hover::before{

    left:140%;
}

/* Smooth Transition */

.product-card,
.product-image img,
.product-title,
.cart-btn,
.product-actions a,
.wishlist-btn{

    transition:all .35s ease;
}

/* Responsive */

@media(max-width:992px){

    .section-title h2{
        font-size:34px;
    }

    .product-image img{
        height:200px;
    }

    .product-title{
        font-size:18px;
    }

    .new-price{
        font-size:24px;
    }

}

@media(max-width:768px){

    .trending-products{
        padding:60px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

    .product-image{
        padding:25px;
    }

    .product-image img{
        height:170px;
    }

    .product-title{
        font-size:17px;
    }

    .cart-btn{
        padding:12px;
    }

}

@media(max-width:576px){

    .product-card{
        border-radius:15px;
    }

    .badge-sale{
        font-size:12px;
        padding:5px 12px;
    }

    .wishlist-btn{
        width:40px;
        height:40px;
    }

    .product-actions a{
        width:38px;
        height:38px;
    }

    .new-price{
        font-size:22px;
    }

}


/* =====================================================
            Trading Product SECTION End
===================================================== */

/* =====================================================
            CUSTOMER REVIEW SECTION START
===================================================== */

.customer-review{
    padding:80px 0;
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
    overflow:hidden;
}

/* Section Title */

.customer-review .section-title{
    margin-bottom:60px;
}

.customer-review .section-title h2{
    font-size:42px;
    font-weight:800;
    color:#222;
    position:relative;
    display:inline-block;
}

.customer-review .section-title h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-12px;
    transform:translateX(-50%);
    width:70px;
    height:4px;
    background:#0d6efd;
    border-radius:50px;
}

.customer-review .section-title p{
    margin-top:20px;
    font-size:17px;
    color:#666;
}

/* Swiper */

.reviewSwiper{
    padding:20px 5px 70px;
}

.swiper-slide{
    height:auto;
    display:flex;
}

/* Card */

.review-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    width:100%;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Shine Effect */

.review-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transition:.8s;
}

.review-card:hover::before{
    left:130%;
}

/* Quote Icon */

.quote-icon{
    width:55px;
    height:55px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Customer Image */

.review-image{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #0d6efd;
    margin-bottom:20px;
}

.review-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.review-card:hover .review-image img{
    transform:scale(1.08);
}

/* Stars */

.stars{
    color:#ffc107;
    font-size:18px;
    margin-bottom:20px;
}

/* Review Text */

.review-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    min-height:95px;
    margin-bottom:25px;
}

/* Customer Name */

.review-card h5{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:6px;
}

/* Customer Role */

.review-card span{
    color:#0d6efd;
    font-size:15px;
    font-weight:600;
}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{

    width:50px;
    height:50px;

    border-radius:50%;
    background:#fff;

    color:#0d6efd;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
    font-weight:bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#0d6efd;
    color:#fff;
    transform:scale(1.08);
}

/* Pagination */

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#0d6efd;
    opacity:.4;
}

.swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    opacity:1;
}

/* Responsive */

@media(max-width:991px){

    .customer-review{
        padding:70px 0;
    }

    .customer-review .section-title h2{
        font-size:34px;
    }

    .review-card{
        padding:30px 20px;
    }

    .review-image{
        width:90px;
        height:90px;
    }

}

@media(max-width:767px){

    .customer-review{
        padding:60px 0;
    }

    .customer-review .section-title h2{
        font-size:30px;
    }

    .review-card{
        padding:25px;
    }

    .review-card p{
        min-height:auto;
    }

    .review-image{
        width:80px;
        height:80px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

}

/* =====================================================
            CUSTOMER REVIEW SECTION END
===================================================== */

/* =====================================================
            BRAND PARTNERS SECTION START
===================================================== */

.brand-partners{
    padding:80px 0;
    background:#f8f9fa;
    overflow:hidden;
}

/* Slider */

.brand-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* Track */

.brand-track{
    display:flex;
    align-items:center;
    width:calc(220px * 16);
    animation:brandScroll 30s linear infinite;
}

/* Pause Animation */

.brand-slider:hover .brand-track{
    animation-play-state:paused;
}

/* Brand Card */

.brand-item{

    width:200px;
    height:120px;

    margin:0 10px;

    background:#fff;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;
}

/* Logo */

.brand-item img{

    max-width:120px;

    max-height:60px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s;
}

/* Hover */

.brand-item:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.brand-item:hover img{

    filter:grayscale(0);

    opacity:1;

    transform:scale(1.08);
}

/* Infinite Animation */

@keyframes brandScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-220px * 8));
    }

}

/* Responsive */

@media(max-width:992px){

    .brand-item{

        width:170px;
        height:100px;
    }

    .brand-item img{

        max-width:100px;
    }

}

@media(max-width:768px){

    .brand-partners{

        padding:60px 0;
    }

    .brand-item{

        width:150px;
        height:90px;
    }

    .brand-item img{

        max-width:90px;
    }

}

@media(max-width:576px){

    .brand-item{

        width:130px;
        height:80px;
    }

    .brand-item img{

        max-width:75px;
    }

}

/* =====================================================
            BRAND PARTNERS SECTION END
===================================================== */

/* =====================================================
            INSTAGRAM GALLERY SECTION START
===================================================== */

.instagram-gallery{
    padding:80px 0;
    background:#f8f9fa;
}

/* Gallery Item */

.insta-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;
}

.insta-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Image */

.insta-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;
}

.insta-item:hover img{

    transform:scale(1.1);
}

/* Overlay */

.insta-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        135deg,
        rgba(131,58,180,.75),
        rgba(253,29,29,.75),
        rgba(252,176,69,.75)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;
}

.insta-item:hover .insta-overlay{

    opacity:1;
}

/* Instagram Icon */

.insta-overlay i{

    font-size:55px;

    color:#fff;

    transform:scale(.5);

    transition:.4s;
}

.insta-item:hover .insta-overlay i{

    transform:scale(1);
}

/* Follow Button */

.instagram-gallery .btn{

    border-radius:50px;

    padding:14px 35px;

    font-size:17px;

    font-weight:600;

    transition:.35s;
}

.instagram-gallery .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(13,110,253,.35);
}

/* Responsive */

@media(max-width:992px){

    .insta-item img{

        height:220px;
    }

}

@media(max-width:768px){

    .instagram-gallery{

        padding:60px 0;
    }

    .insta-item img{

        height:180px;
    }

    .insta-overlay i{

        font-size:40px;
    }

}

@media(max-width:576px){

    .insta-item{

        border-radius:15px;
    }

    .insta-item img{

        height:150px;
    }

    .instagram-gallery .btn{

        width:100%;
    }

}

/* =====================================================
            INSTAGRAM GALLERY SECTION END
===================================================== */

/*==================================================
          FEATURED COLLECTIONS SECTION START
==================================================*/

.featured-collections{
    padding:80px 0;
    background:#f8f9fa;
}

/* Collection Card */

.collection-card{
    position:relative;
    height:450px;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Image */

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

/* Overlay */

.collection-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    transition:.4s;
}

/* Subtitle */

.collection-subtitle{
    display:inline-block;
    width:max-content;
    background:#0d6efd;
    color:#fff;
    font-size:13px;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:12px;
}

/* Title */

.collection-overlay h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
}

/* Button */

.collection-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:max-content;
    padding:12px 22px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.collection-btn i{
    transition:.4s;
}

/* Hover */

.collection-card:hover img{
    transform:scale(1.12);
}

.collection-card:hover .collection-btn{
    background:#0d6efd;
    color:#fff;
}

.collection-card:hover .collection-btn i{
    transform:translateX(6px);
}

.collection-card:hover{
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* Responsive */

@media(max-width:991px){

.collection-card{
    height:380px;
}

.collection-overlay h3{
    font-size:26px;
}

}

@media(max-width:767px){

.featured-collections{
    padding:60px 0;
}

.collection-card{
    height:320px;
}

.collection-overlay{
    padding:20px;
}

.collection-overlay h3{
    font-size:22px;
}

.collection-btn{
    padding:10px 18px;
    font-size:14px;
}

}

/* Scroll Animation */

.collection-card{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.collection-card.show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
      FEATURED COLLECTIONS PREMIUM EFFECTS
==================================================*/

/* Overlay Animation */

.collection-overlay{

    transition:.5s;
}

.collection-card:hover .collection-overlay{

    background:linear-gradient(to top,
    rgba(0,0,0,.82),
    rgba(0,0,0,.25));

}

/* Subtitle */

.collection-subtitle{

    transition:.4s;
}

.collection-card:hover .collection-subtitle{

    background:#fff;

    color:#0d6efd;

}

/* Title */

.collection-overlay h3{

    transition:.4s;
}

.collection-card:hover h3{

    transform:translateY(-5px);

}

/* Button */

.collection-btn{

    overflow:hidden;

    position:relative;
}

.collection-btn::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transition:.5s;

}

.collection-btn:hover::before{

    left:100%;

}

/* Card Border */

.collection-card{

    border:2px solid transparent;

}

.collection-card:hover{

    border-color:#0d6efd;

}

/* Smooth */

.collection-card,
.collection-overlay,
.collection-btn,
.collection-overlay h3,
.collection-subtitle{

    transition:all .4s ease;

}

/*==================================================
          FEATURED COLLECTIONS SECTION END
==================================================*/

/*==================================================
            LATEST BLOG SECTION START
==================================================*/

.latest-blog{
    padding:80px 0;
    background:#f8f9fa;
}

/* Blog Card */

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Blog Image */

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/* Blog Content */

.blog-content{
    padding:25px;
}

.blog-date{
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
}

.blog-date i{
    margin-right:6px;
}

.blog-content h4{
    margin:15px 0;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
    transition:.3s;
}

.blog-card:hover h4{
    color:#0d6efd;
}

.blog-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

/* Read More Button */

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
    transition:.3s;
}

.blog-btn i{
    transition:.3s;
}

.blog-btn:hover{
    color:#084298;
}

.blog-btn:hover i{
    transform:translateX(6px);
}

/* Responsive */

@media(max-width:991px){

.blog-image img{
    height:220px;
}

}

@media(max-width:767px){

.latest-blog{
    padding:60px 0;
}

.blog-image img{
    height:200px;
}

.blog-content{
    padding:20px;
}

.blog-content h4{
    font-size:20px;
}

}

/* Card Border */

.blog-card{

    border:1px solid #ececec;

    position:relative;

}

/* Hover Border */

.blog-card:hover{

    border-color:#0d6efd;

}

/* Image Overlay */

.blog-image{

    position:relative;

}

.blog-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.45),
    transparent);

    opacity:0;

    transition:.4s;

    z-index:1;

}

.blog-card:hover .blog-image::before{

    opacity:1;

}

/* Date Badge */

.blog-date{

    display:inline-block;

    background:#eaf3ff;

    color:#0d6efd;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/* Title */

.blog-content h4{

    min-height:65px;

}

/* Read More Button */

.blog-btn{

    padding:12px 22px;

    border:2px solid #0d6efd;

    border-radius:50px;

}

.blog-btn:hover{

    background:#0d6efd;

    color:#fff;

}

/* Arrow */

.blog-btn i{

    transition:.4s;

}

.blog-btn:hover i{

    transform:translateX(8px);

}

/* Shine Effect */

.blog-card::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-20deg);

    transition:.8s;

}

.blog-card:hover::before{

    left:130%;

}

/*==================================================
            LATEST BLOG SECTION END
==================================================*/

/*==================================================
                FAQ SECTION START
==================================================*/

.faq-section{
    padding:80px 0;
    background:#f8f9fa;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid #e5e5e5;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.4s;
}

.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.faq-item.active{
    border-color:#0d6efd;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 25px;
    cursor:pointer;
}

.faq-question h5{
    margin:0;
    font-size:19px;
    font-weight:600;
    color:#222;
}

.faq-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:16px;
    transition:.4s;
}

.faq-item:hover .faq-icon{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    margin:0;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-icon{
    background:#198754;
}

@media(max-width:768px){

.faq-section{
    padding:60px 0;
}

.faq-question{
    padding:18px;
}

.faq-question h5{
    font-size:17px;
}

.faq-answer p{
    padding:0 18px 18px;
}

}



/*==================================================
                FAQ SECTION END
==================================================*/

/* =====================================================
            NEWSLETTER SECTION START
===================================================== */

.newsletter-section{
    padding:80px 0;
    background:#f8f9fa;
}

.newsletter-box{

    background:linear-gradient(135deg,#0d6efd,#4f46e5);

    border-radius:25px;

    padding:60px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(13,110,253,.25);

}

/* Background Circle */

.newsletter-box::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;
    right:-100px;

}

.newsletter-box::after{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-80px;
    left:-60px;

}

/* Content */

.newsletter-content{

    position:relative;
    z-index:2;

}

.newsletter-tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.newsletter-content h2{

    font-size:42px;

    font-weight:700;

     color: #ffffff;


    margin-bottom:20px;

}

.newsletter-content p{

    font-size:17px;

    line-height:1.8;

    opacity:.9;

    color: #ffffff;

    font-family:arial;

}

/* Form */

.newsletter-form{

    position:relative;

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:60px;

    padding:8px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    z-index:2;

}

.newsletter-form i{

    font-size:20px;

    color:#0d6efd;

    margin-left:20px;

}

.newsletter-form input{

    flex:1;

    border:none;

    outline:none;

    padding:15px;

    font-size:16px;

    background:transparent;

}

.newsletter-form button{

    border:none;

    background:#0d6efd;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.newsletter-form button:hover{

    background:#084298;

    transform:scale(1.05);

}

/* Message */

#newsletterMessage{

    display:block;

    margin-top:15px;

    font-size:15px;

    font-weight:600;

}

/* Responsive */

@media(max-width:991px){

.newsletter-box{

padding:45px;

text-align:center;

}

.newsletter-content{

margin-bottom:35px;

}

.newsletter-content h2{

font-size:34px;

}

}

@media(max-width:768px){

.newsletter-section{

padding:60px 0;

}

.newsletter-box{

padding:30px;

}

.newsletter-form{

flex-direction:column;

border-radius:20px;

padding:20px;

}

.newsletter-form i{

margin:0 0 15px;

}

.newsletter-form input{

width:100%;

text-align:center;

margin-bottom:15px;

}

.newsletter-form button{

width:100%;

}

.newsletter-content h2{

font-size:28px;

}

.newsletter-content p{

font-size:15px;

}

}

/* =====================================================
            NEWSLETTER SECTION END
===================================================== */

/* =====================================================
                FOOTER SECTION START
===================================================== */

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 0;
    position:relative;
}

/* Footer Logo */

.footer-logo{

    font-size:32px;

    font-weight:700;

    margin-bottom:20px;

    color:#fff;
}

.footer-logo i{

    color:#0d6efd;

    margin-right:10px;
}

/* About */

.footer-widget p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:25px;
}

/* Heading */

.footer-widget h4{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

    padding-bottom:12px;
}

.footer-widget h4::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:60px;
    height:3px;

    background:#0d6efd;
}

/* List */

.footer-widget ul{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-widget ul li{

    margin-bottom:14px;
}

.footer-widget ul li a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.3s;
}

.footer-widget ul li a:hover{

    color:#0d6efd;

    padding-left:8px;
}

/* Contact */

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#d6d6d6;
}

.footer-contact i{

    color:#0d6efd;

    margin-top:4px;
}

/* Social Icons */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;
}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1f2937;

    color:#fff;

    border-radius:50%;

    transition:.35s;

    text-decoration:none;
}

.footer-social a:hover{

    background:#0d6efd;

    transform:translateY(-6px);
}

/* Divider */

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:50px 0 30px;
}

/* Bottom */

.footer-bottom{

    padding-bottom:30px;
}

.footer-bottom p{

    color:#cfcfcf;

    margin:0;
}

/* Payment */

.payment-img{

    max-width:260px;

    width:100%;
}

/* Back To Top */

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

    box-shadow:0 10px 25px rgba(13,110,253,.4);

    transition:.35s;
}

#backToTop:hover{

    background:#084298;

    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-widget h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.payment-img{

margin-top:20px;

}

}

@media(max-width:768px){

.footer{

padding:60px 0 0;

}

.footer-logo{

font-size:28px;

}

.footer-widget h4{

font-size:20px;

}

}

.payment-icons{

    display:flex;

    justify-content:flex-end;

    gap:18px;

    font-size:42px;

}

.payment-icons i{

    color:#ffffff;

    transition:.3s;

}

.payment-icons i:hover{

    color:#0d6efd;

    transform:translateY(-5px);

}

@media(max-width:991px){

.payment-icons{

justify-content:center;

margin-top:20px;

}

}

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:9999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:#084298;

    transform:translateY(-5px);

}

/* =====================================================
                FOOTER SECTION END
===================================================== */

/* =======================================
        Click Animation
======================================= */

.insta-item.clicked{

    animation:instaClick .3s ease;
}

@keyframes instaClick{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(.95);

    }

    100%{

        transform:scale(1);

    }

}

/* ==============================
        Toast Notification
================================ */

.toast-message{

    position:fixed;

    top:30px;

    right:30px;

    background:#198754;

    color:#fff;

    padding:14px 20px;

    border-radius:10px;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transform:translateX(350px);

    opacity:0;

    transition:.4s;

    z-index:9999;
}

.toast-message.show{

    transform:translateX(0);

    opacity:1;
}

.toast-message i{

    font-size:18px;
}

/* ==============================
        Toast Notification End
================================ */

/*=========================
        ABOUT SECTION
==========================*/

.about-section{
    padding:100px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    background:#0d6efd;
    color:#fff;
    padding:20px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-box h2{
    font-size:38px;
    margin-bottom:5px;
}

.about-content p{
    margin:20px 0;
    color:#666;
    line-height:1.8;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-features div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.about-features i{
    color:#0d6efd;
    font-size:18px;
}

@media(max-width:992px){

.about-wrapper{
    grid-template-columns:1fr;
}

.about-features{
    grid-template-columns:1fr;
}

.experience-box{
    right:15px;
}

}





