:root {
    --gray-color: #9A9A9A;
    --white-color: #ffffff;
    --primary-color: #FF8A16;
    --green-color: #4CBC4D;
    --primary-shade: #FFF7EF;
    --green-shade: #4CBC4D2E;
    --black-color: #000000;
    --color-F7F7F7: #F7F7F7;
    --color-666666: #666666;
    --color-CBCBCB: #CBCBCB;
    --color-646464: #646464;
    --color-707070: #707070;
    --color-BFBFBF: #BFBFBF;
    --color-F6F6F6: #F6F6F6;
    --color-transparent: #ffffff00;
    --color-F7D6B4: #F7D6B4;
    --color-FFF9F4: #FFF9F4;
    --color-EAEAEA: #EAEAEA;
    --color-DEDEDE: #DEDEDE;
    --color-2B2B2B40: #2B2B2B40;
    --color-00000021: #00000021;
    --color-9a9a9a7d: #9a9a9a7d;
    --color-F9C694: #F9C694;
    --color-FFF6ED: #FFF6ED;
    --color-00000017: #00000017;
    --color-EEEEEE: #EEEEEE;
    --color-EA1818: #EA1818;
    --color-00000099: #00000099;
    --color-ffffff69: #ffffff69;
    --color-F1F1F1: #F1F1F1;
    --color-C4C4C4: #C4C4C4;
    --color-B6B6B6: #B6B6B6;
    --color-E3E3E3: #E3E3E3;
    --color-FFF5EA: #FFF5EA;
    --color-F9F9F9: #F9F9F9;
    --color-F8F8F8: #F8F8F8;
    --color-E7E7E7: #E7E7E7;
    --color-FF2F2F: #FF2F2F;
    --color-FF2F2F33: #FF2F2F33;
    --color-120D10: #120D10;
    --color-FFD140: #FFD140;
    --color-fff8f8: #fff8f8;
    --color-dc3545: #dc3545;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
}

*,
html {
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
    color: var(--primary-color);
    text-decoration: none;
}

a.primary_text:hover,
a.primary_text:focus,
a.primary_text:active {
    color: var(--primary-color);
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
    text-decoration: none;
    outline: none !important;
    outline-offset: 0 !important;
}

a img,
img {
    border: none;
    outline: none !important;
    outline-offset: 0 !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
    line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Classes CSS BOF
  ==================================================== */
/* Object fit common classes */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Font Color Style CSS BOF */
.white_text {
    color: var(--white-color);
}

.primary_text {
    color: var(--primary-color);
}

.gray_text {
    color: var(--gray-color);
}

.green_text {
    color: var(--green-color);
}

.gray_bg {
    background: var(--gray-color);
}

.text_707070 {
    color: var(--color-707070);
}

/* cursor variation csss */
.cursor-pointer {
    cursor: pointer;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    line-height: normal;
    font-style: normal;
    margin-bottom: 0;
}

.h_1,
.h_2,
.h_3,
.h_4,
.h_5,
.h_6 {
    margin-bottom: 0;
}

.h_1 {
    font-size: 50px;
    line-height: normal;
}

.h_2 {
    font-size: 30px;
    line-height: normal;
}

.h_3 {
    font-size: 28px;
    line-height: normal;
}

.h_4 {
    font-size: 24px;
    line-height: normal;
}

.h_5 {
    font-size: 20px;
    line-height: normal;
}

.h_6 {
    font-size: 16px;
    line-height: normal;
}

.font_14 {
    font-size: 14px;
}

.font_22 {
    font-size: 22px;
}

.font_26 {
    font-size: 26px;
}

.font_40 {
    font-size: 40px;
}

/* Font Weight Variation CSS BOF */
.font_rg {
    font-weight: normal;
}

.font_bl {
    font-weight: 800;
}

.font_blk {
    font-weight: 900;
}

.font_smb {
    font-weight: 600;
}

.font_md {
    font-weight: 500;
}

.full-line-height {
    line-height: 100%;
}

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.line-clamp1 {
    -webkit-line-clamp: 1;
    line-clamp: 1
}

.line-clamp2 {
    -webkit-line-clamp: 2;
    line-clamp: 2
}


/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
    line-height: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
    font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
    margin-bottom: 0;
}

/* SOME GLOBAL CSS */
.common-padding-120b {
    padding-bottom: 120px;
}

.common-padding-120t {
    padding-top: 120px;
}

.common-padding-100b {
    padding-bottom: 100px;
}

.common-padding-60b {
    padding-bottom: 60px;
}

.common-padding-60t {
    padding-top: 60px;
}

.common-padding-40t {
    padding-top: 40px;
}

/* global navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 1px 3px 4.1px 0px var(--color-2B2B2B40);
    background: var(--color-666666);
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    margin: auto;
    position: relative;
}

.arrow_layout {
    gap: 20px;
}

.arrow_sec {
    gap: 10px;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.submenu::-webkit-scrollbar-track {
    margin-top: 10px;
    margin-bottom: 10px;
}

.modal-body-wrapper::-webkit-scrollbar-track {
    margin-bottom: 10px;
}

/* Disabled base styles */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background: var(--color-CBCBCB);
    opacity: 1;
    filter: none;
    pointer-events: unset;
}

