* {
    padding: 0;
    margin: 0;
    user-select: none;
    box-sizing: border-box;
}

/*===================*/
#toggleViewBtn {
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #18a1ff;
}

.favourite_btn,
.share_btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .7);
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
}

.favourite_btn_preview,
.share_btn_preview {
    padding: 8px;
    z-index: 99999;
    top: 15px;
    right: 15px;
    font-size: 20px;
}

.share_btn_preview {
    top: 55px;
    right: 15px;
    color: #514d4d;
}

.favourite_btn.active::before {
    content: "\f004";
    color: #f04747;
}

/*===================*/
.carousel-indicators [data-bs-target] {
    border-radius: 10px;
    background-color: lightgray;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #0d6efd;
}

/* Main page carousel */
#carouselMain .carousel-indicators {
    bottom: 10px;
}

#carouselMain .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
}

/* Product preview carousel */
.product_carousel .carousel-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.product_carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.product_carousel .carousel-indicators {
    /* bottom: -35px !important; */
}

/* Responsive carousel controls */
@media (min-width: 769px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}



/*================loader==================================*/
.custom-loader-container-9x7a1 {
    width: 100%;
    padding: 20px 0;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-loader-9x7a1 {
    display: flex;
    gap: 8px;
}

.dot-loader-9x7a1 span {
    width: 12px;
    height: 12px;
    background-color: #007aff;
    border-radius: 50%;
    animation: pulse-9x7a1 0.8s infinite ease-in-out;
}

.dot-loader-9x7a1 span:nth-child(2) {
    animation-delay: 0.1s;
}

.dot-loader-9x7a1 span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes pulse-9x7a1 {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/*---------------------color css start---------------------------*/
.cart_item_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    margin-left: 10px;
}

.price_and_color_div {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
    /* margin-bottom: 5px; */
}

.color_selection_div {}

.color_dropdown_menu {
    text-align: center;
    gap: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: fixed;
    z-index: 1;
    width: 74vw;
    top: 50%;
    left: 50%;
    /* left: 0; */
    transform: translate(-50%, -50%);
    display: none;
    z-index: 99999;
}

.color_dropdown_menu.active {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, .7);
}

.color_dropdown_menu.active::after {
    content: '✕';
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 30px;
    color: #fff;
    z-index: 999;
}

.color_dropdown_menu .color_box {
    cursor: pointer;
    width: 100%;
    border-radius: 2px;
    border: 3px solid #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.color_dropdown_menu .color_box.active {}

.color_box {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 1px solid #3888df;
}

.color_label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: -4px;
    /*border: 1px solid #3888df;*/
    color: #848080;
    position: relative;
}

.color_label span {
    font-size: 12px;
}

.color_label i {
    font-size: 12px;
    display: none;
}

.price_div {
    flex-grow: 1;
}

/*---------------------color css end---------------------------*/













.product_number {
    font-size: 10px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.product_number span {
    font-weight: bold;
}

.out_of_stock {
    font-size: 12px;
    color: red;
    font-weight: bold;
    display: flex;
    opacity: .5;
    align-items: center;
}

.top_div {
    /*position:fixed;*/
    /*width:100%;*/
    /*display:flex;*/
    /*align-items:center;*/
    /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    /*background:#fff;*/
    /*    z-index: 9999;*/
}

.category_heading {
    font-size: 20px;
    font-weight: bold;
    margin: 10px;

}

.offer_main_div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.offer_div {
    text-align: center;
    position: relative;
    align-items: center;
    min-width: 40px;
    background-color: #e5f7ee;
    color: #03753c;
    border-radius: 4px;
    max-width: 100%;
    text-transform: capitalize;
    font-family: "JioType", helvetica, arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: -0.06px;
    line-height: 1.3333333333;
    padding: 2px 4px;

}

.avg_cost {
    font-size: 10px;
    display: block;
    opacity: .7;
    margin-top: 2px;
    font-weight: 600;
    color: #d4330b;
}

.demo {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) rotate(338deg);
    color: rgba(79, 195, 227, .3);
    font-size: 40px;
    font-weight: bold;
    line-height: 0;
    padding: 0;
    margin: 0;
    z-index: 99999999999;
    display: none;
}

.categort_menu {
    /*background: #fff;*/
    padding: 10px 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    z-index: 99999;
    color: #000;
    overflow-x: auto;
    gap: 10px;
}

.categort_menu .category_img_div {
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 12px;
    /* Square with rounded corners */
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.categort_menu .category_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.categort_menu::-webkit-scrollbar {
    height: 1px;
}

.categort_menu::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Set the color of the scrollbar thumb */
    border-radius: 5px;
    /* Optional: Rounded corners for the thumb */
}

