/* CSS Variables */
:root {
    --font-family: 'Nunito', sans-serif;
    --primary-theme-color: #AB2421;
    --secondary-theme-color: #150404;

    --color-primary-50: #FDF2F2;
    --color-primary-100: #FAE6E5;
    --color-primary-200: #F3C0BF;
    --color-primary-300: #EB9A98;
    --color-primary-400: #DF5B58;
    --color-primary-500: #AB2421;
    --color-primary-600: #801B19;
    --color-primary-700: #561210;
    --color-primary-800: #2B0908;
    --color-primary-900: #150404;

    --primary-text-color: #263238;
    --secondary-text-color: #4E4E4E;

    --color-neutral-50: #f8f8f7;
    --color-neutral-100: #F0F0F0;
    --color-neutral-200: #DADAD9;
    --color-neutral-300: #C4C3C2;
    --color-neutral-400: #9E9E9D;
    --color-neutral-500: #6A6968;
    --color-neutral-600: #504F4E;
    --color-neutral-700: #353534;
    --color-neutral-800: #1A1A1A;
    --color-neutral-900: #0D0D0D;

    --color-white: #fff;
    --color-yellow: #F4B920;
    --color-green: #2A9007;
    --color-orange: #F48620;
    --color-blue: #0A98FE;
    

    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;
    --font-size-xxxl: 40px;

    --line-height-sm: 14px;
    --line-height-md: 16px;
    --line-height-lg: 20px;
    --line-height-xl: 24px;
    --line-height-xxl: 34px;

    --border-radius-sm: 2px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 16px;
    --border-radius-xxl: 24px;

    --box-shadow-color: rgba(0, 0, 0, 0.4);
    --box-shadow-light: 0px 4px 6px rgba(0, 0, 0, 0.16);
    --box-shadow-medium: 0px 4px 16px rgba(0, 0, 0, 0.08);

}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--color-white);
    padding: 0 !important;
}

.border {
    border: 1px solid var(--color-neutral-300);
}

.text-secondary {
   color:  var(--secondary-text-color);
}

.border-radius-md {
    border-radius: var(--border-radius-md);
}

.shadow-light {
    box-shadow: var(--box-shadow-light);
}

.shadow-medium {
    box-shadow: var(--box-shadow-medium);
}

/* Colors */
.bg-primary {
    background-color: var(--color-primary-500);
}

.text-primary {
    color: var(--color-primary-500);
}

.bg-neutral {
    background-color: var(--color-neutral-50);
}

.text-neutral {
    color: var(--color-neutral-500);
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-lg);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}
.btn-group-sm>.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.btn-xs {
    padding: .125rem .25rem;
    font-size: var(--font-size-xs);
    line-height: 1.5;
    border-radius: var(--border-radius-sm);
}
.btn-primary {
    background-color: var(--color-primary-500);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-600);
}

.btn-outline {
    border: 1px solid var(--color-primary-500);
    color: var(--color-primary-500);
    background: none;
}

.btn-outline:hover {
    background-color: var(--color-primary-50);
}

/* Typography */
.headline {
    font-weight: 700;
    line-height: var(--line-height-xxl);
}

.headline-3 {
    font-size: var(--font-size-xxxl);
}

.headline-5 {
    font-size: var(--font-size-xxl);
}

.subtitle {
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: var(--line-height-lg);
}

.body-text {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
}

/* Input Styles */
.input {
    border: 1px solid var(--color-neutral-300);
    padding: 0.5rem;
    font-size: var(--font-size-md);
    border-radius: var(--border-radius-md);
}

.input:focus {
    border-color: var(--color-primary-500);
    outline: none;
}

/* Radio Button */
[type="radio"]:checked + label:before {
    background-color: var(--color-primary-500);
}

/* Add more reusable classes as needed */

/* Specific Components */
.primary-btn {
    background: var(--color-primary-500);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    font-weight: 400;
    padding: 0.5rem 1rem;
    text-align: center;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--color-primary-600);
}

