﻿body {
    background-color: #f8f8f8
}

#Header {
    padding-top: 20px;
    background-color: #fff;
}
/* Set max width for the logo */
.logo {
    max-width: 170px; /* Set maximum width */
    height: auto; /* Maintain aspect ratio */
}

/* Optional: Adjust the search bar to fill remaining space */
.d-flex .form-control {
    flex-grow: 1; /* Make search bar take up remaining space */
}
/* Remove blue border on focus */
.form-control:focus {
    box-shadow: none; /* Removes the shadow */
    outline: none; /* Removes the outline */
}

.floating-div {
    position: absolute;
    top: 100%; /* Places the div right under the search bar */
    left: 0;
    width: 100%; /* Same width as the search bar */
    z-index: 1000; /* Ensure it's above other elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

#searchInput {
    background-color: #f8f8f8;
    border: 0;
}

.Search-Item {
    padding: 0 10px;
}

#floatingDiv {
    flex-wrap: wrap;
}
/* Custom style for hover dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.category-list {
    min-width: 200px;
}

.product-list {
    min-width: 300px;
}

.category-modal {
    display: none;
    position: fixed;
    top: 144px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 500px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.category-modal-content {
    display: flex;
    height: 100%;
}

.category-main {
    width: 30%;
    background-color: #f9f9f9;
    overflow-y: auto;
    padding: 15px;
}

.category-sub {
    width: 70%;
    background-color: #fff;
    overflow-y: auto;
    padding: 15px;
}

.category-item {
    padding: 10px;
    cursor: pointer;
}

    .category-item a,
    .sub-category-item a {
        display: block;
        width: 100%;
        color: #000;
        text-decoration: none;
    }

.sub-category-item {
    padding: 8px;
    cursor: pointer;
}

    .category-item:hover, .sub-category-item:hover {
        background-color: #e0e0e0;
    }

.category-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}
/* Make the dropdown menu appear on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Style the dropdown items */
.dropdown-menu {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
}

    /* Optional: Hover effect for dropdown items */
    .dropdown-item:hover {
        background-color: #f1f1f1;
    }

.navbar-nav.left .nav-item:not(:first-child) {
    position: relative;
    padding-left: 20px; /* Add some space on the left side */
}

    .navbar-nav.left .nav-item:not(:first-child)::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background-color: #ccc; /* Line color */
        margin-left: 10px; /* Add space between the line and the text */
    }

#categoryBtn, #categoryBtn:hover {
    background-color: transparent;
    color: #000;
    border: none;
}

#searchBtn, #searchBtn:hover {
    background-color: #f8f8f8;
    color: #000;
    border: none;
}

#Footer1 {
    display: block;
    background-color: #ae955e;
    padding: 20px 0;
}

    #Footer1 .Color1 {
        color: #fff;
    }

    #Footer1 .Color2 {
        color: #fff;
    }

#Footer2 {
    display: block;
    padding-top: 50px;
    background-color: #fff;
}

.List1 {
    list-style-type: none; /* Remove the dots */
    padding: 0;
    margin: 0;
    display: flex; /* Make the items align horizontally */
}

    .List1 li {
        margin-right: 20px; /* Add some space between items */
    }

        .List1 li a {
            text-decoration: none; /* Remove underline */
            color: black; /* Make the text always black */
        }

            .List1 li a:hover {
                text-decoration: underline; /* Add underline on hover */
            }

.List2 {
    list-style-type: none; /* Remove the dots */
    padding: 0;
    margin: 0;
}

    .List2 li {
        margin-right: 20px; /* Add some space between items */
    }

        .List2 li a {
            text-decoration: none; /* Remove underline */
            color: black; /* Make the text always black */
        }

            .List2 li a:hover {
                text-decoration: underline; /* Add underline on hover */
            }

.Social ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next row */
    justify-content: center; /* Center the items horizontally */
}

    .Social ul li {
        width: 33.33%; /* Each item takes up 1/3rd of the row (3 per row) */
        text-align: center; /* Center the content inside each list item */
        margin-bottom: 10px; /* Add space between rows */
    }

        .Social ul li a img {
            width: 40px; /* Adjust icon size */
            height: auto;
        }
/* Make carousel controls (arrows) visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add background color for better visibility */
    border-radius: 50%; /* Optional: Make arrows circular */
    width: 30px; /* Adjust arrow size */
    height: 30px; /* Adjust arrow size */
}

/* Ensure controls are always visible */
.carousel-control-prev,
.carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

    /* Optional: You can add a hover effect to the controls if desired */
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 0.8;
    }

