.home-wrapper{
    background:#f7f8fb;
}

.hero-section{
    padding:20px 0 10px;
}

.hero-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:22px;
}

.features-section{
    padding:35px 0;
}

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    height:100%;
}

.feature-box:hover{
    transform:translateY(-6px);
}

.feature-box i{
    width:60px;
    height:60px;
    background:#183f68;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:#fff;
}

.feature-box h5{
    margin:0;
    font-size:17px;
    font-weight:600;
}

.feature-box span{
    font-size:13px;
    color:#777;
}

.category-section{
    padding:70px 0;
}

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.section-heading h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;
}

.section-heading p{
    color:#777;
    margin:0;
}

.category-card{
    display:block;
    padding:10px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
    color:#222;
    text-decoration:none;
}

.category-card:hover{
    transform:translateY(-8px);
    text-decoration:none;
    color:#183f68;
}

.category-image{
    height:160px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
}

.category-image img{
    width:140px;
    height:140px;
    object-fit:contain;
    transition:.3s;
}

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

.category-card h5{
    font-size:16px;
    font-weight:600;
    margin-top:10px;
}

@media (max-width: 768px){
    .category-image{
        height:100px;
    }

    .category-image img{
        width:85px;
        height:85px;
    }

    .category-card h5{
        font-size:14px;
    }
}

.modern-product-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    height:500px;
    display:flex;
    flex-direction:column;
    position:relative;
}

.modern-product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.home-products { 
    position: relative; 
} 

.section-heading-actions { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
} 

.product-carousel-btn { 
    width: 34px; 
    height: 34px; 
    border: 1px solid #ddd; 
    background: #fff; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all .2s ease; 
} 

.product-carousel-btn:hover { 
    background: #183f68; 
    color: #fff; 
    border-color: #183f68; 
} 

.product-carousel-btn i { 
    font-size: 12px; 
} 

.product-carousel-wrapper { 
    position: relative; 
    overflow: hidden; 
} 

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 5px 2px 15px;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-carousel-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}
    
@media (max-width: 991px) { 
    .product-carousel-item { 
        flex: 0 0 calc(33.333% - 14px); 
    } 
} 

@media (max-width: 767px) { 
    .section-heading-actions { 
        gap: 5px; 
    } 
    
    .product-carousel-btn { 
        width: 30px; 
        height: 30px; 
    } 
    
    .product-carousel-item { 
        flex: 0 0 calc(50% - 10px); 
    } 
    
    .product-carousel { 
        gap: 12px; 
    } 
}

.product-image{
    height:240px;
    background:#fafafa;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.product-image img{
    max-width:100%;
    max-height:190px;
    object-fit:contain;
    transition:.3s;
}

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

.product-body{
    padding:16px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-brand{
    font-size:12px;
    color:#888;
    margin-bottom:4px;
}

.product-title{
    height:44px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.product-title a{
    color:#222;
    text-decoration:none;
}

.product-price{
    margin:12px 0;
}

.current-price{
    font-size:22px;
    font-weight:700;
    color:#183f68;
}

.old-price{
    margin-left:8px;
    color:#999;
    text-decoration:line-through;
    font-size:14px;
}

.product-actions{
    margin-top:auto;
}

.product-actions .btn{
    border-radius:10px;
    font-weight:600;
    padding:10px;
}

.discount-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#e53935;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
}

.wishlist{
    position:absolute;
    top:12px;
    right:12px;
    z-index:5;
}

.wishlist .btn{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,.12);
}

.offer-circle{
    position:absolute;
    top:12px;
    left:12px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#e53935;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-weight:700;
    box-shadow:0 8px 18px rgba(229,57,53,.35);
}

.promo-section{
    padding:50px 0;
}

.promo-banner{
    background:linear-gradient(135deg,#183f68,#2b6aa3);
    border-radius:28px;
    overflow:hidden;
    color:#fff;
    padding:60px;
    position:relative;
}

.promo-tag{
    display:inline-block;
    background:#fff;
    color:#183f68;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.promo-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.promo-content p{
    font-size:18px;
    opacity:.9;
    line-height:30px;
    max-width:500px;
}

.promo-btn{
    display:inline-flex;
    align-items:center;
    background:hsl(0, 0%, 100%);
    color:#183f68;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    margin-top:25px;
    transition:.3s;
}

.promo-btn:hover{
    transform:translateY(-3px);
    text-decoration:none;
}

.promo-image{
    max-height:360px;
}

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

.section-header-center{
    text-align:center;
    margin-bottom:50px;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    background:#183f68;
    color:#fff;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.section-header-center h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:12px;
}

.section-header-center p{
    color:#777;
    max-width:600px;
    margin:auto;
}

.brand-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    display:block;
    transition:.3s;
    height:180px;
    margin-top: 20px;
}

.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    border-color:#183f68;
}

.brand-card img{
    max-height:70px;
    max-width:140px;
    object-fit:contain;
    margin:auto;
    margin-bottom:20px;
    transition:.3s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

.brand-card span{
    display:block;
    font-weight:600;
    color:#333;
}

.service-section{
    padding:80px 0;
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
    height:100%;
    border:1px solid #eee;
}

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

.service-icon{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    background:#183f68;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.service-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.service-card p{
    color:#777;
    margin:0;
    line-height:26px;
}

.swiper {
    padding: 15px;
}