/* Card Component */
.card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-light);
    padding: 1rem;
    margin: 1rem 0;
}
.card-header {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.card-body {
    font-size: var(--font-size-md);
    line-height: var(--line-height-lg);
}
/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}
.card-footer .btn {
    margin-left: 0.5rem;
}
/* Card Footer Button */
.card-footer .btn-primary {
    background: var(--color-primary-500);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-md);
    font-weight: 400;
    cursor: pointer;
}
.card-footer .btn-primary:hover {
    background: var(--color-primary-600);
}
/* Card Footer Link */
.card-footer .link {
    color: var(--color-primary-500);
    text-decoration: none;
    font-size: var(--font-size-md);
}
/* Card Footer Link Hover */
.card-footer .link:hover {
    text-decoration: underline;
}
/* Card Footer Link Active */
.card-footer .link:active {
    color: var(--color-primary-600);
}       
/* Card Footer Link Disabled */
.card-footer .link:disabled {
    color: var(--color-neutral-500);
    cursor: not-allowed;
}
/* Card Footer Link Disabled Hover */
.card-footer .link:disabled:hover {
    text-decoration: none;
}
/* Card Footer Link Disabled Active */
.card-footer .link:disabled:active {
    color: var(--color-neutral-500);
    cursor: not-allowed;
}
/* Card Footer Link Disabled Active */
.card-footer .link:disabled:active:hover {
    text-decoration: none;
    color: var(--color-neutral-500);
}
/* Card Footer Link Disabled Active */
.card-footer .link:disabled:active:focus {
    outline: none;
    box-shadow: none;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* Add other specific components here */
.menu_header {
    display: flex;
    align-items: center;
    height: 60px;
    top: 0px;
    width: 100%;
    left: 0px;
    z-index: 99;
    box-shadow: 0px 1.5px 6px rgba(0, 0, 0, 0.12);
    background: #FFFFFF;
    position: fixed;
}
.menu_second_header {
    position: sticky;
    position: -webkit-sticky;
    z-index: 16;    
    left: 0;
    top: 59px;
}
.offer_button2 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.item_detail_box {
    display: flex;
    padding: 6px 0;
    margin-bottom: 6px;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 32px;
}
.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.primary-outline-btn {
    background: var(--color-primary-50);
    color: var(--color-primary-500);
    border: 1px solid var(--color-primary-500);
    border-radius: var(--border-radius-md);
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}
.qut-box {
    max-width: 50px;
}
.qty_btn {
    border-radius: 2px !important;
    color: #ffffff;
    background: #FAE6E5;
    border: 1px solid #ab2421;
    padding: 0.2rem 0.2rem;
}

.sidepanel {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1091;
    top: 0;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
    box-shadow: 4px 4px 4px 0px #00000040;
    border-radius: 0 12px 12px 0;
}
.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 16px;
    font-size: 32px;
    color: #353534;
    text-decoration: none;
}
.sidepanel .header{
    display: flex;
    align-items: center;
    padding: 0 1rem;
}
.sidepanel .header .logo {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
    box-shadow: 0px 0px 6px -1px #00000040;
}
.sidepanel .header .logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.sidepanel .header .title h2 {
    font-size: 20px;
    font-weight: 600;
    color: #353534;
}
.sidepanel li {
    position: relative;
    transition: width 0.2s linear;
    margin: 0.4rem 0;
}
.sidepanel li .nav-menu {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 12px;
    border-radius: 8px;
    color: #353534;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: start;
}
.sidepanel li .icon_svg {
    position: relative;
    height: 20px;
    font-size: 20px;
    text-align: center;
    margin-right: 0.6rem;
}
.sidepanel .nav-menu:hover,
.sidepanel .nav-menu.active {
    background-color: #FCEBE961;
    color: #AB2421;
}
.sidepanel .nav-menu:hover .icon_svg,
.sidepanel .nav-menu:hover .icon_svg path,
.sidepanel .nav-menu.active .icon_svg,
.sidepanel .nav-menu.active .icon_svg path {
    fill: #AB2421;
}

.sidepanel .nav-menu:hover .icon_svg rect,
.sidepanel .nav-menu.active .icon_svg rect {
    stroke: #AB2421;
}
.sidepanel-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1090;
    background-color: #000;
    opacity: 0.5;
    display: none;
}
.sidepanel-backdrop.show {
    display: block;
}
.sidepanel.show {
    width: 250px;
    transition: 0.5s;
}
.select2.select2-container {
    width: auto !important;
    color: #808080;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-dropdown.vnv-dropdown {
    border-radius: 4px;
}
.select2-dropdown.vnv-dropdown {
    border: none;
    box-shadow: 0px 3px 6px 1px #00000040;
    border-radius: 4px;
}
.vnv-dropdown .active,
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FEF7F3;
    color: #808080;
}
 