.Apps {
    list-style-type: none;
}

    .Apps li {
        padding: 5px 0;
    }

/* General Product Slider Row Styling */
.product-slider-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px; /* Adds space between the product cards */
}

/* Styling for Each Product Card */
.product-card {
    min-width: 160px;
    width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Arrange content vertically */
    justify-content: space-between; /* Space out content vertically */
    align-items: center; /* Center content horizontally */
    background-color: #fff;
    border-radius: 15px;
    padding-bottom: 20px;
    margin: 5px;
}

/* Product Image Container */
.product-image {
    position: relative;
    width: 130px;
    height: 130px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 0; /* Adds space between image and title */
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Icon Container */
.icons {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5px;
}

/* Favorite Heart Icon */
.heart-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #f00;
    cursor: pointer;
}

/* Add to Cart Icon */
.cart-icon {
    bottom: 5px;
    right: 5px;
    color: #000;
    cursor: pointer;
}

/* Rating Icon */
.rating-icon {
    bottom: 5px;
    left: 5px;
    color: #ffc107;
    display: flex;
    align-items: center;
}

/* Title, Info, and Price Styling */
.product-title {
    font-size: 14px;
    margin: 10px 0 5px 0;
    text-align: left;
}

    .product-title a {
        color: #000;
        text-decoration: none;
    }

.product-info {
    text-align: left;
    font-size: 12px;
    color: #666;
    margin: 0 5px; /* Ensure spacing between the info and images */
}

.sale-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.sale {
    font-size: 12px;
    color: #d9534f;
    margin-right: 10px;
    text-align: center;
    text-decoration-line: line-through;
}

.price {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* Smaller and repositioned carousel arrows */
.carousel-control-next,
.carousel-control-prev,
.ProductSliderPrevArrow,
.ProductSliderNextArrow {
    width: 30px !important; /* Reduce the width */
    height: 30px !important; /* Reduce the height */
    background-color: rgba(0, 0, 0, 0.5); /* Add a background color for visibility */
    border-radius: 50%; /* Make the arrow buttons circular */
    top: 50%; /* Vertically center the buttons */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
}

.ProductSliderPrevArrow {
    left: 50px; /* Position outside the left of the carousel */
}

.ProductSliderNextArrow {
    right: 50px; /* Position outside the right of the carousel */
}

@media only screen and (max-width: 761px) {
    .ProductSliderPrevArrow {
        left: 0px; /* Position outside the left of the carousel */
    }

    .ProductSliderNextArrow {
        right: 0px; /* Position outside the right of the carousel */
    }
}

.ProductSliderPrevArrow-icon,
.ProductSliderNextArrow-icon {
    width: 30px !important; /* Reduce the size of the icons */
    height: 30px !important;
}

.ProductSliderPrevArrow:hover,
.ProductSliderNextArrow:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
}

/*@media only screen and (max-width: 650px) {
    .ProductSliderPrevArrow, .ProductSliderNextArrow {
        visibility: hidden;
    }
}*/

.ads {
    width: 100%;
}

    .ads img {
        width: 100%;
    }



.product-detail-container {
    display: flex;
    justify-content: center;
    margin: 20px;
    direction: ltr;
}

/* Left side: Image section */
.product-images {
    display: flex;
    padding: 0 10px;
    width: 100%;
    max-width: 500px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .small-images img {
        width: 60px;
        height: 60px;
        cursor: pointer;
        border: 1px solid #ddd;
        border-radius: 5px;
        object-fit: cover;
    }

.main-image {
    margin-left: 20px;
}

/* Right side: Product info */
.product-info {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rating {
    font-size: 20px;
    color: #ffc107;
}

.favorite {
    font-size: 24px;
    color: red;
    cursor: pointer;
}

.product-title {
    font-size: 12px;
    margin: 10px 7px;
}

.pricing {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-direction: column;
}

.sale-price {
    font-size: 20px;
    color: #d9534f;
    font-weight: bold;
}

.main-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #888;
}

.add-to-bag-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

    .add-to-bag-btn:hover {
        background-color: #444;
    }

.product-description {
    font-size: 14px;
    color: #666;
}
/* Small images (thumbnails) */
.small-images img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
    object-fit: contain; /* Ensures image fills the area without distorting */
}

/* Main product image */
.main-image img {
    max-width: 450px !important;
    width: 100% !important;
    object-fit: contain; /* Ensures the image will fill the container, keeping the aspect ratio */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Initial state of the sidebar: hidden (off-screen) */
.account-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Move it off-screen to the right */
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease; /* Slide effect */
    z-index: 999; /* Behind the account icon */
    padding: 20px;
}

    /* When the sidebar is visible */
    .account-sidebar.active {
        right: 0; /* Bring the sidebar into view */
    }