.swiper-button-prev:after {
    background-image: url('../images/white-left-arrow.svg');
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

.swiper-button-next:after {
    background-image: url('../images/white-right-arrow.svg');
    content: "";
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

.swiper-button-prev.swiper-button-disabled:after {
    background-image: url('../images/gray-left-arrow.svg');
}

.swiper-button-next.swiper-button-disabled:after {
    background-image: url('../images/gray-right-arrow.svg');
}

.swiper-button-sm {
    width: 30px;
    height: 30px;
}

.swiper-button-sm:after {
    width: 14px;
    height: 14px;
}

/* global box shadow */
.global-box-shadow {
    box-shadow: 4px 4px 5px 2px var(--color-00000021);
}

.border-radius-10 {
    border-radius: 10px;
}

/* global image size */
.sm-image {
    width: 109px;
    height: 109px;
}

.md-image {
    height: 149px;
    width: 149px;
}

.lg-image {
    width: 168px;
    height: 168px;
}

.xl-image {
    width: 173px;
    height: 173px;
}

.xxl-image {
    min-width: 212px;
    min-height: 212px;
    width: 212px;
}

.bottom_2_slider_item {
    width: 318px;
    height: 173px;
}

.delivery-bottom-item {
    width: 487px;
    height: 173px;
}

.layout4_bottom_item {
    width: 370px;
    height: 173px;
}

.bottom-4-slider-item {
    width: 487px;
    height: 173px;
}

.xl-image-height {
    height: 173px;
}

.lg-image-height {
    height: 166px;
}

.world-cusion-img {
    width: 149px;
    height: 149px;
}

.word_cuision_slider .swiper-slide {
    width: 149px;
}

.fruit-veg-image {
    width: 168px;
    height: 168px;
}

/*common layout grid */
.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid_gap_20 {
    gap: 20px;
}

.sliders_x_space {
    --bs-gutter-x: 30px;
}

.sliders_y_space {
    --bs-gutter-y: 30px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.bs-gutter-30x {
    --bs-gutter-x: 30px;
}

.bs-gutter-30y {
    --bs-gutter-y: 30px;
}

.bs-gutter-20x {
    --bs-gutter-x: 20px;
}

.bs-gutter-20y {
    --bs-gutter-y: 20px;
}

/* global btn */
.btn {
    padding: 22px 23px;
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    line-height: 100%;
    border-radius: 10px;
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    text-transform: unset;
    box-shadow: none;
}

.btn:hover,
.btn:focus {
    background: var(--color-transparent);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn:active {
    background: var(--color-transparent);
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.gray_btn {
    color: var(--primary-color);
    background: var(--color-EAEAEA);
    border: 1px solid var(--color-EAEAEA);
}

.gray_btn:hover {
    background: var(--white-color);
}

.btn_white {
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--white-color);
}

.btn_white:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.gray_outline_btn {
    color: var(--gray-color);
    border-color: var(--gray-color);
    background: var(--white-color);
}

.btn-lg {
    padding: 24px 23px;
}

.btn-sm {
    font-size: 20px;
    padding: 19px 20px;
}

/* common checkbox */
.common-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: var(--color-transparent);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.common-checkbox:checked {
    background: transparent;
    border-color: var(--primary-color);
}

.common-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    height: 15px;
    background: url("../images/tick.svg") no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

/* common radio button */
input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-color);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

input[type="radio"]+.custom-radio::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--gray-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:checked+.custom-radio::after {
    background-color: var(--primary-color);
}

input[type="radio"]:checked+.custom-radio {
    border-color: var(--primary-color);
}

/* common title */
.sec-title {
    line-height: 40px;
}

/* common search */
.search_sec {
    border: 1px solid var(--color-BFBFBF);
    border-radius: 46px;
    padding: 11px 30px;
    max-width: 865px;
}

.search_sec .search_input {
    font-weight: 500;
    caret-color: var(--primary-color);
    background: transparent;
}

/* common close btn */
.close_btn {
    position: absolute;
    top: 60px;
    right: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    border: 1px solid var(--gray-color);
    padding: 11px;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.close_btn:hover {
    border: 1px solid var(--primary-color);
}

.close_btn:hover svg path {
    fill: var(--primary-color);
}

/* common input */
.common-input,
.common-select,
.common-textarea,
.appieat-select.select2-container--default .select2-selection--single {
    background: var(--color-F6F6F6);
    border: none;
    width: 100%;
    padding: 23px;
    font-size: 20px;
    color: var(--gray-color);
    font-weight: 500;
    border: 1px solid var(--color-transparent);
    height: unset;
    border-radius: 10px;
}

.common-textarea {
    min-height: 242px;
}

.common-input::placeholder,
.common-textarea::placeholder,
.appieat-select.select2-container--default .select2-selection--single::placeholder,
.appieat-select.select2-container--default .select2-selection--single .select2-selection__placeholder,
.register_content .common-input::placeholder,
.review-form .common-input::placeholder,
.register_content .select2-container--default .select2-selection--single::placeholder,
.register_content .select2-container--default .select2-selection--single .select2-selection__placeholder,
.appieat-select .select2-search--dropdown .select2-search__field::placeholder,
.contact-form .common-input::placeholder,
.contact-form .common-textarea::placeholder,.search_sec ::placeholder {
    color: var(--color-B6B6B6);
}

.appieat-select.select2-container--default .select2-selection--single,
.appieat-select.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--gray-color);
    font-weight: 500;
}

.register_content .common-input,
.register_content .common-select,
.review-form .common-input,
.review-form .common-select,
.register_content .select2-container--default .select2-selection--single,
.register_content .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-707070);
    font-weight: 500;
}

/* Select2 Dropdown start  */
.appieat-select.select2-container,
.appieat-select.select2-container--default {
    width: 100% !important;
    max-width: 100% !important;
    z-index: 10000;
}

.appieat-select.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: unset;
}

.appieat-select .select2-dropdown {
    background: var(--white-color) !important;
    border: 1px solid var(--color-BFBFBF) !important;
    border-radius: 10px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.appieat-select .select2-search--dropdown .select2-search__field {
    background: var(--color-F6F6F6) !important;
    border: 1px solid var(--color-BFBFBF) !important;
    border-radius: 10px !important;
    padding: 20px 23px !important;
    font-size: 20px !important;
    height: 60px !important;
    color: var(--color-707070) !important;
    font-weight: 500 !important;
    margin: 10px 0 0 0 !important;
    width: 100% !important;
}

.appieat-select .select2-search--dropdown .select2-search__field:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
}

.appieat-select .select2-search--dropdown .select2-search__field::placeholder {
    font-weight: 500 !important;
}

/* Force select2 search box to always be visible and functional */
.appieat-select .select2-search--dropdown {
    display: block !important;
    visibility: visible !important;
}

.appieat-select .select2-search--dropdown .select2-search__field {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.appieat-select .select2-results {
    padding: 0 !important;
    overflow-y: auto !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    max-height: 300px !important;
}

.appieat-select .select2-results__option {
    padding: 15px 23px !important;
    font-size: 20px !important;
    color: var(--color-707070) !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--gray-color) !important;
    background: var(--white-color) !important;
    transition: all 0.2s ease !important;
}