.wishlist-popover {
    position: fixed;
    left: 50%; /* Horizontal center */
    transform: translate(-50%, 0);
    border-radius: 4px;
    box-shadow: 0 .28em .57em 0 var(--box-shadow-color);
    background-color: var(--primary-theme-color);
    margin: auto;
    color: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem .8rem !important;
    z-index: 9;
    cursor: pointer;
}
.wishlist-popover.no-footer {
    bottom: 2em;
}
.wishlist-popover_icon {
    flex: 0 0 auto;
    width: auto;
    max-width: none;        
    display: flex;
    align-items: center;
    padding-right: .5rem;
}
.wishlist-popover_icon_value {
    flex: 0 0 auto;
    width: auto;
    max-width: none;    
    display: flex;
    align-items: center;
    font-size: 1.14rem;
    line-height: 1.25;
    letter-spacing: .1px;
    text-align: left;
    color: var(--color-white);
}
.wishlist-popover_icon_value span {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    padding-right: .25rem !important;
}
.cart-popover {
    width: calc(100% - 1.14em);
    margin-left: .57em;
    min-height: 3.43em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    bottom: 6.27em;
    grid-gap: .28em;
    gap: .28em;
    padding: .85em 1.25em;
    border-radius: .57em;
    box-shadow: 0 .28em .57em 0 var(--box-shadow-color);
    background-color: var(--primary-theme-color);
    z-index: 9;
}
.no-footer {
    bottom: 0.57em;
}
.cart-popover_price {
    flex: 1 1;
    display: flex;
    grid-gap: .28em;
    gap: .28em;
}
.cart-popover_icon {
    flex: 0 0 auto;
    width: auto;
    max-width: none;        
    display: flex;
    align-items: center;
    padding-right: .5rem;
}
.cart-popover_price_value {
    flex-grow: 0;
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: .1px;
    text-align: left;
    color: var(--color-white);
}
.cart-popover_button {
    font-size: 1rem;
    line-height: 1.71;
    letter-spacing: 1.25px;
    text-align: right;
    color: var(--color-white);
    text-transform: uppercase;
    cursor: pointer;
}
.chip-category-list {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    display: -webkit-box;
    flex-wrap:inherit;
    margin: 0;    
    list-style: none;
}
.chip-category {
    color: #919191;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border-radius: 8px;
    padding: 4px 10px;
    font-style: normal;
    text-align: center;
    font-family: Nunito;
    letter-spacing: 0em;
    border: 1px solid #D6D6D6;
    margin-right: 0.5rem;
    cursor: pointer;
}
.chip-category.active {
    color: #ab2421;
    background-color: #FDF2F2;
    border: 1px solid #EB9A98;
}
.item-group ~ .item-group-name{
    margin-top: 0px !important;
}
.menu-cate-dd-btn{
    background-color: #068312;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: none !important;
}
.menu-cate-dd-btn .material-icons-outlined {
    font-size: 16px;
    line-height: 15px;
}
.col-100-50 {
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: calc(100vw - 90px);
    width: calc(100% - 90px);
}
.dd-category-menu {
    background-color: #FFF5F5;
    padding: 0.8rem;
    border: none;
    box-shadow: 0px 2px 4px 0px #00000040;    
    max-height: 70vh;
    overflow-y: auto;
    z-index: 10;
}
.dd-category-menu .dropdown-item {
    font-weight: 600;
    font-size: 15px;
    padding: 0.5rem 1rem;
    color: #333333;
    border-bottom: 1px solid #7878781A;    
    cursor: pointer;
}
.dd-category-menu .dropdown-item:hover, .dd-category-menu .dropdown-item.active {
    background-color: #FFE5E5;
    color: #AB2421;
}
.cart-items .item-details {
    font-weight: 600;
    font-size: 14px;
    color: #4C4C4C;
    position: absolute;
    bottom: 0;
}
.floating_btn_add {
    background: #4c4c4c;
    border-radius: 44px;
    color: #fff !important;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #353534;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    position: fixed;
    bottom: 80px;
    right: 16px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.16);
}
.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
.item-opacity{
    opacity: 0.5;
    /* pointer-events: none; */
}
.item-opacity .add_item {
    pointer-events: none;
}
.dark_btn {
    background: #c7c7c7;
    border-radius: 4px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #5c5c5c;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1px;
}
.primary-outline-btn:disabled {
    background: #EBEDF0;
    color: #787878;
    border: 1px solid #787878;
    cursor: not-allowed;
}
.details_attribute_right {
    position: absolute;
    z-index: 2;
    top: 0px;
    border-radius: 2px;
    right: 10px;
    height: 18px;
}
.details_attribute_right.disabled {
    filter: grayscale(1);
}
#tnc_modal .logo {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
    box-shadow: 0px 0px 6px -1px #00000040;
    overflow: hidden;
}
#tnc_modal .logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.lang-box {
    font-weight: 500;
    font-size: 18px;  
    padding: .75rem 1rem;
    border-radius: 4px;  
    margin: 0;
}
.lang-box.active {
    background-color: #EBEDF0;
    color: #4C4C4C;
    border: 1px solid #4C4C4C;
}
.badge-gray {
    display: inline-block;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    color: #3E4B5B;
}
.font14{
    font-size: 14px;
}
.font21{
    font-size: 21px;
}
.weight700{
    font-weight: 700;
}
.red-icon {
    padding: 16px;
    border-radius: 50%;
    background-color: #FFE5E9;
    color:#ff0000;
}
.chip.active {
    background-color: #ffdddb;
    color: #ab2421;
    font-weight: 600;
}
.icon-btn { display: inline-flex; align-items: center; justify-content: center; margin: 0 6px; }
.icon-btn img { width: 32px; height: 32px; }
.session-box { border: 1px solid #ddd; border-radius: 10px; padding: 10px 15px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.session-icon { font-size: 1.2rem; }
.social-icons a { margin: 0 6px; font-size: 1.5rem; }
.carousel-indicators { bottom: 0; }
@media screen and (max-height: 450px) {
    .sidepanel {padding-top: 15px;}
    .sidepanel a {font-size: 18px;}
}

/* --------------------Theme 1---------------------------------- */

.category_name_1{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    vertical-align: super;
    padding: 8px 4px;
    color: #353534;
    letter-spacing: 0.15px;
    border-bottom: 2px solid #C4C3C2 ;
    margin-bottom: 12px !important;
 
  
}

.add_cart_btn_1.add_cart_btn_5:focus{
    outline: none;
    box-shadow: none;
}
.add_cart_btn_1:hover{
   background-color: #FAE6E5;
}

.add_cart_btn_1{
    border: 1px solid #ab2421;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ab2421;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0.15rem 0.25rem 0.15rem 0.25rem;
    letter-spacing: 0.1px;
    background: none ;
}
.add_cart_btn_5 {
    border: 1px solid #ab2421;
}
/* --------------------Theme 7---------------------------------- */
.item-7-box{
    border-radius: 8px;
    overflow: hidden;
}
.category_name_7{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    vertical-align: super;
    padding: 8px 0px;
    color: #353534;
    letter-spacing: 0.15px;
    margin-bottom: 0 !important;
  
}
.item_image_7 {
    max-width: 110px;
    height: 100%;
    border-radius: 0;
    position: relative;
    z-index: 0;
}
.left_container_7{
    padding: .4rem .4rem .4rem 0rem;
}
.image_box_7{
    position: relative;

}
.veg_no_veg_left_7{
    position: absolute;
    top: 5px;
    z-index: 2;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 12%);
    border-radius: 2px;
    left: 8px;
    height: 15px;
}
.attribute_right_7{
    position: absolute;
    z-index: 2;
    top: 5px;
    border-radius: 2px;
    right: 18px;
    height: 18px;
}
.left_container_7{
 display: flex;
 flex-direction: column;
 justify-content:space-between;
}
.add_cart_btn_7.add_cart_btn_5:focus{
    outline: none;
    box-shadow: none;
}
.add_cart_btn_7:hover{
   background-color: #801B19;
}