.categort_menu .category_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #000;
    padding: 8px 5px;
    transition: all 0.3s ease;
    outline: none;
    border: none;
}

.categort_menu .category_item:focus {
    outline: none;
}

.categort_menu .category_item:hover .category_img_div {
    background-color: #e8f4fd;
    border-color: #226ba1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 107, 161, 0.15);
}

.categort_menu .category_item.active .category_img_div {
    background: linear-gradient(135deg, #4285f4 0%, #1976d2 100%);
    border-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.3);
}

.categort_menu .category_item.active .category_img {
    filter: brightness(0) invert(1);
}

/*.categort_menu .category_item:hover{*/
/*    border: 1px solid #226ba1;*/
/*}*/
.categort_menu .category_item span {
    align-items: center;
    align-content: center;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-left: .25rem;
    padding-right: .25rem;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #565959;
    word-wrap: break-word;
}

.categort_menu .active {
    color: #fff;
    background: #4188E6;
}

/* ----------------------------------------- */
.search_main_div {
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    margin: 0px 10px;
    background: linear-gradient(264deg, rgba(69, 137, 235, 1) 0%, rgba(41, 134, 203, 1) 100%);
    z-index: 999999;
}


/*=========================Product Div===============================*/
.product_main_div {
    margin-top: 70px;
}

.product_item {
    display: flex;
    width: 100% !important;
    align-items: center;
    margin: auto;
    gap: 10px;
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
    margin-top: 20px;
    position: relative;
    /*background:#fff;*/
    border-radius: 5px;
    padding-bottom: 3px;
}

.product_main_div_cart .product_item {
    width: 95% !important;

}

.product_item .product_img {
    /* height: 135px;
    width: 135px; */
    aspect-ratio: 1/1;
    padding: 5px;
    /*border:1px solid #ddd8d8;*/

    border-radius: 5px;
}

.product_long_desc {
    display: none;
}

.product_physical_quantity {
    font-size: 12px;
    color: #696969;
    font-weight: 500;
}

.product_item .product_img img {
    height: 100%;
    width: 50%;
    user-select: none;
    object-fit: contain;
}

.product_item .prduct_desc {
    font-size: 13px;
    font-weight: 500;
    font-family: "JioType", helvetica, arial, sans-serif;
}

.product_detail {
    width: 100%;
}

.price_div .orginal_price {
    font-size: 13px;
    color: #8e8d8d;
    text-decoration: line-through;
    line-height: 0;
}

.product_price_div {
    display: flex;
    width: 100%;
    /*align-items:center;*/
    justify-content: space-between;
    padding-right: 5px;

}

.product_item .product_price {
    font-weight: 500;
    display: block;
    /*margin-top:5px;*/
    font-size: 15px;
    color: #3888df;
}

.product_item .product_price span {
    font-size: 10px;
    font-size: 400;
    color: #696969;
}

.product_item .product_total_price {
    font-size: 12px;
    color: red;
}

.product_item .product_quantity,
.variant_item .product_quantity {
    display: flex;
    align-items: center;
    width: auto;
}

.product_item .plus_minus_buttons,
.variant_item .plus_minus_buttons {
    height: 35px;
    width: 75px;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3888df;
    color: #fff;
    border-radius: 5px;
    margin: auto;
}

.product_item .product_minus,
.product_item .product_plus,
.variant_item .product_minus,
.variant_item .product_plus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;

}

.product_item .default_add_btn,
.variant_item .default_add_btn {
    color: #3888df;
    width: 75px;
    border: 1px solid #3888df;
    border-radius: 5px;
    height: 35px;
    background: #f7fafe;

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    margin: auto;
    position: relative;
}

.product_item .default_add_btn_border,
.variant_item .default_add_btn_border {
    border: 2px solid #a20fbc;
    background: #fdf7fe;
}

.product_item .default_add_btn span,
.variant_item .default_add_btn span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    cursor: pointer;
}

.product_item .default_add_btn_border span,
.variant_item .default_add_btn_border span {
    color: #a20fbc;
}

.product_item .default_add_btn p,
.variant_item .default_add_btn p {
    font-size: 10px;
    position: absolute;
    bottom: -6px;
    background: #fef7f7;
    padding: 0px 5px;
    color: red;
    border-radius: 5px;
    color: #a20fbc;
}

.product_quantity .quantity_input,
.product_quantity .quantity_input {
    display: inline;
    width: 25px;
    border: 0px;
    outline: 0;
    text-align: center;
    /*user-select:none;*/
    background: transparent;
    color: #fff;
    margin: auto;
    pointer-events: none
        /*user-select:none;*/
}

.product_quantity img:hover {}