.appieat-select .select2-results__option:first-child {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.appieat-select .select2-results__option:last-child {
    border-bottom: none !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.appieat-select .select2-results__option--highlighted,
.appieat-select .select2-results__option[aria-selected="true"] {
    background: var(--color-F6F6F6) !important;
    color: var(--color-707070) !important;
}

.appieat-select .select2-results__option[aria-selected="true"] {
    background: var(--color-F6F6F6) !important;
}

.appieat-select .select2-results__option--disabled,
.appieat-select .select2-results__option[aria-disabled="true"] {
    opacity: 0.6 !important;
}

.appieat-select.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 18px;
    top: 0;
    width: 24px;
}

.appieat-select.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    background-image: url("../images/black-down-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Select2 Dropdown end  */
.register_content {
    position: relative;
}

/* Ratings Modal Styles */
.ratings-section {
    padding-bottom: 40px;
}

.rating-breakdown {
    width: 55%;
}

.rating-bar-wrapper {
    height: 10px;
    background: var(--color-F6F6F6);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.review-item {
    border-top: 1px solid var(--color-EEEEEE);
    padding: 20px 0;
}

.review-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.review-modal-desc {
    opacity: 60%;
    line-height: 140%;
}

.review-person-name {
    line-height: 140%;
}

.review-person-image {
    border-radius: 50%;
    height: 60px;
}

dl.variation {
    display: flex;
    margin-bottom: 0;
}

.variation dd.variation-Store {
    padding-left: 6px;
    margin-bottom: 0;
}

/* Review Images */
.review-images {
    flex-wrap: wrap;
}

.review-image {
    width: 60px;
    height: 60px !important;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Reviews Select Dropdown - Normal HTML Select */
.reviews-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--white-color);
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
    width: 100%;
    max-width: 140px;
    background-image: url("../images/gray-down-arrow.svg");
    background-position: right 15px center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.reviews-select option {
    padding: 15px 20px;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
    background: var(--white-color);
}

/* Product Rating Clickable */
.product-rating {
    cursor: pointer;
    transition: opacity 0.2s ease;
    min-width: 162px;
}

.product-rating:hover {
    opacity: 0.8;
}

.register_content .common-label {
    color: var(--primary-color);
    font-weight: normal;
    margin-bottom: 0;
}

.common-label {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--color-707070);
    line-height: 100%;
    font-weight: 500;
}

.modal-row {
    margin-bottom: 20px;
    position: relative;
}

.multiple-line-label {
    gap: 15px;
}

.common-select {
    appearance: none;
    /* background-image: url("../images/black-down-arrow.svg");
    background-position: right 18px center;
    background-size: 24px 24px;
    background-repeat: no-repeat; */
    background-color: var(--color-F6F6F6);
    width: 100%;
}

/* common moadl */
.common-moadl .modal-dialog {
    max-width: 866px;
}

.common-moadl-sm .modal-dialog {
    max-width: 596px;
}

.common-moadl-content.modal-content {
    border-radius: 20px;
    border: none;
}

.common-modal-body {
    padding: 0;
}

.modal-body-wrapper {
    padding: 20px 30px 30px 30px;
    overflow-y: auto;
    max-height: 770px;
}

.modal-header {
    padding: 30px 0 20px 0;
    margin: 0 30px;
    border-bottom: 1px solid var(--color-EEEEEE);
}

.modal-header .btn-close.common-close-btn {
    width: 24px;
    height: 24px;
    opacity: 1;
    background-image: url("../images/cross.svg");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    z-index: 1;
    margin: 0;
    margin-left: auto;
}

.btn-close:focus {
    box-shadow: none;
}

.modal-header-title {
    line-height: 36px;
}

/* common drawer */
.common-drawer .offcanvas-body {
    padding: 10px 40px 40px 40px;
}

.common-drawer .offcanvas-header {
    padding: 40px 40px 20px 40px;
}

.common-drawer .btn-close {
    padding: 12px;
    border: 1px solid var(--primary-color);
    background-image: url("../images/cross.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    opacity: 1;
    border-radius: 6px;
    margin: 0;
    margin-left: auto;
}

.common-drawer.offcanvas.offcanvas-end {
    width: 587px;
    border: none;
}

.common-drawer-lg.offcanvas.offcanvas-end {
    width: 706px;
    border: none;
}

/* common container */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1520px;
        padding: 0 40px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1640px;
    }
}

@media (min-width: 1900px) {
    .container {
        max-width: 1840px;
    }
}

/* header section start*/
.home_page_header .search_sec {
    max-width: 697px;
    margin-top: 20px;
}

.top_right_header {
    gap: 20px;
}

.home_page_header .header_sec {
    padding: 20px 0 40px;
}

.bottom_logo {
    margin-top: -10px;
}

.home_page_header.header {
    height: 269px;
}

.phone-right-icon {
    width: 100%;
}

/* scroll */
.scrolled .header_wrapper .bottom_logo img {
    width: 200px;
    transform: translateY(-43px);
    height: 53px;
}

.scrolled.home_page_header .search_sec {
    margin-top: -16px;
}

.scrolled .header_sec {
    padding: 20px 0;
}

.header_sec {
    padding: 24px 0;
    position: fixed;
    /* top: 0; */
    width: 100%;
    background: var(--white-color);
    z-index: 999;
    /* box-shadow: 0px 4px 4px -2px var(--color-00000017); */
    border-bottom: 1px solid var(--color-E3E3E3);
}

.home_page_header .search_result.search_no_result {
    top: 265px;
}

.home_page_header.scrolled .search_result.search_no_result {
    top: 168px;
}

.header {
    height: 113px;
}

.header_sec .header_wrapper .header_right_sec {
    gap: 20px;
}

/* .header_sec .search_sec {
    margin-right: 58px;
} */


.burger_menu_icon {
    width: 25.5px;
    height: 21px;
    min-width: 25.5px;
    position: relative;
}

.burger_menu_icon_sec {
    width: 54px;
    height: 54px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 58px;
}

.burger_menu_icon_sec:hover,
.header_cart_icon:hover {
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.cart_number {
    position: absolute;
    font-size: 10px;
    background: var(--color-EA1818);
    border-radius: 50%;
    width: 17px;
    height: 17px;
    color: var(--white-color);
    top: -4px;
    right: -4px;
    line-height: normal;
}

.burger_menu_icon_sec:hover .burger_lines {
    background: var(--primary-color);
}

.burger_menu_icon .burger_lines {
    background: var(--gray-color);
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 100%;
    position: absolute;
    left: 0;
}

.burger_menu_icon .burger_lines:nth-child(1) {
    top: 0px;
}

.burger_menu_icon .burger_lines:nth-child(2) {
    top: 10px;
}

.burger_menu_icon .burger_lines:nth-child(3) {
    bottom: -2px;
}

.burger_menu_icon.active .burger_lines:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.burger_menu_icon.active .burger_lines:nth-child(2) {
    opacity: 0;
}

.burger_menu_icon.active .burger_lines:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

.header_btn {
    border: 1px solid var(--gray-color);
    padding: 9.5px 9px;
    border-radius: 10px;
    gap: 10px;
    font-size: 22px;
    position: relative;
}

.header_btn::before {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    content: "";
    top: calc(100% + 2px);
}

.header_btn:focus {
    color: var(--gray-color);
}

.header_btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header_btn:hover svg path {
    fill: var(--primary-color);
    transition: all 0.4s ease-in-out 0s;
}

.header_dropdown {
    position: relative;
    display: inline-block;
}

.header_dropdown_menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 294px;
    background: var(--white-color);
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    display: none;
    z-index: 99;
}

.header_dropdown_menu .header_dropdown_link {
    display: block;
    padding: 10px 0px;
    margin: 0 20px;
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-color);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--gray-color);
}

.header_dropdown_menu .header_dropdown_link:last-child {
    border-bottom: 0;
}

.header_dropdown_menu .header_dropdown_link:hover {
    color: var(--primary-color);
}

.header_dropdown:hover .header_dropdown_menu {
    display: block;
}

.header_cart_icon:hover svg g path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.header_cart_icon {
    width: 54px;
    height: 54px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search_result {
    position: absolute;
    top: 100%;
    margin-top: 2px;
    border: 1px solid var(--color-BFBFBF);
    width: 100%;
    left: 0;
    border-radius: 20px;
    padding: 30px 30px 48px 30px;
    z-index: 2;
    background: var(--white-color);
    max-height: calc(100vh - 300px);
    overscroll-behavior: none;
}
.fullscreen_menu .search_result{
    max-height: calc(100vh - 350px);
}
.search_result .recent_list{
    overflow-y: scroll;
    margin-right: -30px;
    padding-right: 30px;
    overscroll-behavior: contain;
}
.search_result.search_no_result {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--white-color);
    min-height: calc(100vh - 100px);
    z-index: 1000;
    border-radius: 0;
    border: none;
    padding: 60px;
}

.search_result.search_no_result::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    box-shadow: 0px 4px 4px -2px var(--color-00000017);
}

.search_item {
    border-bottom: 1px solid var(--gray-color);
    padding: 10px;
}

.search_item:last-child {
    border-bottom: 0;
}

.search_list_img {
    border-radius: 5px;
}
.header_sec .header_wrapper .other-pages{
    height: 65px;
}
/* Fullscreen menu overlay start*/
.header_sec .fullscreen_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    background-image: url("../images/menu.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
    display: none;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    padding-bottom: 20px;
}

