:root{

    --primary:#09490a;

    --secondary:#198754;

    --dark:#212529;

    --light:#f8f9fa;

    --gray:#6c757d;

    --danger:#dc3545;

    --warning:#ffc107;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:'Outfit',sans-serif;

font-size:15px;

background:#fff;

color:#222;

overflow-x:hidden;

}

a{

text-decoration:none;

transition:.3s;

}

img{

max-width:100%;

}

ul{

margin:0;

padding:0;

list-style:none;

}

.section-padding{

padding:20px 0;

}

.topbar{

background:#222;

color:#fff;

font-size:14px;

}

.topbar a{

color:#fff;

}

.header{

background:#fff;

box-shadow:0 3px 10px rgba(0,0,0,.08);

}


/* Search Box */
.search-wrapper{
     border:1px solid #dbe3ea;
    border-radius:50px;
    overflow:hidden;
    height:40px;
    background:#fff;
    transition:.3s;
}

.search-wrapper:hover{
    box-shadow:0 5px 15px rgba(36,77,109,.15);
    border-color:#244D6D;
}

.search-box{
    border:none;
    box-shadow:none !important;
    font-size:15px;
    padding:10px 18px;
}

.search-box::placeholder{
    color:#9aa5b1;
}

.search-box:focus{
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
}

.search-btn{
    width:52px;
    background:#244D6D;
    color:#fff;
    border:none;
    transition:.3s;
}

.search-btn:hover{
    background:#1b3d57;
    color:#fff;
}

.search-btn:focus,
.search-btn:active,
.search-btn:focus-visible{
    outline:none !important;
    box-shadow:none !important;
    border:none !important;
}



/*icon-header*/

/* Header Icons */
.header-icons{
    display:flex;
    align-items:center;
    gap:16px;
}

.icon-box{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:50%;
    color:#244D6D;
    font-size:18px;
    text-decoration:none;
    position:relative;
    transition:all .3s ease;
}

.icon-box:hover{
    background:#244D6D;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(36,77,109,.25);
}

.icon-box:focus,
.icon-box:active{
    outline:none;
    box-shadow:none;
}

/* Badge */
.icon-badge{
    position:absolute;
    top:2px;
    right:0;
    transform:translate(40%,-40%);
    min-width:20px;
    height:20px;
    background:#ff3b30;
    color:#fff;
    border-radius:50%;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
    line-height:1;
}

/* Mobile */
@media(max-width:991px){
    .header-icons{
        justify-content:center;
        margin-top:15px;
    }

    .icon-box{
        width:42px;
        height:42px;
        font-size:18px;
    }
}

/*navbar*/