#accountSidebar .CloseBtn {
    background-color: #fff;
    border: none;
}
/* Style for the form fields */
.account-sidebar .form-group {
    margin-bottom: 15px;
}

.account-sidebar .form-control {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.account-sidebar .btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.account-sidebar .btn-primary {
    background-color: #007bff;
    color: white;
}

.account-sidebar .btn-success {
    background-color: #28a745;
    color: white;
}

.account-sidebar .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

    .account-sidebar .divider span {
        background-color: #f8f8f8;
        padding: 0 10px;
        color: #888;
    }

    .account-sidebar .divider:before,
    .account-sidebar .divider:after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ddd;
        margin: 0 10px;
    }
/* Button style */
.account-sidebar .btn-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

/* Form transition (optional for smooth effect) */
#loginForm, #createAccountForm {
    transition: opacity 0.3s ease;
}

.CustomBtn, .CustomBtn:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Star Rating CSS */
.rating-box {
    margin: 20px 0;
    font-size: 24px;
}

    .rating-box .star {
        cursor: pointer;
        color: #ccc; /* Gray color for inactive stars */
        transition: color 0.2s ease;
    }

        .rating-box .star:hover,
        .rating-box .star.active {
            color: gold; /* Highlight the active stars with gold color */
        }

/* Tabs CSS */
.product-tabs-container {
    margin-top: 20px;
}

ul.tabs {
    list-style: none;
    padding: 0;
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
}

    ul.tabs li {
        padding: 10px 20px;
        cursor: pointer;
        border: 1px solid #ddd;
        border-bottom: none;
    }

        ul.tabs li.active {
            background-color: #f8f8f8;
            border-top: 2px solid #000;
            font-weight: bold;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.comment-box {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.comment {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.account-edit-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.addresses-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

    .table th, .table td {
        padding: 10px;
        text-align: left;
    }

    .table th {
        background-color: #f0f0f0;
    }

    .table td {
        border-bottom: 1px solid #ccc;
    }

.btn {
    margin: 0 5px;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
}

.btn-update {
    background-color: #28a745;
}

.btn-delete {
    background-color: #dc3545;
}

.btn-selected {
    background-color: #17a2b8;
}

#favoriteProductsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items to the start */
    gap: 20px; /* Adds space between each card */
}

    #favoriteProductsContainer .product-card {
        width: calc(100% / 7 - 20px); /* 7 cards per row with 20px gap */
        box-sizing: border-box;
        padding: 10px;
        background-color: white;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

        #favoriteProductsContainer .product-card img {
            width: 100%; /* Make the image responsive */
            height: auto;
        }

        #favoriteProductsContainer .product-card:hover {
            transform: scale(1.05); /* Slight scale-up on hover */
        }

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    #favoriteProductsContainer .product-card {
        width: calc(100% / 5 - 20px); /* 5 cards per row for large screens */
    }
}

@media (max-width: 992px) {
    #favoriteProductsContainer .product-card {
        width: calc(100% / 4 - 20px); /* 4 cards per row for medium screens */
    }
}

@media (max-width: 768px) {
    #favoriteProductsContainer .product-card {
        width: calc(100% / 3 - 20px); /* 3 cards per row for small screens */
    }
}

@media (max-width: 576px) {
    #favoriteProductsContainer .product-card {
        width: calc(100% / 2 - 20px); /* 2 cards per row for extra small screens */
    }
}