.header_sec .fullscreen_menu.active {
    display: flex;
}

.header_sec .fullscreen_menu .menu_content .menu_search {
    max-width: unset;
    width: 697px;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu {
    position: relative;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu .submenu {
    display: none;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu .submenu.open {
    display: block;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu .submenu_toggle.active .header_arrow_icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu .submenu .menu_list_li {
    padding: 14px 0;
}

.header_sec .fullscreen_menu .menu_content .menu_list .has_submenu.open>.submenu {
    display: block;
}

.menu_link:hover,
.menu_link:focus {
    color: var(--gray-color);
}

.parent_sub_menu .header_arrow_icon {
    width: 24px;
    height: 24px;
}

.child_sub_menu .header_arrow_icon {
    width: 16px;
    height: 16px;
}

ul.submenu {
    background: var(--color-FFF6ED);
    width: 342px;
    border: 1px solid var(--color-F9C694);
    border-radius: 20px;
    box-shadow: 4px 4px 5.5px 0px var(--color-00000021);
    padding: 10px 0 0 0;
    max-height: 380px;
    overflow-y: auto;
}

ul.submenu.sub_submenu {
    max-height: unset;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* Fullscreen menu overlay end*/
/* Fullscreen register form */
.fullscreen_register {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    z-index: 9999;
    display: none;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    animation: fadeIn 0.3s ease;
}

.fullscreen_register.active {
    display: flex;
}

.fullscreen_register .register_step {
    display: none;
    width: 100%;
}

.fullscreen_register .register_step.active {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.step_1_wrapper {
    flex: 1;
}

.fullscreen_register .register_step.step_1 .step_1_wrapper .step1_left {
    background: url("../images/registration.webp");
    background-size: cover;
    width: 41%;
    padding: 70px;
    background-position: bottom;
}

.fullscreen_register .register_step.step_1 .step_1_wrapper .step1_left .step1_left_details {
    line-height: 38px;
}

.fullscreen_register .register_step.step_1 .step_1_wrapper .step1_right {
    padding-right: 30px;
}

.fullscreen_register .register_step.step_1 .step_1_wrapper .step1_right .register_form_btn {
    min-width: 285px;
    height: 85px;
}

.fullscreen_register .register_step .register_copy_write,
.checkout-copywrite {
    padding: 30px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper {
    padding: 60px 60px 30px 60px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper {
    gap: 40px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .small_ad {
    width: 23.8%;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .medium_ad {
    width: 32.2%;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .large_ad {
    width: 40.7%;
}

.upload_desc {
    gap: 8px;
}

.reset_icon {
    display: none;
    cursor: pointer;
    right: 10px;
    top: 10px;
    position: absolute;
    pointer-events: auto;
    font-size: 30px;
    color: var(--primary-color);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .upload_sec {
    background: var(--color-F7F7F7);
    border-radius: 20px;
    border: 1px solid var(--gray-color);
    padding: 30px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_row3 .upload_icon {
    width: 80px;
    height: 80px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_row4 .upload_icon {
    width: 84px;
    height: 84px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_bus_details {
    border-radius: 20px;
    border: 1px solid var(--gray-color);
    padding: 30px;
}

.registration-complate-msg {
    background: var(--primary-color);
    padding: 24px 60px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_bus_details .register_bus_label {
    min-width: 212px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_hr {
    opacity: 1;
    color: var(--color-DEDEDE);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch {
    position: relative;
    display: inline-block;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch .switch_checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch .switch_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-color);
    transition: 0.4s;
    border-radius: 28px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch .switch_slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 0px;
    top: 0px;
    margin: auto 0;
    background-color: var(--white-color);
    transition: 0.4s;
    border-radius: 50%;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch .switch_checkbox:checked+.switch_slider {
    background-color: var(--primary-color);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_sm {
    width: 40px;
    height: 21px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_sm .switch_slider:before {
    height: 12px;
    width: 12px;
    left: 4px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_sm .switch_checkbox:checked+.switch_slider:before {
    transform: translateX(20px);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_lg {
    width: 76px;
    height: 38px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_lg .switch_slider:before {
    height: 22px;
    width: 22px;
    left: 7px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_lg .switch_checkbox:checked+.switch_slider:before {
    transform: translateX(40px);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_md {
    height: 28px;
    width: 57px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_md .switch_slider:before {
    height: 16px;
    width: 16px;
    left: 5px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .switch.switch_md .switch_checkbox:checked+.switch_slider:before {
    transform: translateX(30px);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_store_layout {
    background: var(--primary-shade);
    padding: 40px 90px;
    border-radius: 20px;
    border: 1px solid var(--gray-color);
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .add_extra_product {
    background: var(--color-F6F6F6);
    color: var(--color-707070);
    padding: 20px 12px;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_row5 .register_pay_btn {
    background: var(--color-FFD140);
    border: 1px solid var(--color-FFD140);
    padding: 19px;
    font-size: 40px;
    color: var(--white-color);
    min-width: 580px;
}

.paypal-text {
    width: 580px;
    margin-left: auto;
}

/* .fullscreen_register .register_step.step_2 .step_2_wrapper .register_row5 .register_pay_btn:hover,
.fullscreen_register .register_step.step_2 .step_2_wrapper .register_row5 .register_pay_btn:focus {
    background: var(--white-color);
    color: var(--color-FFD140);
} */

.body-lock {
    overflow: hidden;
    height: 100vh;
}

/* header section end */
/* banner section start */
.banner_sec .banner_swiper .banner_single .banner_single_wrapper {
    padding: 135px 0;
    min-height: 390px;
}

.banner_sec .banner_swiper .banner_single .banner_single_wrapper .banner_text {
    width: 834px;
    line-height: 60px;
    transition: all 0.5s ease-out;
}

/* banner section end */
/* World Cuisine start */
.word_cuision_sec {
    background: url('../images/map.png');
    background-size: cover;
    background-repeat: no-repeat;
}

img.shadow-img-1 {
    position: absolute;
    top: 0;
}

img.shadow-img-2 {
    position: absolute;
    bottom: 0;
}

.word_cuision_slider .swiper-slide {
    width: auto;
}

/* World Cuisine end */
/* Fruit & Vegetables start  */
.fruit_veg_list {
    gap: 22px;
}

.fruit_veg_list .swiper-slide {
    width: 177px;
}

.product-cat-sec {
    gap: 6px;
    margin-bottom: 8px;
}

.product-cat-img {
    border-radius: 50%;
}

/* Fruit & Vegetables end  */
/* footer section start */
.footer_wrapper .search_result{
    max-height: 630px;
}
footer .footer_wrapper .footer_logo{
    width: 318px;
    height: 85px;
}
footer .footer_wrapper {
    gap: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-9a9a9a7d);
}
.footer-bottom{
    border-top: 1px solid var(--color-9a9a9a7d);
}
footer .footer_wrapper .footer_search {
    width: 697px;
}

footer .footer_wrapper .footer_link_list {
    column-count: 3;
}

.footer_link_list li {
    margin-bottom: 16px;
}

.footer_button {
    border-radius: 20px;
}

.copy_write_link {
    line-height: 30px;
    padding: 0 10px;
}

.copy_write_link::after {
    content: "";
    width: 1px;
    height: 20px;
    background: var(--gray-color);
    display: block;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.copy_write_link_li:last-child .copy_write_link::after {
    height: 0;
    width: 0;
}

.register_copy_write .copy_write_link::after {
    background: var(--white-color);
}

/* footer section end */
/* popular page start */
.common-banner {
    border-radius: 20px;
    margin-top: 30px;
    height: 298px !important;
}

.shadow-banner {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 4px 4px 5px 2px var(--color-00000021);
}

.shadow-banner-sec {
    margin-top: 30px;
}

.shadow-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(to right,
            var(--black-color) 0%,
            var(--color-transparent) 100%);
    pointer-events: none;
    margin-left: -17%;
}

.common-breadcrumbs {
    margin: 40px 0;
}

.breadcrumbs-list::after {
    position: absolute;
    content: "";
    background: var(--gray-color);
    height: 100%;
    width: 2px;
    transform: rotate(14deg);
    right: 0;
}

.breadcrumbs-list {
    padding: 0 6px 0 0;
    margin: 0 3px 0 0;
}

.breadcrumbs-list:last-child:after {
    display: none;
}

.common-banner-title {
    position: absolute;
    top: 0px;
    margin: auto;
    left: 50px;
    bottom: 0;
    display: block;
    height: fit-content;
    z-index: 1;
}

.popular-img {
    width: 145px;
    height: 145px;
}

.popular-ad {
    width: 362px;
    height: 145px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-grid {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-EEEEEE);
    padding: 19px;
    gap: 19px;
    border-radius: 20px;
}

.popular-ad-img {
    border: 1px solid var(--color-EEEEEE);
}

/* common list  */
.common-list-wrapper {
    gap: 30px;
}

/* world cusion page */
.world-cuisines-tab {
    gap: 22px;
    border-bottom: 0;
}

.world-cuisines-tab.nav-tabs .nav-link.world-cuisines-item {
    font-size: 22px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    color: var(--gray-color);
    padding: 10px 20px;
}

.world-cuisines-tab.nav-tabs .nav-link.active {
    text-shadow:
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color),
        0 0 1px var(--primary-color);
    ;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.load_more_btn {
    min-width: 120px;
    font-weight: 700;
}

/* store page */
.store-details {
    margin: 31px 0 0;
}

.store-details-wrapper {
    border: 1px solid var(--color-EEEEEE);
    border-radius: 20px;
    padding: 30px;
    gap: 30px;
}

.product-list-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px 28px;
}

.store-image {
    width: 204px;
    height: 204px;
}

.product-card {
    border: 1px solid var(--color-EEEEEE);
    padding: 20px;
    border-radius: 20px;
}

.product-image-wrapper {
    width: 100%;
    height: 228px;
    border: 1px solid var(--color-EEEEEE);
}

.wishlist-list-layout .product-image-wrapper {
    height: 245px;
}

.product-card-icon {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    cursor: pointer;
}

.product-type-icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.product-price-sec {
    gap: 6px;
}

.product-price-layout {
    margin-bottom: 14px;
    margin-top: 10px;
}

.product-price,
.product-old-price,
.product-discount,
.product-name,
.product-label {
    line-height: 24px;
}

.product-old-price,
.product-details-old-price {
    color: var(--color-B6B6B6);
}

.product-discount {
    background: var(--green-shade);
    color: var(--green-color);
    border-radius: 4px;
    padding: 6px;
    display: inline-block;
}

.product-card-details {
    gap: 10px;
    flex: 1;
}

.product-details-arrow {
    rotate: 90deg;
}

.product-name {
    color: var(--color-666666);
    /* max-height: 47px; */
    max-height: unset;
}

.product-cart {
    font-size: 20px;
    line-height: 24px;
    padding: 9px 10px;
    font-weight: 600;
    margin-top: auto;
}

.edit-vender-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    width: 66px;
    height: 66px;
}

.edit-vender-icon {
    width: 40px;
    height: 40px;
}

.vender-top-img-wrapper::after,
.vender-edit-left::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-00000099);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.vender-edit-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    line-height: 24px;
    width: max-content;
}

.vender-edit-left {
    width: 204px;
    height: 204px;
    flex: 0 0 204px;
}

.vender-edit-wrapper,
.vender-edit-right {
    gap: 20px;
}

.vender-edit-center {
    gap: 30px;
}

.vender-edit-textbox {
    font-size: 24px;
    line-height: 36px;
    padding: 13px 30px;
    color: var(--color-707070);
    border: 1px solid var(--color-CBCBCB);
    font-weight: 500;
}

.vender-edit-textarea {
    min-height: 120px;
    border: 1px solid var(--color-CBCBCB);
    padding: 20px;
    color: var(--gray-color);
    font-size: 16px;
}

.vender-edit-btn {
    line-height: 24px;
    padding: 27px;
}

.vender-edit-modal .modal-body-wrapper {
    padding-top: 22px;
}

.vender-edit-modal .modal-header {
    padding: 43px 26px 20px 0;
}

/* Out of stock state */
.product-card.out-of-stock .product-img {
    filter: grayscale(100%) opacity(0.6);
}

.product-card.out-of-stock .product-cart {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
    cursor: auto;
}

.product-card.out-of-stock .product-card-desc::after,
.product-card.out-of-stock .product-price-layout::after {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-ffffff69);
    z-index: 1;
}

.out-of-stock a {
    pointer-events: none;
    cursor: not-allowed;
}

/* Fresh Basket page */
.filter-btn {
    font-size: 22px;
    gap: 10px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    padding: 11px 23px;
    flex: none;
}

.filter-btn:hover,
.filter-btn:focus {
    color: var(--gray-color);
}

.filter-toggle {
    border: 1px solid var(--gray-color);
    background: var(--white-color);
    padding: 14px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.filter-toggle:hover,
.filter-toggle:focus {
    border-color: var(--gray-color);
}

.filter-toggle.collapsed .filter-arrow {
    transform: rotate(180deg);
}

.filter-toggle .filter-arrow {
    transform: rotate(360deg);
}

.filter-item-sec {
    border: 1px solid var(--gray-color);
    padding: 10px;
    border-radius: 10px;
    background: var(--color-F1F1F1);
}

.filter-checbox-layout,
.filter-box {
    gap: 10px;
}

.accordian-filter {
    margin-bottom: 20px;
}

.accordion-sec .accordian-filter:last-child {
    margin-bottom: 0;
}

.slider-container {
    position: relative;
}

.range-wrapper {
    padding: 10px;
}

.slider-container input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    pointer-events: none;
    height: 1px;
    background: transparent;
    z-index: 2;
}

#minRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gray-color);
    cursor: pointer;
    transition: background 0.3s ease;
}

#minRange.selected::-webkit-slider-thumb {
    background: var(--primary-color);
}

#minRange::-moz-range-thumb {
    -moz-appearance: none;
    pointer-events: all;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gray-color);
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

#minRange.selected::-moz-range-thumb {
    background: var(--primary-color);
}

#maxRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.track {
    width: 100%;
    height: 1px;
    background: var(--color-C4C4C4);
    border-radius: 4px;
    position: absolute;
    top: 0;
    z-index: 1;
}

.range {
    height: 1px;
    background: var(--color-C4C4C4);
    border-radius: 4px;
    position: absolute;
    top: 0;
    z-index: 2;
    transition: background 0.3s ease;
}

.range.selected {
    background: var(--primary-color);
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.filter-btn-layout {
    /* margin-top: 40px; */
    gap: 20px;
}

/* cart drawer */
.cart-list-wrapper {
    gap: 30px;
}

.single-cart-list {
    border: 1px solid var(--color-EEEEEE);
    border-radius: 20px;
    padding: 20px;
    gap: 12px;
}

.single-cart-left-list {
    gap: 12px;
}

.cart-img {
    width: 119px;
    height: 119px;
    border-radius: 10px;
}

.old-price-text {
    color: var(--color-B6B6B6);
    margin-left: 2px;
}

.cart-discount {
    color: var(--green-color);
    margin-left: 20px;
}

.cart-title,
.page-not-found-text {
    color: var(--color-666666);
}

.price-text,
.old-price-text,
.cart-discount,
.cart-title,
.cart-other-details,
.total-text,
.order-cart-title,
.order-cart-id,
.order-cart-qty,
.order-cart-method,
.order-cart-rate-product,
.write-review-text {
    line-height: 24px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.qty-minus-btn {
    background: var(--white-color);
    border: 1px solid var(--gray-color);
}

.qty-plus-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cart-qty {
    max-width: 42px;
    text-align: center;
    justify-content: center;
    width: 42px;
}

.cart-desc {
    gap: 7px;
}

.cart-qty-sec {
    width: fit-content;
    margin-left: auto;
}

.qty-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.cart-total-sec {
    border: 1px solid var(--color-EEEEEE);
    border-radius: 20px;
    padding: 20px;
}

.cart-total-sec {
    gap: 20px;
}

.cart-total-text {
    gap: 9px;
}

.checkout-btn {
    font-size: 20px;
    padding: 18px;
}

/* cart page */
.cart-section-wrapper {
    gap: 30px;
}

.cart-section-right {
    width: 31.3%;
}

.cart-table {
    border: 1px solid var(--color-EEEEEE);
    border-radius: 20px;
}

.cart-header {
    border-bottom: 1px solid var(--color-EEEEEE);
    padding: 30px 37px 20px 30px;
}

.cart-header-item,
.cart-section-title,
.cart-section-details,
.cart-section-price {
    line-height: 24px;
}

.cart-item {
    padding: 20px 37px 20px 30px;
    border-bottom: 1px solid var(--color-EEEEEE);
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-section-img {
    margin-right: 16px;
    width: 80px;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce .quantity .qty {
    -moz-appearance: textfield;
    /* For Firefox */
    appearance: textfield;
    max-width: 42px;
    border: none;
}

.woocommerce a.remove:hover {
    background: var(--white-color);
    border-radius: 4px;
}

.cart-section-desc {
    gap: 5px;
}

.cart-section-close {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.cart-last-column {
    width: 30px;
}

.shopping-btn-sec {
    margin: 40px 30px 30px 30px;
}

.shopping-btn {
    font-size: 20px;
    background: var(--gray-color);
    border-color: var(--gray-color);
    padding: 16px;
}

.cart-section-right .cart-total-sec {
    padding: 30px;
}

.cart-cell {
    padding-right: 20px;
}

.empty-cart-wrapper {
    gap: 30px;
}

.empty-cart-text {
    line-height: 70px;
}

.empty-cart-sec {
    padding-top: 204px;
}

/* product details page */
.product-details {
    overflow-y: auto;
    height: 700px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 28px;
}

.product-details-wrapper {
    gap: 37px;
}

.product-slider-container {
    width: 57.11%;
    gap: 30px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: fit-content;
}

.product-main.swiper {
    width: 100%;
    height: 700px;
}

.product-thumbs {
    width: 119px;
    height: 700px;
}

.product-main {
    flex: 1;
}

.product-thumbs .swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.product-thumbs .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 10px;
    transition: 0.3s;
}

.product-thumbs .swiper-slide-thumb-active::after {
    border-color: var(--primary-color);
}

.product-thumbs img,
.product-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.product-main img {
    box-shadow: 0px 4px 4px rgba(var(--black-color), 0.25);
}

.product-thumbs img {
    border: 1px solid var(--color-EEEEEE);
}

.product-details-sec {
    gap: 30px;
}

.product-row {
    border: 1px solid var(--color-EEEEEE);
    border-radius: 30px;
    padding: 30px;
}

.product-details-desc,
.product-row-title,
.product-details-title,
.product-row-text {
    line-height: 24px;
}

.product-details-price {
    line-height: 50px;
}

.product-details-old-price {
    line-height: 30px;
}

.product-details-discount {
    line-height: 26px;
    color: var(--green-color);
}

.product-details-desc-sec {
    gap: 17px;
}

.product-details-col1,
.product-row-wrapper {
    gap: 20px;
}

.product-details-price-sec {
    gap: 12px;
}

.product-details-col1 .qty-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.product-details-btn-layout {
    gap: 30px;
}

.product-details-btn {
    font-size: 20px;
    line-height: 24px;
    padding: 19px;
}

.product-row-label {
    width: 183px;
    min-width: 183px;
}

.product-row-single {
    gap: 33px;
}

.product-slider {
    margin-top: 30px;
}

.product-slider .swiper-slide {
    height: auto;
}

.product-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.product-slider .swiper-slide .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* checkout page */
.checkout-wrapper {
    gap: 30px;
}

.checkout-right-sec {
    width: 32.3%;
    gap: 20px;
}

.checkout-gray-box {
    background: var(--color-F6F6F6);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.checkout-gray-box:last-child {
    margin-bottom: 0;
}

.checkout-top-box {
    gap: 10px;
}

.checkout-error-msg {
    background: var(--color-FF2F2F33);
    color: var(--color-FF2F2F);
    padding: 11px 0;
}

.creadit-card-sec {
    margin-top: 30px;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    padding: 30px;
    /* gap: 30px; */
}

.single-card-sec {
    margin-top: 0px;
}

.card-method-sec {
    margin-top: 20px;
}

.single-card {
    border-top: 1px solid var(--gray-color);
    padding: 24px 0 24px 0;
}

.single-card:last-child {
    padding-bottom: 0;
}

.credit-card-line {
    margin-left: 20px;
}

.selected-items-sec {
    gap: 20px;
    max-height: 524px;
    overflow-y: auto;
    scrollbar-width: none;
}

.single-card-title {
    color: var(--color-666666);
}

.single-card-details,
.single-card-title,
.single-card-qty,
.single-card-price {
    line-height: 24px;
}

.single-card-details p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.single-card-qty-sec {
    gap: 20px;
}

.single-card-desc {
    gap: 7px;
}

.selected-items-sec .single-cart-list {
    gap: 20px;
}

.payment-option .custom-radio {
    margin-right: 20px;
}

/* delivery address page */
.delivery-text {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-color);
}

.address-details {
    gap: 11px;
}

.bottom-options {
    margin-left: 50px;
    margin-top: 11px;
}

.bottom-options-item {
    padding-right: 14px;
    margin-right: 14px;
}

.bottom-options-item:last-child {
    margin: 0;
    padding: 0;
}

.bottom-options-item::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background: var(--gray-color);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.bottom-options-item:last-child::after {
    width: 0;
    height: 0;
}

.single-address {
    border-bottom: 1px solid var(--gray-color);
    padding: 30px 0;
}

.address-content .address-list-sec .single-address:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.show-more-btn {
    background-color: var(--color-F6F6F6);
    padding: 0;
}

.address-list-sec {
    margin-bottom: 30px;
}

.show-more-add-sec {
    margin-bottom: 20px;
    display: flex;
}

.arrow-address-icon {
    transform: rotate(90deg);
}

.hidden-address {
    display: none;
}

.payment-modal-desc {
    gap: 24px;
}

.card-modal-form,
.card-modal-info {
    margin-top: 20px;
}

.card-modal-info {
    gap: 2px;
}

.add-select-layout {
    gap: 20px;
}

.select-address-type {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 100%;
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    background: var(--color-F6F6F6);
    padding: 14px 15px;
    font-weight: 500;
}

.seleccted-address {
    background: var(--color-F7D6B4);
    border-color: var(--color-F7D6B4);
    color: var(--color-666666);
}

.delivery-modal-row-wrapper {
    gap: 22px;
}

.delivery-modal-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-EEEEEE);
}

.delivery-modal-row:last-child {
    border: none;
    padding-bottom: 0;
}

.delivery-modal-row:first-child {
    padding-top: 0;
}

.delivery-textarea {
    border: 1px solid var(--gray-color);
    color: var(--gray-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 100%;
    background: var(--color-F6F6F6);
    min-height: 102px;
}

.success-modal .modal-body-wrapper {
    padding: 36px 30px 50px 30px;
}

/* profile page */
.profile-layout {
    gap: 30px;
}

.account-sidebar {
    width: 23.8%;
}

.account-sidebar .nav-link {
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
    transition: 0.3s;
    font-weight: 500;
    padding: 20px;
    font-size: 26px;
}

.account-sidebar .nav-link.active {
    background-color: var(--color-FFF5EA);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.account-sidebar .logout-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.account-sidebar .logout-btn:hover,
.account-sidebar .nav-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Content */
.account-content {
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    padding: 30px 30px 46px 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-img-wrapper {
    width: 161px;
    height: 161px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-F6F6F6);
    overflow: hidden;
    /* padding: 40px; */
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dashboard-cards .card {
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    text-align: center;
    padding: 34px 45px;
    gap: 10px;
}

.dashboard-cards .card:hover {
    box-shadow: 4px 4px 5px 2px var(--color-00000021);
}

.profile-sm-text,
.login-subtitle,
.privacy-text {
    font-size: 20px;
}

.profile-info {
    gap: 10px;
}

.dashboard-title,
.order-cart-title,
.order-cart-rate-product {
    color: var(--color-666666);
}

.dashboard-cards {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* profile tab */
.my-profile-body {
    margin-top: 20px;
}

.profile-img-sec {
    width: 155px;
    height: 155px;
}

.profile-image-left {
    width: 155px;
}

.profile-image {
    border-radius: 50%;
    object-fit: cover;
}

.camera-sec {
    position: absolute;
    background: var(--color-F9F9F9);
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 50%;
    right: 0;
    bottom: 0;
}

.profile-input-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.profile-top-sec {
    gap: 30px;
    margin-bottom: 30px;
}

.password-form-input {
    width: 424px;
}

.change-password-link {
    margin-left: 30px;
    display: block;
}

.privacy-form-sec {
    margin-top: 30px;
}

.eye-icon {
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.eye-show {
    display: none;
}

.profile-btn-layout {
    gap: 30px;
    display: flex;
}

.privacy-form {
    padding-bottom: 84px;
    display: flex;
}

.password-label {
    min-width: 243px;
}

.change-password-column {
    gap: 23px;
}

.change-password-fields {
    gap: 30px;
    display: flex;
}

.profile-input-text {
    margin-left: 265px;
    width: 583px;
    margin-top: 20px;
    line-height: 30px;
}

/* order tab */
.my-order-search {
    max-width: 435px;
    border-radius: 15px;
    padding: 10px 20px;
}

.my-order-search-field {
    font-size: 22px;
}

.my-order-right {
    gap: 20px;
}

.my-order-header {
    margin-bottom: 30px;
}

.order-card {
    border-radius: 20px;
    background: var(--color-F8F8F8);
}

.order-card-header {
    padding: 30px 30px 20px 30px;
}

.order-card-no-header {
    padding-top: 30px;
}

.order-cart-body {
    padding: 0 30px 30px 30px;
}

.order-cart-footer {
    padding: 30px;
}

.order-card-header-wrapper,
.order-cart-body-wrapper {
    gap: 20px;
}

.order-card-header-desc {
    gap: 6px;
}

.order-cart-img {
    border-radius: 10px;
}

.order-cart-desc {
    gap: 9px;
}

.dashed-line {
    border: none;
    height: 1px;
    background: repeating-linear-gradient(to right,
            var(--gray-color) 0,
            var(--gray-color) 12px,
            transparent 12px,
            transparent 24px);
    width: 100%;
}

.star-layout {
    margin-left: 20px;
}

.order-card-layout,
.filter-order-btn,
.review-form-wrapper {
    gap: 30px;
}

/* filter modal */
.filter-option {
    width: max-content;
    gap: 20px;
}

.filter-option-list {
    gap: 20px;
}

.filter-option-list .custom-option input[type="radio"]:checked~.filter-option-text {
    color: var(--primary-color);
}

/* review modal */
.upload-box {
    width: 265px;
    height: 129px;
    border: 2px dashed var(--gray-color);
    background-color: var(--color-E7E7E7);
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-box:hover {
    border-color: var(--primary-color);
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.rating-message {
    display: none;
    font-size: 13px;
}

/* wishlist tab */
.wishlist-list-layout {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    gap: 30px 33px;
}

/* login screen */
.account-sec {
    margin: 23px 0;
}

.login-flow-sec-outer {
    min-height: 100vh;
    background: url("../images/login-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-flow-sec {
    padding-bottom: 30px;
    padding-top: 192px;
}

.login-screen {
    padding-top: 62px;
}

.account-line::after {
    position: absolute;
    content: "";
    background: var(--white-color);
    width: 100%;
    height: 1px;
    left: 0;
    width: 27%;
}

.account-line::before {
    position: absolute;
    content: "";
    background: var(--white-color);
    width: 100%;
    height: 1px;
    right: 0;
    width: 27%;
}

.login-text {
    margin: 32px 0 0 32px;
    gap: 12px;
}

.login-flow-common-form {
    margin-top: 38px;
    gap: 20px;
}

.login-card {
    width: 100%;
    max-width: 627px;
}

.login-flow-input {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.login-flow-input::placeholder {
    color: var(--white-color);
}

.login-card .eye-icon {
    filter: brightness(0) invert(1);
}

/* Remove filter on eye icon when password field has autofill */
.login-card .password-form-input input:-internal-autofill-selected~.eye-icon,
.login-card .password-form-input input:-webkit-autofill~.eye-icon,
.login-card .password-form-input input:-webkit-autofill:hover~.eye-icon,
.login-card .password-form-input input:-webkit-autofill:focus~.eye-icon,
.login-card .password-form-input input:-webkit-autofill:active~.eye-icon,
.login-card .password-form-input input:-internal-autofill-selected~.eye-hide,
.login-card .password-form-input input:-internal-autofill-selected~.eye-show,
.login-card .password-form-input input:-webkit-autofill~.eye-hide,
.login-card .password-form-input input:-webkit-autofill~.eye-show {
    filter: none;
}

.login-flow-btn {
    height: 78px;
    font-size: 20px;
}

.otp-input {
    width: 78px;
    height: 78px;
    padding: 10px;
}

.password-reset-sec {
    gap: 30px;
}

/* privacy page */
.single-privacy,
.privacy-list,
.privacy-list-sec {
    gap: 10px;
}

.privacy-page-wrapper {
    gap: 40px;
}

.privacy-icon {
    margin-top: 5px;
}

.common-topic-sec {
    margin-top: 12px;
}

.common-topics-title {
    margin-bottom: 20px;
}

/* contact us page */
.contact-us {
    background: var(--color-120D10);
    border-radius: 20px;
    padding: 60px;
    gap: 119px;
}

.contact-info-sec {
    width: 43.6%;
    z-index: 1;
}

.contact-form-sec {
    z-index: 1;
}

.contact-text {
    margin: 20px 0 38px 0;
}

.contact-layout {
    gap: 56px;
}

.single-contact {
    gap: 26px;
}

.contact-form {
    margin-top: 10px;
    gap: 30px;
}

.contact-us-img {
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.contact-form-column {
    --bs-gutter-x: 20px;
}

.contact-form .common-input,
.contact-form .common-select {
    color: var(--color-707070);
}

.load_more_btn {
    margin-top: 90px;
}

/* pagenot found */
.page-not-found-sec {
    padding-top: 200px;
}

/* thank you sec */
.thank-you-sec {
    padding-top: 150px;
}

/* product message */
.product-success-msg {
    border-top-color: var(--primary-color);
    background-color: var(--color-F7F7F7);
}

.product-success-msg.woocommerce-message::before {
    top: unset;
}

.woocommerce-notices-wrapper .product-success-msg .button {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: var(--color-FFF5EA);
    margin-left: auto;
    white-space: nowrap;
}

.woocommerce-notices-wrapper .product-success-msg .button:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Add For Error Message show Added By RG*/
.wpcf7-response-output {
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
}

/* Added Error Focus and Paypal Styling: Vanshika*/
/* Highlight the invalid section */
.error-highlight {
    outline: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: outline 0.3s ease;
}

/* Inline error under each field */
.inline-error {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 6px;
    margin-left: 4px;
    font-weight: 500;
}

.fullscreen_register .register_step.step_2 .step_2_wrapper .register_row5 .paypal_pay_btn {
    padding: 19px;
    font-size: 40px;
    color: var(--white-color);
    min-width: 580px;
}

/* Added Error Focus and Paypal Styling: Vanshika*/
/* Loader Style for forgot password : RG */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 0.8s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*======================================================================================
 				This Code Is Added By Kaushal For Cart Loader (QTY)
 ======================================================================================*/

.cart-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-EEEEEE);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: cart-spin 0.8s linear infinite;
}

@keyframes cart-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mini Cart Drawer Loader */
#cartDrawer .offcanvas-body {
    position: relative;
}

.mini-cart-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*===================================================
 				        END
 ====================================================*/

/* GENERAL SPINNER UNDER BUTTON FOR FORMS START */
/* MAIN LOADER (small spinner) */
.btn-loader {
    width: 16px !important;
    height: 16px !important;
    border: 3px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

/* SPIN KEYFRAMES */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* contact us page spinner */
.contact-form-submit p{
    position: relative;
}
.contact-form-submit .wpcf7-spinner{
   position: absolute;
    margin: auto;
    left: calc(50% + 60px);
    top: 0;
    bottom: 0;
}
/* HIDE BY DEFAULT */
.hide-loader {
    display: none !important;
}

.fullPageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    /* These 3 lines guarantee perfect center */
    display: none;
    align-items: center !important;
    justify-content: center !important;

    z-index: 9999999;
    pointer-events: all;
}

.fullPageLoader .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

/* GENERAL SPINNER UNDER BUTTON FOR FORMS END */

/* search page */
.results-title {
    color: var(--color-666666);
}

.serach-page-product .product-list-layout {
    gap: 40px 30px;
}

.sorry-page-sec {
    padding: 200px 0;
}

.address-select2 .field-error-message {
    order: 1;
    display: block;
    width: 100%;
}

/*======================================================================================
 	This Code Is Added By Kaushal For Edit/Add Address FORM FIELD VALIDATION ERRORS
  ======================================================================================*/

/* FORM FIELD VALIDATION ERRORS SOC */
.field-error {
    border: 1px solid var(--color-dc3545) !important;
    background-color: var(--color-fff8f8) !important;
}

.field-error-message {
    display: block;
    color: var(--color-dc3545);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* Select2 error styling */
.field-error+.select2-container .select2-selection--single,
select.field-error+.select2-container .select2-selection--single,
.common-select-select2.field-error+.select2-container .select2-selection--single {
    border: 1px solid var(--color-dc3545) !important;
    background-color: var(--color-fff8f8) !important;
}

/* Ensure select2 container gets error styling when select has field-error class */
select.field-error~.select2-container .select2-selection--single,
.common-select-select2.field-error~.select2-container .select2-selection--single {
    border: 1px solid var(--color-dc3545) !important;
    background-color: var(--color-fff8f8) !important;
}

/* FORM FIELD VALIDATION ERRORS EOC */
/*===================================================
 				        END
 ====================================================*/

/* wocommerce css overwrite start (heli) */
.woocommerce-checkout #payment {
    background: none;
    border-radius: 0;
}

.woocommerce-checkout #payment div.payment_box {
    display: none !important;
}

.paypal-button-container {
    max-width: unset;
}

.checkout-gray-box .ppc-button-wrapper,
#ppcp-recaptcha-v2-container {
    display: none;
}

.woocommerce .review-item .review-person-image,
.woocommerce-page .review-item .review-person-image {
    height: 60px !important;
    max-width: unset !important;
}

/* wocommerce css overwrite end */

/* new brand page */
.brand-banner{
    height: 390px;
    margin-bottom: 80px;
}
.all-food-sec{
    background: url('../images/brand-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0;
}
.all-food-desc{
    color: var(--color-666666);
}
.all-food-wrapper{
    gap: 40px;
}
.all-food-title{
    line-height: 60px;
}
.all-food-btn{
    min-width: 288px;
}

#wcfm-main-contentainer #wcfm_menu .wcfm_menu_item span {
	display: inline-block;
}

#wcfm-main-contentainer #wcfm_menu .wcfm_menu_items a.wcfm_menu_item {
    text-align: left;
    padding: 0px 0px 0px 25px;
}

.wcfm-header-container {
    max-width: 1600px;
    margin: 0 auto;
}

.wcfm-header-container .wcfm-site-name a{
    padding-left: 0px;
}

/* Override WCFM header site name display and show custom theme title instead */
.wcfm-header-container .wcfm-site-name > a {
    display: none;
}

.wcfm-header-container .wcfm-site-name{
    display: flex;
    justify-content: space-between;
}

.wcfm-header-container .wcfm-site-name a{
    font-size: 18px;
}

.wcfm-header-container .wcfm-site-name .appieat-wcfm-header-title {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    padding: 20px 0px 10px;
}