
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #ff6b6b;
}


html, body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

ul, li{
    list-style: none;
}
/*Cart Widget Start*/

.cart-widget {
    position: fixed;
    bottom: 85px;
    right: 0;
    background: #5e3d1e;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    cursor: pointer;
}
.cart-icon, .cart-timer {
    background-color: #be314a;
}
.cart-icon {
    border-bottom: 1px solid #ffffff30;
}
.cart-widget small {
    font-weight: bold;
}
/*Cart Widget End*/


.navbar-brand img {
    height: 40px;
}
.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
}
.top-bar {
    background-color: #003366;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    text-align: center;
}
.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    position: relative;
}
.icon-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: black;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/*Hero Section */


/*Carousel*/


/* Slider Container */
.product-slider {
    margin: 30px auto 0;
}

/* Individual Slide Styling */
.product-slide {

    position: relative;
    transition: all 0.3s ease;
}

.product-slide:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 5px;
}

.product-details-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title{
    font-size: 16px;
    padding: 5px 2px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .5px;
}


.product-price {
    color: #e63946;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 2px;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Navigation Arrows */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:before, .slick-next:before {
    color: #333;
    font-size: 20px;
}

/* Dots Navigation */
.slick-dots li button:before {
    font-size: 10px;
}

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

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 1rem;
    }
}


/*Category Slider*/


.category-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.category-slider {
    margin: 0 -15px;
}

.category-card {
    background: white;
    margin: 0 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.category-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:before, .slick-next:before {
    color: #333;
    font-size: 20px;
}

@media (max-width: 768px) {
    .category-card {
        height: 180px;
        padding: 20px;
    }

    .category-name {
        font-size: 1.3rem;
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}



/*Section */

.custom-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.small-image {
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .small-image {
        margin-bottom: 20px;
    }
}



/*New Arrival */

.main-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 1px 1px 2px #000;
}
.product-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;

    border: 1px solid #eee;


    transition: 0.3s;
    height: 100%;
}


.card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

.card img {
    width: 100%;
    height: auto;
}




.product-color {
    display: inline-block;
    padding: 5px 15px;
    color: white;
    font-weight: bold;
    margin-top: 10px;
}
.cart-button{
    padding-top: 29px;
}

.choose-btn {
    position: absolute;
    width: 100%;
    margin-top: 15px;
    font-weight: 500;
    border-radius: 10px;
    bottom: 0;
    border:1px solid #d8d8d8;
}



.pagination{
    display:inline-flex;
}
.filter_button{
    /* height:20px; */
    text-align: center;
    background:#F7941D;
    padding:8px 16px;
    margin-top:10px;
    color: white;
}
/* Sidebar Button */
.sidebar-btn {
    position: fixed;
    top: 111px;
    left: 4px;
    background: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    z-index: 999;
}

/* Sidebar Modal */
.sidebar-modal {
    position: fixed;
    top: 0;
    left: -300px; /* Initially hidden */
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

/* Sidebar Content */
.sidebar-content {
    padding: 20px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
}

/* Category List */
.category-item {
    list-style: none;
    margin-bottom: 10px;
}

.category-toggle {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 5px;
}

.toggle-icon {
    font-size: 18px;
    font-weight: bold;
}

.subcategory-list {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}

.subcategory-list li {
    list-style: none;
    padding: 5px 0;
}

.subcategory-list a {
    color: #666;
    text-decoration: none;
}

.subcategory-list a:hover {
    color: black;
}








.product-card img {
    width: 100%;
    height: auto;
}
.price-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffffffcc;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
}
.view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .main-col {
        margin-bottom: 20px;
    }
}





/* Side Cart */
.side-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.side-cart.open {
    right: 0;
}
.close-cart-btn{
    border-radius: 5px;
    background: #343a40;
    color: #ffffff;
    height: 30px;
    width: 30px;
}
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1030;
    display: none;
}
.cart-overlay.show {
    display: block;
}

/* Cart Content */
.cart-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}
.cart-body {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}
.cart-item-details {
    flex: 1;
}
.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}
.cart-item-price {
    font-weight: bold;
    color: #d32f2f;
    font-size: 14px;
}
.cart-item-original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 12px;
    margin-left: 5px;
}
.cart-item-variant {
    color: #555;
    font-size: 12px;
    margin: 3px 0;
}
.quantity-control {
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    font-size: 12px;
    padding: 0;
}
.quantity-input {
    width: 40px;
    height: 25px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    font-size: 12px;
}
.remove-item {
    color: #d32f2f;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
}
.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background: white;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 15px;
}
.checkout-btn {
    width: 100%;
}

@media (max-width: 576px) {
    .side-cart {
        width: 100%;
        right: -100%;
    }
}

/* Animation for new items */
@keyframes highlight {
    0% { background-color: rgba(211, 47, 47, 0.1); }
    100% { background-color: white; }
}
.cart-item.highlight {
    animation: highlight 1.5s ease-out;
}



/*Size Btn*/


.size-btn {
    margin: 3px;
    padding: 6px 6px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: inline-block;
    border-radius: 5px;
    width: 40px;
    text-align: center;
}

.size-btn.active {
    background-color: #000;
    color: white;
    border-color: #000;
}
.size-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}













/*Responsive Media Query Start*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .navbar-brand img {
        max-height: 30px;
    }
    .size-btn{
        width: 35px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 35px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-brand img {
        max-height: 40px;
    }


}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand img {
        max-height: 45px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .navbar-brand img {
        max-height: 50px;
    }
}




/*Responsive Media Query End*/