.add_cart_btn_7{
   background-color: #ab2421;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0.15rem 0.25rem 0.15rem 0.25rem;
    letter-spacing: 0.1px;
    
}
/* --------------------Theme 6---------------------------------- */


.category_name_6{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    vertical-align: super;
    padding: 8px 0px;
    color: #353534;
    letter-spacing: 0.15px;
    margin-bottom: 0 !important;
  
}
.category_box_5{
    border-radius: 2px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 4px 0px;
    border-radius: 8px;
}

.view_switch_icon{
    font-size: 20px;
    color: #9E9E9D;
}
.view_switch_icon.active{
    font-size: 20px;
    color: #ab2421;
}
.item_box_6{
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    background-color: #fff;
    padding: 7.5px 0px;
}

.add_cart_btn_6.add_cart_btn_5:focus{
    outline: none;
    box-shadow: none;
}
.add_cart_btn_6:hover{
   background-color: #FAE6E5;
}

.add_cart_btn_6{
    border: 1px solid #ab2421;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ab2421;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    letter-spacing: 0.1px;
    background: none ;
}
.whishlist_icon{
    color: #C4C3C2;
}
.drawer-btn {
    font-size:20px;
    cursor:pointer;
}
#open_search_bar {
    background: transparent;
}
.item_img_round {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.cal_size_aik {
    border: 0.5px solid #DADAD9;
    background: transparent;
    border-radius: 3px;
    font-size: 10px;
    color: #4C4C4C;
    padding: 2px 6px;
}
.add_cart_bk_btn {
    border: 1px solid #020100;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020100;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.1px;
    background: none;
}
.btn.disabled, .btn:disabled {
    opacity: 0.8;
}
@media (hover: hover) {
    .whishlist_icon:not(.disabled):hover{
        color: #D60202;
    }
}
.whishlist_icon.active{
    color: #D60202;
}
.menu_container_grid_6{
    display: grid;
    width: 100%;
    grid-column-gap: 4%;
    grid-template-columns: 48% 48%;
    grid-row-gap: 1rem;
}
.menu_6_box{
    box-sizing: border-box;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    position: relative;
}
.item_image_6{
    border:1px solid #f0f0f0 ;
    border-radius: 4px;
    width: 100%;
    height: 7rem;
    position: relative;
}
.item_detail_box_6{
    display: flex;
    padding-top: 6px;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 36px;
}
.whishlist_icon_6{
    color: #C4C3C2;
}
@media (hover: hover) {
    .whishlist_icon_6:not(.disabled):hover{
        color: #D60202;
    }
}
.whishlist_icon_6.active{
    color: #D60202;
}

/* --------------------Theme 7---------------------------------- */
.category_name_7{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    vertical-align: super;
    padding: 8px 0px;
    color: #353534;
    letter-spacing: 0.15px;
    margin-bottom: 0 !important;
  
}
.left_container_7{
    padding: .4rem .4rem .4rem 0rem;
}
.image_box_7{
    position: relative;

}
.veg_no_veg_left_7{
    
    position: absolute;
    top: 12px;
    z-index: 2;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 12%);
    border-radius: 2px;
    left: 12px;
    height: 15px;
}
.attribute_right_7{
    position: absolute;
    z-index: 2;
    top: 12px;
    border-radius: 2px;
    right: 20px;
    height: 18px;
}
.left_container_7{
 display: flex;
 flex-direction: column;
 justify-content:space-between;
}
.add_cart_btn_7.add_cart_btn_5:focus{
    outline: none;
    box-shadow: none;
}
.add_cart_btn_7:hover{
   background-color: #801B19;
}