/* Navbar */
.custom-navbar{
    background:#244D6D;
    min-height:45px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

/* Menu */
.custom-navbar .navbar-nav{
    gap:50px;
}

/* Links */
.custom-navbar .nav-link{
    color:#fff !important;
    font-size:14px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

/* Hover */
.custom-navbar .nav-link:hover{
    background:rgba(255,255,255,.12);
    color:#FFD166 !important;
}

/* Active */
.custom-navbar .nav-link.active{
    color:#FFD166 !important;
}

/* Bottom Line Animation */
.custom-navbar .nav-link::after{
    content:'';
    position:absolute;
    left:18px;
    bottom:8px;
    width:0;
    height:2px;
    background:#FFD166;
    transition:.3s;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after{
    width:calc(100% - 36px);
}

/* Remove Focus */
.custom-navbar .nav-link:focus,
.custom-navbar .nav-link:active{
    outline:none;
    box-shadow:none;
}

/* Toggler */
.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none !important;
}


/*responvie navbar*/
/* Mobile Navbar */
/* Mobile Top Header */

.mobile-topbar{
    background:#fff;
    padding:8px 15px;
    border-bottom:1px solid #eee;
}

/* Logo */

.mobile-logo img{
    height:42px;
    width:auto;
    display:block;
}

/* Icons */

.mobile-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.mobile-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#f5f7fa;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#244D6D;
    transition:.3s;
    position:relative;
}

.mobile-icon:hover{
    background:#244D6D;
    color:#fff;
}

/* Badge */

.badge-count{
    position:absolute;
    top:-4px;
    right:-4px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#dc3545;
    color:#fff;
    font-size:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:600;
}

/* Mobile */

@media(max-width:576px){

    .mobile-topbar{
        padding:8px 12px;
    }

    .mobile-logo img{
        height:38px;
    }

    .mobile-icon{
        width:35px;
        height:35px;
        font-size:14px;
    }

    .badge-count{
        width:16px;
        height:16px;
        font-size:9px;
    }

}

.mobile-navbar{
    background:#244D6D;
    padding:2px 0;
}

/* Remove White Border */

.custom-toggler{
    border:none !important;
    background:none;
    padding:6px;
    box-shadow:none !important;
    outline:none !important;
}

.custom-toggler:focus{
    box-shadow:none !important;
    outline:none !important;
}

/* 3 White Lines */

.custom-toggler span{
    display:block;
    width:24px;
    height:2.5px;
    background:#fff;
    margin:5px 0;
    border-radius:20px;
    transition:.3s;
}

/* Search */

.mobile-search{
    display:flex;
    width:100%;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
}

.mobile-search input{
    border:none;
    box-shadow:none !important;
    height:35px;
    font-size:14px;
}

.mobile-search input:focus{
    box-shadow:none;
}

.mobile-search button{
    border:none;
    background:#244D6D;
    color:#fff;
    width:48px;
}

/* Menu */

.mobile-menu{
    background:#fff;
    margin-top:12px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mobile-menu .nav-link{
    color:#222;
    font-size:15px;
    font-weight:500;
    padding:14px 20px;
    border-bottom:1px solid #f2f2f2;
    transition:.3s;
}

.mobile-menu .nav-link i{
    width:24px;
    color:#244D6D;
}

.mobile-menu .nav-link:hover{
    background:#244D6D;
    color:#fff;
    padding-left:28px;
}

.mobile-menu .nav-link:hover i{
    color:#fff;
}

.hero-slider img{
object-fit:contain;

}

.section-title{

margin-bottom:40px;

text-align:center;

}

.section-title h2{

font-weight:700;
font-size:24px;
text-align:left;

}

/*category-look*/

/* Category */
.category-item{
    transition:.3s;
}

.category-circle{
    width:130px;
    height:130px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    overflow:hidden;
    background:#fff;
    border:4px solid #f4f6f9;
    box-shadow:0 8px 25px rgba(36,77,109,.10);
    transition:.35s;
    position:relative;
    text-decoration:none;
}

.category-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.category-circle::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:3px solid transparent;
    transition:.35s;
}

.category-item:hover .category-circle{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(36,77,109,.20);
}

.category-item:hover .category-circle::after{
    border-color:#244D6D;
}

.category-item:hover img{
    transform:scale(1.08);
}

.category-item h6{
    font-size:15px;
    font-weight:600;
    color:#244D6D;
    margin-top:15px;
}

.category-item small{
    font-size:13px;
}

/* Tablet */
@media(max-width:991px){

    .category-circle{
        width:110px;
        height:110px;
    }

    .category-item h6{
        font-size:14px;
    }
}

/* Mobile */
@media(max-width:576px){

    .category-circle{
        width:85px;
        height:85px;
        border-width:3px;
    }

    .category-item h6{
        font-size:13px;
    }

    .category-item small{
        font-size:11px;
    }
}


.offer-banner{
    display:block;
    overflow:hidden;
    transition:.35s ease;
}

.offer-banner img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}

.offer-banner:hover{
    transform:translateY(-6px);
}

.offer-banner:hover img{
    transform:scale(1.05);
}

/* Tablet */
@media(max-width:991px){
    .offer-banner{
        height:200px;
    }
}

/* Mobile */
@media(max-width:576px){
    .offer-banner{
        height:170px;
    }
}

/*product cart*/

/* Product Card */
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #edf1f5;
    transition:.35s;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(36,77,109,.15);
    border-color:#244D6D20;
}

/* Image Box */
.product-image{
    position:relative;
    height:300px;
    background:#f8f9fb;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    overflow:hidden;
}

/* Same Image Size */
.product-image img{
    width:180px;
    height:260px;
    object-fit:contain;
    transition:.35s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Overlay */
.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(36,77,109,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}

.product-card:hover .product-overlay{
    opacity:1;
}

.product-overlay .btn{
    border-radius:30px;
    padding:8px 18px;
    font-size:14px;
}

/* Wishlist */
.wishlist-btn{
    position:absolute;
    top:12px;
    right:12px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#244D6D;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:2;
    transition:.3s;
    text-decoration:none;
}

.wishlist-btn:hover{
    background:#244D6D;
    color:#fff;
}

/* Discount */
.discount-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#ff4d4f;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    z-index:2;
}