.product_minus img,
.product_plus img {
    height: 16px;
    width: 16px;
}

/* Popular service carousel ======================================*/
.p_service_main_div .div_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.p_service_main_div .div_1 p {
    font-weight: bold;
}

.p_service_main_div .div_1 a {
    text-decoration: underline;
}

.p_service_div_2 {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.p_service_div_2::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.p_service_div_2::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    background-color: #F5F5F5;
}

.p_service_div_2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(0.44, rgb(122, 153, 217)),
            color-stop(0.72, rgb(73, 125, 189)),
            color-stop(0.86, rgb(28, 58, 148)));
}

.service_box {
    height: 200px;
    width: 150px;
    border-radius: 5px;
    margin: 10px;
    padding: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    margin: auto;
}

.service_box img {
    height: 100px;
    width: 130px;
    margin: auto;
    display: block;
    border-radius: 2px;
}

.service_box .service_box_title {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.service_box span {
    display: block;
}

.service_box span:nth-child(1) {
    font-size: 11px;
    color: #a19f9f;
}

.service_box span:nth-child(2) {
    font-size: 11px;
    color: #f23c24;
    text-decoration: line-through;
}

.service_box span:nth-child(3) {
    font-size: 14px;
    color: #1b7ee0;
}

.service_box span:nth-child(4) {
    color: #1b7ee0;
    position: absolute;
    font-size: 30px;
    bottom: -3px;
    right: -2px;
    padding: 0px 10px;
    cursor: pointer;
    /*border:1px solid red;*/
}

.service_box span:nth-child(5) {
    color: #fff;
    font-size: 12px;
    background: #f23e38;
    position: absolute;
    top: 8px;
    left: 8px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px 0px 5px 0px;
}

/* All service carousel ======================================*/
.all_service_main_div .div_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.all_service_main_div .div_1 p {
    font-weight: bold;
}

.all_service_main_div .div_1 a {
    text-decoration: underline;
}

.all_service_div_2 {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

/*=============================================================================================*/
/* SEARCH PAGE STYLES MOVED TO search_popup.css */
/* WISHLIST & RECENT PAGE STYLES MOVED TO wishlist_popup.css */

/* Wishlist and Recent page styles moved to wishlist_popup.css */

/* ========================================
   MOBILE HEADER WITH LOGO AND TITLE
   (Small Devices Only)
   ======================================== */

/* Mobile Header - Only visible on small devices */
.mobile_header {
    display: block !important;
    background: linear-gradient(135deg, #4285f4 0%, #1976d2 100%) !important;
    padding: 16px 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;

}

.mobile_header_content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    max-width: 100% !important;
}

.mobile_logo {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
}

.mobile_title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-align: center !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
    max-width: calc(100% - 60px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Hide on tablets and larger screens */
@media (min-width: 768px) {
    .mobile_header {
        display: none !important;
    }
}

/* Extra small mobile devices (320px+) */
@media (max-width: 374px) {
    .mobile_header {
        padding: 12px 16px !important;
    }

    .mobile_header_content {
        gap: 8px !important;
    }

    .mobile_logo {
        width: 32px !important;
        height: 32px !important;
    }

    .mobile_title {
        font-size: 18px !important;
        max-width: calc(100% - 50px) !important;
    }
}

/* Small mobile devices (375px - 413px) */
@media (min-width: 375px) and (max-width: 413px) {
    .mobile_header {
        padding: 14px 18px !important;
    }

    .mobile_logo {
        width: 34px !important;
        height: 34px !important;
    }

    .mobile_title {
        font-size: 19px !important;
    }
}

/* Large mobile devices (414px - 767px) */
@media (min-width: 414px) and (max-width: 767px) {
    .mobile_header {
        padding: 16px 20px !important;
    }

    .mobile_header_content {
        gap: 14px !important;
    }

    .mobile_logo {
        width: 38px !important;
        height: 38px !important;
    }

    .mobile_title {
        font-size: 21px !important;
        max-width: calc(100% - 70px) !important;
    }
}

/* Logo hover effect */
.mobile_logo:hover {
    transform: scale(1.05) !important;
    transition: transform 0.2s ease !important;
}

/* Header animation */
.mobile_header {
    animation: slideDownHeader 0.5s ease-out !important;
}

@keyframes slideDownHeader {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback for missing logo */
.mobile_logo[src=""],
.mobile_logo:not([src]) {
    display: none !important;
}

.mobile_logo[src=""]:after,
.mobile_logo:not([src]):after {
    content: "🏪" !important;
    display: inline-block !important;
    font-size: 28px !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mobile_header {
        background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%) !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile_logo {
        border-width: 3px !important;
    }

    .mobile_title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .mobile_header {
        animation: none !important;
    }

    .mobile_logo:hover {
        transform: none !important;
    }
}

/* Safe area handling for notched devices */
@supports (padding: max(0px)) {
    .mobile_header {
        padding-left: max(20px, env(safe-area-inset-left)) !important;
        padding-right: max(20px, env(safe-area-inset-right)) !important;
        padding-top: max(16px, calc(16px + env(safe-area-inset-top))) !important;
    }
}

/* Adjust mobile_div spacing when mobile header is present */
@media (max-width: 767px) {
    .mobile_div {
        padding-top: 0 !important;
    }

}

/* ========================================
   FIX POPUP OVERLAY POSITIONING ISSUE
   ======================================== */

/* Ensure popup overlay doesn't interfere with mobile header or content */
body .igvp-popup-overlay,
.mobile_div .igvp-popup-overlay,
.main_div .igvp-popup-overlay,
#instagramPopup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: none !important;
    margin: 0 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: rgba(0, 0, 0, 0.85) !important;
}

/* Active state */
body .igvp-popup-overlay.active,
.mobile_div .igvp-popup-overlay.active,
.main_div .igvp-popup-overlay.active,
#instagramPopup.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure popup overlay is above mobile header */
@media (max-width: 767px) {}

/* Make sure mobile header stays below popup but above content */
.mobile_header {
    z-index: 100 !important;
    position: sticky !important;
}

/* Ensure content flows properly */
.mobile_div {
    position: relative !important;
    z-index: 1 !important;
}


/* Additional fix to prevent any positioning issues */
.igvp-popup-overlay[style*="position: relative"] {
    position: fixed !important;
}

/* Ensure no margin or padding interferes */
.igvp-popup-overlay * {
    box-sizing: border-box !important;
}

/* ========================================
   CATEGORY PAGE BACK NAVIGATION
   ======================================== */

.category_back_nav {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    margin-bottom: 10px;
}

.category_back_nav i {
    color: #226ba1;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(34, 107, 161, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.category_back_nav i:hover {
    background: rgba(34, 107, 161, 0.2);
    transform: translateX(-2px);
}

.category_back_nav i:active {
    transform: translateX(-2px) scale(0.95);
}

.category_back_nav .category_heading {
    margin: 0;
    flex: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .category_back_nav {
        gap: 12px;
        padding: 0 8px;
    }

    .category_back_nav i {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .category_back_nav .category_heading {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .category_back_nav {
        gap: 20px;
        padding: 0 15px;
    }

    .category_back_nav i {
        font-size: 26px;
        width: 44px;
        height: 44px;
    }
}

/* Hide on desktop when desktop header is visible */
@media (min-width: 769px) {
    .category_back_nav {
        display: none;
    }
}

/* ========================================
   RESPONSIVE CATEGORY SQUARE DESIGN
   ======================================== */

/* Mobile responsive adjustments for square categories */
@media (max-width: 480px) {
    .categort_menu .category_img_div {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        padding: 6px;
    }

    .categort_menu .category_img {
        border-radius: 6px;
    }

    .categort_menu .category_item {
        border-radius: 10px;
        padding: 6px 4px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .categort_menu .category_img_div {
        width: 60px;
        height: 60px;
        border-radius: 11px;
        padding: 7px;
    }

    .categort_menu .category_img {
        border-radius: 7px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .categort_menu .category_img_div {
        width: 68px;
        height: 68px;
        border-radius: 13px;
        padding: 9px;
    }

    .categort_menu .category_img {
        border-radius: 9px;
    }
}

@media (min-width: 1025px) {
    .categort_menu .category_img_div {
        width: 72px;
        height: 72px;
        border-radius: 14px;
        padding: 10px;
    }

    .categort_menu .category_img {
        border-radius: 10px;
    }

    .categort_menu .category_item {
        border-radius: 14px;
        padding: 10px 6px;
    }
}

/* Enhanced hover and active states */
.categort_menu .category_item:hover {
    transform: translateY(-1px);
}

.categort_menu .category_item.active {
    transform: translateY(-2px);
}

.categort_menu .category_item.active span {
    color: #1976d2;
    font-weight: 700;
}

/* Remove any default button/link styling */
.categort_menu .category_item,
.categort_menu .category_item:focus,
.categort_menu .category_item:active,
.categort_menu .category_item:visited {
    outline: none !important;
    border: none !important;
    box-shadow: none;
}

/* Accessibility improvements */
.categort_menu .category_item:focus-visible {
    outline: 2px solid #1976d2;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .categort_menu .category_img_div {
        border-width: 2px;
    }

    .categort_menu .category_item.active .category_img_div {
        border-color: #000;
    }
}