.add_cart_btn_7{
   background-color: #ab2421;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 0.15rem 0.25rem 0.15rem 0.25rem;
    letter-spacing: 0.1px;
    
}
.menu_second_header {
    background-color: #FFFFFF;
}
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-w-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal_item_image {
    border-radius: 22px 22px 0px 0px;
}
.select-section-btn {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0px 1px 8px 0px rgba(192, 110, 110, 0.12);
    height: 100%;
    text-align: center;
}
.category_name_5 {
    font-weight: 700;
    font-size: 18px;
    vertical-align: super;
    padding: 8px 0px;
    background:transparent ;
    color: #353534;
    letter-spacing: 0.15px;
    margin-bottom: 0 !important;
}
.item_image_5 {
    width: 100%;
    height: 80px;
    border-radius: 12px;
}
.add_cart_btn_5 {
    padding: 0.2rem 1rem;
}
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}
.category-card.active {
    border: 1px solid #ab2421;
}
.category-card:hover {
    transform: translateY(-5px);
}
.category-img-container {
    position: relative;
}
.category-img {
    width: 100%;
    height: auto;
    height: 149px;
    display: block;
}
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
    color: white;
    padding: 10px;
}
.category-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
#activeCategoryName {
    display: none;
    background-color: #fff;
    padding-top: 12px;
    padding-bottom: 2px;
    position: sticky;
    position: -webkit-sticky;
    z-index: 16;
    left: 0;
    top: 59px;
}
.sel-multi-cate-name {
    background-color: #FAE6E5;
    text-align: center;
    color: #353534;
    border-radius: 8px;
    font-size: 20px;
    margin: 0;
    text-align: center;
    padding: 6px 12px;
    width: 100%;
}
.img-height-md{
    max-height: 150px;
}
.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}
.material-medium{
    font-size: 20px;
}
.img-modal .modal-dialog {
    max-width: calc(100vw - 32px);
    margin: auto;
    height: auto;
}
.img-modal .modal-content {
    background-color: transparent;
    border: 0;
}
.close-right {
    position: absolute;
    top: 11px;
    right: 13px;
}
/* Desktop Mobile View */
@media (min-width: 768px) {
    .mobile-wrapper {
        position: relative;
        max-width: 420px; /* Adjust based on your mobile width */
        margin: 0 auto;
        border: 0;/*1px solid #ddd;*/
        border-top: none;
        border-bottom: none;
        background-color: #fff;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        min-height: 100vh;
    }
    body {
        background-color: #f3f3f3; /* Optional background */
    }
    body.primary_dark1_bg {
        background-color: #282828; /* Optional background */
    }
    .primary_dark1_bg .mobile-wrapper{
        background-color: #020100;
        border: none;
    }
    .menu_header,
    .bottom_nav,
    .bottom_nav_w, 
    .bottom_nav_d,
    .cat_float_possition,
    #menu_footer_button {
        max-width: 420px;
        left: calc(50% - 210px);
    }
    .menu_header img{
        width: 100%;
    }
    .menu_header .row {
        margin-right: 0;
        margin-left: 0;
    }
    .menu_header .row>.col, .menu_header .row>[class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }
    .modal_bottom_set {
        left: 0;
        right: 0;
        margin: auto;
    }
    /* .item_image_7 {
        max-width: 165px;
    } */
    #multi_cat_modal.modal {
        max-width: 420px;
        margin: auto;
    }
    #scroll_resto_info {
        padding-bottom: 90px !important;
    }
    .offer_button2 {
        left: calc(50vw - 240px);
    }
    /* .full_screen_modal {
        max-height: calc(100vh - 3.5rem);
    } */
    .cart-popover {
        max-width: 400px;
        margin-left: calc(50% - 200px);
    }
    .sidepanel {
        position: fixed;
    }
    .col-100-50 {
        width: calc(380px - 50px);
    }
    .modal-mob {
        max-width: 420px;
    }
    .img-modal {
        padding: 0px !important; 
    }
    .img-modal .modal-dialog {
        max-width: calc(400px);
        margin: auto;
        height: auto;
    }
}
span.select2-container.select2-container--default.select2-container--open:not(.select2) {
    left: auto !important;
    right: 0 !important;
}
.bg_primary {
    background-color: #ab2421;
}
.select2-dropdown.vnv-dropdown {
    width: 140px !important;
    text-align: left;
}
#scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #ab2421;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9;
    outline: none;
}
#scrollToTop:hover {
    background: #aa3230;
    transform: translateY(-3px);
    box-shadow: 0px 3px 15px rgb(0 0 0 / 58%);
}

#scrollToTop:active {
    transform: translateY(0);
}
.border-radius-round {
    border-radius: 20px;
}