/* Content */
.product-content{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content small{
    font-size:13px;
}

.product-content p{
    font-size:16px;
    font-weight:600;
    color:#222;
    line-height:1.4;
    height:46px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    margin-bottom:15px;
}

/* Price */
.price{
    margin-bottom:18px;
}

.new-price{
    font-size:22px;
    font-weight:700;
    color:#244D6D;
}

.old-price{
    margin-left:8px;
    color:#999;
    text-decoration:line-through;
}

/* Button */
.addToCart{
    margin-top:auto;
    background:#244D6D;
    border:none;
    font-weight:600;
    transition:.3s;
}

.addToCart:hover{
    background:#18364c;
    transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){

    .product-image{
        height:220px;
        padding:12px;
    }

    .product-image img{
        width:130px;
        height:180px;
    }

    .product-content{
        padding:14px;
    }

    .product-content p{
        font-size:14px;
        height:40px;
    }

    .new-price{
        font-size:18px;
    }

    .wishlist-btn{
        width:34px;
        height:34px;
    }
}


/*flas*/
/* Flash Sale */
.flash-sale-section{
    background:linear-gradient(135deg,#244D6D,#16374f);
    border-radius:20px;
    padding:45px;
    color:#fff;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 35px rgba(36,77,109,.20);
}

.flash-sale-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.sale-tag{
    display:inline-block;
    background:#FF9F1C;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.flash-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.flash-text{
    font-size:17px;
    opacity:.9;
    margin-bottom:25px;
}

.flash-btn{
    background:#fff;
    color:#244D6D;
    border-radius:40px;
    padding:12px 28px;
    font-weight:700;
    transition:.3s;
}

.flash-btn:hover{
    background:#FF9F1C;
    color:#fff;
}

/* Countdown */

.countdown{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
}

.time-box{
    width:95px;
    height:95px;
    background:#fff;
    color:#244D6D;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.time-box:hover{
    transform:translateY(-6px);
    background:#FF9F1C;
    color:#fff;
}

.time-box span{
    font-size:32px;
    font-weight:800;
    line-height:1;
}

.time-box small{
    font-size:14px;
    margin-top:8px;
    font-weight:600;
}

/* Responsive */

@media(max-width:991px){

    .flash-sale-section{
        padding:30px 20px;
        text-align:center;
    }

    .countdown{
        justify-content:center;
        margin-top:30px;
    }

    .flash-title{
        font-size:34px;
    }

    .time-box{
        width:80px;
        height:80px;
    }

    .time-box span{
        font-size:26px;
    }
}

/* Newsletter */
.newsletter-section{
    padding:80px 0;
    background:#f8fafc;
}

.newsletter-box{
    background:linear-gradient(135deg,#244D6D,#16374f);
    color:#fff;
    border-radius:24px;
    padding:60px 45px;
    position:relative;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(36,77,109,.18);
}

.newsletter-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-100px;
    right:-80px;
}

.newsletter-badge{
    display:inline-block;
    background:#FF9F1C;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.newsletter-box h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:15px;
}

.newsletter-box p{
    font-size:17px;
    opacity:.9;
    max-width:600px;
    margin:0 auto 35px;
}

/* Form */

.newsletter-form{
    max-width:650px;
    margin:auto;
    display:flex;
    gap:15px;
}

.newsletter-form .form-control{
    height:58px;
    border:none;
    border-radius:50px;
    padding:0 25px;
    font-size:16px;
    box-shadow:none !important;
}

.newsletter-form .form-control:focus{
    outline:none;
    box-shadow:none;
}

.subscribe-btn{
    min-width:180px;
    height:58px;
    border:none;
    border-radius:50px;
    background:#FF9F1C;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.subscribe-btn:hover{
    background:#e88800;
    color:#fff;
    transform:translateY(-2px);
}

/* Mobile */

@media(max-width:768px){

    .newsletter-box{
        padding:40px 20px;
    }

    .newsletter-box h2{
        font-size:30px;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .subscribe-btn,
    .newsletter-form .form-control{
        width:100%;
    }
}

/*product gallery*/

.footer{

background:#f1f1f1;

color:#244D6D;

padding:80px 0 20px;

}

.footer-logo{

font-size:30px;

font-weight:700;

color:#fff;

}

.footer h5{

color:#244D6D;

margin-bottom:20px;

font-weight:600;

}

.footer ul{

padding:0;

}

.footer ul li{

margin-bottom:12px;

list-style:none;

}

.footer ul li a{

color:#244D6D;

transition:.3s;

}

.footer ul li a:hover{

color:#244D6D;

padding-left:5px;

}

.social-icons{

margin-top:25px;

display:flex;

gap:12px;

}

.social-icons a{

width:42px;

height:42px;

background:#244D6D;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.3s;

}

.social-icons a:hover{

background:#244D6D;

transform:translateY(-4px);

}

.contact-info li{

display:flex;

gap:10px;

margin-bottom:15px;

}

.contact-info i{

color:#244D6D;

margin-top:4px;

}

.footer hr{

margin:40px 0 25px;

border-color:#374151;

}

.footer-bottom{

font-size:15px;

}