@media (max-width: 400px) {
    #favoriteProductsContainer .product-card {
        width: 100%; /* 1 card per row for very small screens */
    }
}
/* Style for the default (unfilled) heart */
.heart-icon {
    font-size: 24px; /* Adjust size as needed */
    color: gray; /* Unfilled heart color */
    cursor: pointer;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

    /* Style for the filled heart */
    .heart-icon.filled-heart {
        color: red; /* Filled heart color */
    }

    /* Hover effect for heart icon */
    .heart-icon:hover {
        color: #ff0000; /* Change to red when hovered */
    }

.order-page-container {
    padding: 20px;
}

.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

    .table th, .table td {
        text-align: center;
        vertical-align: middle;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .table .btn {
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
    }

.order-detail-container {
    padding: 20px;
}

.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

    .table th, .table td {
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .table .product-image {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

.text-end {
    text-align: right;
}

.table tfoot td {
    font-weight: bold;
    font-size: 16px;
}

.cart-container {
    padding: 20px;
}

.table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

    .table th, .table td {
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .table .product-image {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

.text-end {
    text-align: right;
}

.table tfoot td {
    font-weight: bold;
    font-size: 16px;
}

.btn-outline-secondary {
    padding: 0 10px;
    font-size: 14px;
}

.Marka img {
    width: 100px;
    height: auto;
}

.Marka a {
    display: flex;
    color: #000;
    text-decoration: none;
    align-items: center;
}

    .Marka a div {
        padding: 10px;
    }

#bottomNav {
    display: none !important;
}
/* For screens larger than 991px, show CategoriesNav and hide the bottom nav */
@media (min-width: 992px) {
    #CategoriesNav {
        display: flex;
    }

    #bottomNav {
        display: none;
    }
}

/* For screens smaller than 991px, hide CategoriesNav and show the bottom nav */
@media (max-width: 991px) {
    #CategoriesNav {
        display: none;
    }

    #bottomNav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #fff;
        color: #757575;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    }

        #bottomNav a {
            color: #757575;
            text-decoration: none;
        }

        #bottomNav .icon {
            text-align: center;
            font-size: 14px;
        }

            #bottomNav .icon i {
                font-size: 24px;
            }

            #bottomNav .icon span {
                display: block;
                font-size: 12px;
            }
}

#PoweredBy {
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    #product-detail-container {
        flex-direction: column;
    }
}

#HeaderIcons {
    width: max-content !important;
}

.img-zoom-container {
    position: relative;
}

/* The image */
.img-zoom {
    width: 100%; /* You can adjust this as needed */
    height: auto;
}

/* The zoom lens (the visible zooming effect area) */
.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    /* Size of the zoom lens */
    width: 100px;
    height: 100px;
    cursor: crosshair;
}

/* The zoomed result container */
.img-zoom-result {
    border: 1px solid #d4d4d4;
    /* Size of the zoom result window */
    width: 400px;
    height: 400px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 110%; /* Position it to the right of the image */
}

.Marka h6 {
    font-size: 14px;
}

.bigStars {
    font-size: 24px;
    color: #ffc107;
}

.CategoryDiv h2 {
    font-size: 18px;
}

@media only screen and (max-width: 991px) {
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) { /* For mobile screens */
    .CategoryDiv .carousel-inner {
        display: flex; /* To allow side-by-side display */
                justify-content: center;
    }

    .CategoryDiv .carousel-item {
        flex: 0 0 40%; /* Show 40% width for each item */
        margin-right: 10px; /* Optional space between items */
        transition: transform 0.5s ease-in-out; /* Smooth transition */
    }

    .CategoryDiv .carousel-inner .active {
        display: flex;
    }
}

.carousel-item {
    transition: transform 0.5s ease-in-out; /* Smooth swipe transition */
}







/* Custom checkbox style */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* LTR (default) */
.custom-checkbox {
    direction: ltr;
}

.form-check-label {
    order: 1; /* Label (text) first */
}

.form-check-input {
    order: 2; /* Checkbox second */
}


/* General input spacing */
.custom-checkbox .form-check-input {
    margin-left: 10px; /* Space between text and checkbox */
}

#FilterPageTitle {
    padding: 10px 5px;
}

    #FilterPageTitle a {
        color: #000;
        text-decoration: none;
    }

@media only screen and (max-width: 991px) {
    #Footer2,
    #Footer1 {
        display: none;
    }

    .MobileSpace {
        height: 200px !important;
    }
}

.MobileSpace {
    height: 0px;
}

.MarkaName {
    width: 100%;
    padding: 0 7px;
    text-align: left;
}

    .MarkaName h6 {
        color: #777;
        font-size: 12px;
        margin: unset !important;
    }

.CategoryDiv {
    padding: 15px 0;
}

.Categories {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    column-gap: 5px;
}
.category-card  img{
    background-color:#ae955e;
    padding:15px;
    border-radius:100%;
}
.category-card  a{
    color:#000;
    text-decoration:none;
}

.category-card {
    padding: 10px;
    box-sizing: border-box;
}

.category-card img {
    max-width: 100%;
    height: auto;
}
#MainPageCategory .product-slider-row {
    display: flex;
    justify-content: center; /* Center the items horizontally */
}

.category-card {
    padding: 10px;
    box-sizing: border-box;
    flex: 1 0 auto; /* Allows the card to resize automatically */
    max-width: 100%; /* Ensures the card doesn’t exceed container width */
    text-align: center; /* Ensure the content inside the card is centered */
}

.category-card img {
    max-width: 100%;
    height: auto;
}
#accountSidebar{
    overflow:auto;
}