@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --font-inter: "Inter", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-mulish: "Mulish", sans-serif;
    --red-soft: #EB5757;
    --red-deep: #BE2C2C;
    --gray-charcoal: #2E2E2E;
    --gray-medium: #888888;
    --peach-translucent: #FCEDE34D;
    --soft-cornsilk: #FCEDE34D;
    --white: #FFFFFF;
    --cream-white: #FFF9F9;
    --sage-purple: #A098AE;
}

body {
    background-color: var(--soft-cornsilk);
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.header {
    width: 100%;
    height: 81px;
    background-color: var(--white);
    box-shadow: 0px 10px 30px 0px #EA6A120D;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    width: 73px;
    height: 50px;
}

.search_bar {
    max-width: 513px;
    width: 100%;
    padding: 13px 24px;
    border-radius: 7px;
    background-color: var(--cream-white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    align-self: center;
    border: 1px solid #BE2C2C1F;
    box-shadow: 0px 0px 6px 0px #0000001F;
}

.header_content {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quick_action_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick_action {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #EEEEEE;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.quick_action.search {
    display: none;
}

.quick_action.cross {
    display: none;
}

.quick_action img {
    height: 18px;
    width: 18px;
}


.logo-sm {
    display: block;
    margin: auto;
    display: none;
}

.search_bar_container {
    max-width: 513px;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.search_bar_wrapper {
    width: 100%;
    margin: auto;
    position: relative;
}

.search_bar_body {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 60px;
    padding-top: 13px;
    padding-bottom: 22px;
    padding-left: 22px;
    padding-right: 77px;
    z-index: 20;
    border: 0.5px solid #BE2C2C1F;
    border-radius: 7px;
}

.search_bar_body.active {
    display: block;
    visibility: visible;
    opacity: 1;
}

.sidebar_steps_body_wrapper {
    position: relative;
    /* overflow: hidden; */
    height: 100%;
}

.sidebar_steps_body_wrapper .step_content {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    transition: transform 0.5s ease-in-out;

}


.card_radio input[type="radio"] {
    display: none;
}

.card_radio {
    width: 50%;
    border-radius: 7px;
    padding: 10px 15px;
    border: 1px solid #BABABA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card_radio span {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    color: #BABABA;
}




.step_button {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    padding: 16px;
    gap: 10px;
    color: white;
    background-color: var(--red-deep);
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    outline: none;
    border: none;
    cursor: pointer;
}

.verification_form_row {
    font-family: var(--font-inter);
}

.form-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.card_input {
    position: relative;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.checkbox-wrapper label {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #525856;
}

.card_input::after {
    content: url('../icons/calender-icon.svg');
    display: block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}


.form-group.full input {
    width: 100%;
}

.form-group.otp input {
    text-align: center;
}

.form-group.radio-btn {
    margin-top: 10px;
}

.form-group input {
    width: 50%;
    border: 1px solid #BABABA;
    border-radius: 7px;
    outline: none;
    font-family: var(--font-inter);
    font-weight: 600;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    padding: 15px 17px;
    margin-top: 8px;
}

.verification_action_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-inter);
    margin-top: 5px;
}

.verification_action_wrapper a:nth-of-type(1) {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #666666;
}

.verification_action_wrapper div {
    display: flex;
    flex-direction: column;
}

.verification_action_wrapper div span {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1.1%;
    color: var(--red-deep);
}

.verification_action_wrapper div>a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    color: var(--red-deep) !important;
}

.form-group.phone input:nth-of-type(1) {
    width: 60px;
    text-align: center;
}

.form-group.phone input:nth-of-type(2) {
    width: 100%;
}

.verification_form_row h5 {

    font-size: 16px;
    line-height: 100%;
    color: #333333;
}

.verification_form_row p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #666666;
    margin-top: 5px;
}

.search_bar_body h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #3D3C3C;
}

.reacent_search_row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.reacent_search_row img {
    width: 17px;
}

.popular_search_wrapper {
    width: 100%;
    margin-top: 15px;
}

.p_search_wrapper {
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.p_search {
    padding: 8px 10px;
    border: 1px solid #BE2C2C66;
    border-radius: 27px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #626262;
    background-color: white;
    cursor: pointer;
}

.reacent_search_row span {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #3D3C3C;
}

.search_bar input {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--sage-purple);
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
}

.search_bar input::placeholder {
    color: var(--sage-purple);
}


.content-container {
    width: auto;
    display: flex;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    min-height: calc(100vh - 81px);
}

.products_feed {
    width: 100%;
    padding-bottom: 50px;
}

.main-content {
    flex: 1;
    margin-left: 120px;
    padding: 30px;
    position: relative;
}


.search_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0000004D;
    z-index: 11;
    display: none;
}


.search_overlay.active {
    display: block;
}

.sidebar_overlay,
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    visibility: hidden;
    display: block;
}

.modal_overlay.active {
    visibility: visible;
}


.sidebar {
    width: 457px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -465px;
    overflow: auto;
    background-color: white;
    z-index: 60;
    transition: all 0.5s ease;
    display: block;
}

.sidebar.active {
    right: 0;
    overflow: hidden;
}

.sidebar_steps_wrapper {
    width: 100%;
    padding: 0px 40px;
    margin-bottom: 10px;
    font-family: var(--font-inter);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}

.sidebar_steps_wrapper .step-divider {
    flex: 1;
    height: 1px;
    background-color: #C5C5C5;
}

.sidebar_steps_wrapper .step {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}



.sidebar_steps_wrapper .step div {
    width: 28px;
    height: 28px;
    border: 1px solid var(--red-deep);
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: var(--red-deep);
}


.sidebar_steps_wrapper .step.active div {
    background-color: var(--red-deep);
    color: white;
}


.sidebar_steps_wrapper .step span {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #3D3C3C;
}


.banner-container {
    width: 100%;
    height: 200px;
    background-image: url('/assets/images/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 69px;
    padding-left: 82px;
    padding-bottom: 50px;
    border-radius: 20px;
}

.banner-container .content {
    max-width: 560px;
    width: 100%;
    font-family: var(--font-inter);
    color: var(--white);
}

.banner-container .content h1 {
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    margin-bottom: 26px;
}

.banner-container .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.discount-section {
    width: 100%;
    margin-top: 30px;
}

.section-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-charcoal);
    line-height: 100%;
}

.timer {
    padding: 8.5px 13px;
    background-color: white;
    border-radius: 32px;
    display: flex;
    gap: 2px;
}

.timer span:first-child {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.timer span:last-child {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--red-deep);
}

.product-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 50px;
}

.product-wrapper {
    max-width: 297px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 4px 8px 0px #0000000F;
    border-radius: 16px;
    padding: 14px 12px;
    position: relative;
    padding-bottom: 20px;
}

.discount-badge {
    position: absolute;
    top: 31px;
    left: 0px;
    background-color: #EB5757;
    color: var(--white);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 2px 17px;
    z-index: 10;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 18px;
}

.product-wrapper .product-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    aspect-ratio: 4 / 2.6;
}

.product-wrapper .product-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image-wrapper .availability-badge {
    color: #333333;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 14px;
    background-color: #FFFFFFAB;
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 5.5px 9px;
    border-radius: 7px;
}

.product-desc-wrapper {
    width: 100%;
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}

.product-desc-wrapper .desc-col:nth-of-type(2) {
    margin-top: 15px;
    margin-bottom: 10px;
}

.desc-col {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
}

.h-icon {
    cursor: pointer;
}

.desc-col h5 {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: var(--gray-charcoal);
    width: 60%;
}


.desc-col h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    display: flex;
}



.desc-col h6 span {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #888888;
}

.desc-col h6 span:first-child {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--red-deep);
}

.desc-col h6 span:last-child {
    text-decoration: line-through;
    margin-left: 4px;
}

.desc-col h6 span:nth-child(2) {
    margin-left: 4px;
}

.popular-section {
    width: 100%;
    margin-top: 40px;
}

.products-sections {
    width: 100%;
    margin-top: 40px;
}

.tabs_header {
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
    margin-top: 30px;
    position: sticky;
    background-color: var(--soft-cornsilk);
}

.cart_opener {
    position: absolute;
    right: 0;
    top: -34px;
    cursor: pointer;
}

.tabs_header a {
    display: inline-block;
    text-decoration: none;
    padding: 12px 20px;
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #7E7E7E;
    white-space: nowrap;
}

.tabs_header.fixed {
    position: fixed;
    top: 50px;
    left: 121px;
    z-index: 10;
    width: 94%;
    background-color: white;
}

.tabs_header a.tab_active {
    color: var(--red-deep);
    border-bottom: 2px solid var(--red-deep);
}

/* side navigation  */
.side_nav {
    background-color: var(--white);
    width: 120px;
    height: calc(100% - 80px);
    z-index: 40;
    position: fixed;
    top: 81px;
    left: 0;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px #0000001F;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.side_nav:hover {
    width: 200px;
    transition: all 0.3s ease-in-out;
}

.hamburger {
    width: 165px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger img {
    cursor: pointer;
}

.hamburger .logo {
    width: 61px;
    transform: all 0.3s ease-in-out;
}

.actuall_links {
    display: none;
}

.close_links {
    width: 100%;
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.side_nav:is(.hovered) {
    width: 200px;
}




.side_nav:is(.hovered) .actuall_links {
    display: block;
}

.side_nav:is(.hovered) .nav_link svg {
    display: block;
    height: 25px;
    width: 25px;
}

.navigation_links_wraper {
    width: 100%;
}

.nav_heading {
    padding-left: 20px;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 14px;
    color: #959895;
    display: none;
}

.nav_link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 21px;
    margin: 8px 0px;
    width: 200px;
    margin-left: 20px;
    font-family: var(--font-inter);
    cursor: pointer;
}



.nav_link:hover svg path {
    fill: white;
}

.nav_link:hover {
    background-color: var(--red-deep);
}


.nav_link:hover a {
    color: white;
}


.sub_link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 21px;
    margin: 8px 0px;
    font-family: var(--font-inter);
    width: 130px;
    font-size: 13px;
    margin-left: auto;
    justify-content: center;
}

.sub_link a {
    color: #959895;
    text-decoration: none;
}

.sub_link circle {
    fill: #BE2C2C;
}

.sub_link.active_link a {
    color: white;
    text-decoration: none;
}

.sub_link.active_link {
    background-color: #BE2C2C;
}

.sub_link.active_link circle {
    fill: white;
}

.nav_link.active_link {
    background-color: transparent;
}

.side_nav:is(.hovered) .nav_link.active_link {
    background-color: #BE2C2C;
}

.nav_link.active_link a {
    color: white;
}

.nested_links {
    display: none;
}


.nav_link .icons_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.nav_link .admin_dp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BE2C2C33;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #BE2C2C;
}

.nav_link:hover .admin_dp {
    background-color: white !important;
}

.nav_link .icons_wrapper svg {
    width: 20px;
    height: 20px;
}

.nav_link .icons_wrapper svg path,
.nav_link .icons_wrapper svg circle {
    fill: #959895;
}

.nav_link.active_link .icons_wrapper {
    background-color: var(--red-deep);
}

.nav_link.active_link .icons_wrapper svg {
    height: 25px;
    width: 25px;
}

.nav_link.active_link .icons_wrapper svg path,
.nav_link.active_link .icons_wrapper svg circle {
    fill: white;
}

.side_nav:is(.hovered) .icons_wrapper {
    width: fit-content;
    height: fit-content;
    background-color: transparent;
}

.nav_link:hover .icons_wrapper svg path,
.nav_link:hover .icons_wrapper svg circle {
    fill: white !important;
}

.nav_link.active_link .icons_wrapper svg path,
.nav_link.active_link .icons_wrapper svg circle {
    fill: white !important;
}

.side_nav:is(.hovered) .icons_wrapper svg path,
.side_nav:is(.hovered) .icons_wrapper svg circle {
    fill: var(--red-deep);
}



.side_nav:is(.hovered) .nested_links {
    display: block;
}

.side_nav:is(.hovered) .links_section:nth-of-type(2) {
    border-bottom: 1px solid #E3E1E1;
    margin-bottom: 20px;
}



.side_nav:is(.hovered) .nav_link a {
    display: inline;
}

.side_nav:is(.hovered) .nav_link {
    margin-left: 0;
}

.nav_link a {
    font-weight: 400;
    display: none;
    font-size: 14px;
    line-height: 175%;
    color: #959895;
    text-decoration: none;
}

.side_nav:is(.hovered) .hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side_nav:is(.hovered) .hamburger .logo {
    visibility: visible;
    display: block;
}

.side_nav:is(.hovered) .nav_heading {
    display: block;
}


.sidebar {
    padding: 15px 0px;
}

.sidebar .order_section,
.sidebar .verification_section {
    padding: 0 40px;
    position: relative;
    height: 100vh;
    overflow: auto;
}

.sidebar .verification_section {
    height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar_content_wrapper {
    width: 100%;
}

.sidebar .order_section>h3,
.sidebar .verification_section h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    color: #2E2E2E;
    margin-top: 12px;
}

.order_complete_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
}

.order_complete_info img {
    margin-bottom: 30px;
}

.order_complete_info h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #3D3C3C;
    text-align: center;
    margin-bottom: 5px;
}

.order_complete_info p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #3D3C3C;
}

.order_details_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-inter);
}

.order_details_info h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #BE2C2C;
}

.order_details_info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #3D3C3C;
    margin-top: 7px;
    margin-bottom: 7px;
}

.order_details_info h3 {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    margin-top: 0px !important;
    color: #BE2C2C !important;
}

.order_details_info a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    display: block;
    margin-top: 11px;
    text-decoration: underline;
    color: #BE2C2C;
}

.verification_section .verification_top {
    width: 100%;
}

.verification_section .verification_top.verify {
    display: none;
}

.verification-divider {
    margin: 30px auto;
    width: 100%;
}

.verification-divider-top {
    margin-top: 30px;
}

.verification_form_row {
    width: 100%;
    margin-top: 15px;
}

.verification_section .address_wrapper {
    width: 100%;
    font-family: var(--font-inter);
}

.verification_section .address_wrapper h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 8px;
}

.verification_section .address_wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #4A5059;
}

.order_tabs_header {
    width: 100%;
    background-color: #EDEDEE;
    padding: 5px;
    display: flex;
    border-radius: 47px;
    margin-top: 10px;
}

.order_tabs_header a {
    font-family: var(--font-poppins);
    display: inline-flex;
    text-decoration: none;
    flex: 1;
    background-color: transparent;
    border-radius: 34px;
    padding: 6px 0px;
    justify-content: center;
    color: black;
    align-self: center;
    font-size: 13px;
}

.action_link {
    font-family: var(--font-poppins);
    display: inline-flex;
    background-color: transparent;
    border-radius: 34px;
    padding: 6px 0px;
    justify-content: center;
    color: #BE2C2C;
    align-self: center;
    font-size: 14px;
    text-decoration: underline;
}

.order_tabs_header a.active {
    color: white;
    background-color: #BE2C2C;
}

.order_section .tab {
    margin-top: 15px;
    width: 100%;
}

.tab .tab_heading {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

.address_details_section {
    width: 100%;
    border-radius: 20px;
    padding-top: 17px;
    padding-bottom: 15px;
    padding-left: 24px;
    padding-right: 24px;
    background-image: url("/assets/images/address-background.png");
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 10px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address_details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address_details img {
    height: 20px;
}

.address_details div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 13px;
    color: white;
}

.btn-sm-rounded {
    display: inline-block;
    border: none;
    outline: none;
    padding: 7.5px 22px;
    background-color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 12px;
    color: #BE2C2C;
    border-radius: 29px;
    cursor: pointer;
}

.add_price {
    display: inline-block;
    border: none;
    outline: none;
    padding: 7.5px 22px;
    background-color: white;
    font-size: 14px !important;
    color: #BE2C2C !important;
    border-radius: 7px;
    cursor: pointer;
}

.btn-sm-rounded.red {
    background-color: #BE2C2C;
    color: white;
}




.take_away_time_w {
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.take_away_time_w p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #A3A3A3;
}

.take_away_time_w>div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.take_away_time_w>div>div img {
    height: 15px;
}

.take_away_time_w>div>div {
    display: flex;
    gap: 5px;
    align-items: center;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
}

.coupon_section {
    width: 100%;
    margin-top: 15px;
}

.coupon_button {
    width: 100%;
    background-color: #F5F5F5;
    outline: none;
    border: 1px solid #BE2C2C;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 13px;
    cursor: pointer;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 13px;
}


.product_orders_section {
    width: 100%;
    margin-top: 15px;
}

.product_orders_section h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

.empty_orders {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.empty_orders img {
    height: 150px;
}

.empty_orders div {
    text-align: center;
    font-family: var(--font-mulish);
}

.empty_orders div h4 {
    color: #525856;
    font-size: 18px;
    margin-bottom: 4px;
}

.empty_orders div p {
    font-size: 13px;
    line-height: 14px;
    text-align: center;
    color: #757575;
}

.order_bottom_btns {
    border-bottom: 1px solid #DBDBDB;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}


.order_btn_ds {
    background-color: var(--red-deep);
    padding: 12px 22px;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 34px;
}



/* footer  */
.footer {
    width: 100%;
    background-color: var(--white);
    height: 55px;
    display: grid;
    place-items: center;
    position: absolute;
    bottom: 0;
}

.footer p {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    letter-spacing: 2%;
    color: #2B2B2B;
}

.footer p a {
    text-decoration: none;
    color: var(--red-deep);
}

.pricing_section {
    width: 100%;
    margin: 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price_row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing_divider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    margin: 16px 0px;
}


.price_row h4 {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #7E7E7E;
}

.price_row p {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 15px;
}

.price_row p span {
    color: var(--red-deep);
}

.price_row.total h4 {
    color: #2E2E2E;
    font-size: 15px;
}

.price_row.total p {
    font-size: 16px;
}

.complement_order_wrapper {
    width: 100%;
    margin-top: 15px;
}

.complement_order_wrapper h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    color: #2E2E2E;
    margin-bottom: 10px;
}

.c_product_wrapper {
    height: 200px;
    width: 165px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #FAF7F5;
    padding: 8px;
}

.c_product_image_wrapper {
    height: 110px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.c_product_desc_wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 7px;
    gap: 10px;
}

.c_product_image_wrapper img {
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.desc-info {
    display: flex;
    align-items: center;
}

.desc-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-inter);
    font-size: 10px;
    font-weight: 500;
    color: #666666;
}

.c_product_desc_wrapper .desc-col h5 {
    font-size: 13px;
    line-height: 16px;
    width: 75%;
}

.c_product_desc_wrapper .desc-col.price {
    align-items: center;
}

.c_product_desc_wrapper .desc-col.price h6 {
    font-size: 16px;
    align-items: center;
}

.c_product_desc_wrapper .desc-col.price h6 span {
    font-size: 16px;
    text-decoration: none;
}


.c_product_desc_wrapper .desc-col.price img {
    height: 20px;
}

.slider_row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-between;
    margin-bottom: 35px;
}

.place_order_btn {
    width: 100%;
    background-color: var(--red-deep);
    color: white;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    border-radius: 16px;
    padding: 21px 0px;
    text-decoration: none;
    display: block;
    bottom: calc(100vh - 85vh);
    position: sticky;
}

.close_icon {
    margin-left: auto;
    margin-right: 30px;
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
}

.modal_close {
    position: absolute;
    right: -10px;
    top: 20px;
    display: none;
}

.page_banner {
    width: 100%;
    height: 187px;
    background-image: url("/assets/images/favourite_banner.png");
    background-repeat: no-repeat;
    border-radius: 20px;
    font-family: var(--font-inter);
    font-weight: 700;
    line-height: 100%;
    color: var(--white);
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
}

.pages_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom_dropdown {
    width: 109px;
    position: relative;
}

.custom_dropdown .dropdown_head {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: white;
    box-shadow: 0px 4px 8px 0px #0000000F;
    border-radius: 7px;
    justify-content: center;
    padding: 10px 11px;
    gap: 5px;
    cursor: pointer;
}

.custom_dropdown .dropdown_head span {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.02px;
    color: #BE2C2C;
}

.custom_dropdown .dropdown_body {
    width: 100%;
    position: absolute;
    top: 32px;
    left: 0;
    background-color: white;
    box-shadow: 0px 2px 24px 0px #0000001A;
    border-radius: 7px;
    z-index: 10;
    padding: 10px 0;
}

.custom_dropdown .dropdown_head img {
    transition: transform 0.3s ease;
}

.custom_dropdown .dropdown_body label {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding-left: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
}

.custom_dropdown .dropdown_body label span {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.15px;
    color: #3D3C3C;
}

.custom_dropdown .dropdown_body label input[type="radio"] {
    width: 15px;
    height: 15px;
}

.page_banner h2 {
    font-size: 36px;
}

.favourite_foods {
    margin-top: 21px;
}

.orders_row {
    width: 100%;
    padding: 32px 41px;
    background-color: white;
    border-radius: 7px;
    margin-top: 20px;
}

.order_heading {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
}

.download-link {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
    color: var(--red-deep);
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
    text-decoration-style: solid;
}

.order_details_heading {
    display: flex;
    align-items: center;
    gap: 40px;
}

.order_number {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: var(--red-deep);
}

.download-link img {
    height: 18px;
    width: 14px;
}

.download-link img {
    text-decoration: none;
}

.order_heading span {
    font-weight: 400;
    font-size: 14px;
    color: #2E2E2E;
}

.product_item_selected {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    margin-top: 34px;
    display: flex;
    align-items: flex-start;
}

.product_item_selected>img {
    height: 76px;
    width: 76px;
}

.product_item_desc {
    font-family: var(--font-inter);
    margin-left: 14px;
    margin-right: 52px;
}

.product_item_desc h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #2E2E2E;
    margin-bottom: 12px;
}

.product_item_desc p {
    font-weight: 400;
    font-size: 13.3px;
    line-height: 100%;
    color: #919191;
    margin-bottom: 5px;
}

.product_item_desc h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #2E2E2E;
}

.product_item_desc h3 span {
    color: var(--red-deep);
    margin-top: 12px;
}

.product_item_counts {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product_item_counts button {
    height: 22px;
    width: 22px;
    border-radius: 5.7px;
    outline: none;
    border: none;
    cursor: pointer;
}

.delivery_actions_wrapper {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-left: 50px;
    gap: 17px;
}

.delivery_actions_wrapper div:nth-of-type(2) h2 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #666666;
    margin-bottom: 4px;
}

.delivery_actions_wrapper div:nth-of-type(2) p {
    color: #666666;
    font-weight: 400;
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 100%;
}

.product_item_counts span {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 13.3px;
    line-height: 100%;
    color: #3D3C3C;
}

.product_item_counts .btn-minus {
    background-color: #BE2C2C;
    display: flex;
    align-items: center;
    justify-content: center;

}

.items_selected_p_w {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex: 1;
    gap: 50px;
    flex-wrap: wrap;
}

.orders_actions_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.favourite_foods {
    padding-bottom: 50px;
}

.favourite_foods .action_buttons_wrapper {
    width: 300px;
    display: flex;
    gap: 30px;
}

.favourite_foods .action_buttons_wrapper button {
    width: 134px;
    border: none;
    outline: none;
    border-radius: 7px;
    font-family: var(--font-mulish);
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
    padding: 10px 25px;
}

.favourite_foods .action_buttons_wrapper .cancel-btn {
    background-color: white;
    border: 1px solid var(--red-deep);
    color: var(--red-deep);
}

.favourite_foods .action_buttons_wrapper .contine-btn {
    background-color: var(--red-deep);
    color: white;
}

.product_modal {
    max-width: 1070px;
    width: 100%;
    background-color: white;
    position: relative;
    top: 16%;
    border-radius: 10px;
    z-index: 50;
    padding: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.modal_body {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.product_data_wrapper {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 23px;
    justify-content: space-between;
}

.product_data_wrapper>div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.accordian_wrapper {
    width: 100%;
}

.accordian_head {
    width: 100%;
    background-color: #EDEDED;
    padding: 12px 15px;
    font-family: var(--font-poppins);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordian_head span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
}

.accordian_head .accordian_badge {
    background-color: #BE2C2C;
    border-radius: 49px;
    padding: 5px 6px;
    font-weight: 500;
    font-size: 9px;
    line-height: 100%;
    color: white;
    margin-left: 10px;
}

.accordian_body {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordian_body.open {
    max-height: 500px;
}

.accordian_head img {
    transition: transform 0.3s ease;
}

.accordian_head>div {
    display: flex;
    align-items: center;
}

.accordian_head img.rotate {
    transform: rotate(180deg);
}

.accordian_radio {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 7px;
    cursor: pointer;
    background-color: white;
    border-bottom: 1px solid #EDEDED;
}

.accordian_radio div:nth-of-type(1) {
    display: flex;
    align-items: center;
}

.price_span {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    color: #2E2E2E;
}

.price_span span {
    color: var(--red-deep);
}

.accordian_radio>div span {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #2E2E2E;
    margin-left: 20px;
}

input[type="radio"] {
    appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #8B8B8B;
}

input[type="radio"]:checked {
    border: 1px solid #BE2C2C;
    background-color: #BE2C2C;
}

.accordian_total {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.accordian_total span:nth-of-type(1) {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #333333;
}

.accordian_total span:nth-of-type(2) {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #333333;
}

.accordian_total span:nth-of-type(2):first-letter {
    color: var(--red-deep);
}

.place_order_btn_ac {
    width: 100%;
    height: 52px;
    background-color: #BE2C2C;
    gap: 10px;
    border-radius: 7px;
    padding: 16px;
    color: var(--white);
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    border: none;
    margin-top: 30px;
}

.product_preview {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product_image_wrapper {
    height: 420px;
    width: 100%;
}

.product_image_wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 15px;

}

.product_preview h2 {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #2E2E2E;
    margin-top: 7px;
    margin-bottom: 11px;
}

.product_preview h2 span {
    font-size: 15px;
    color: #A8A8A8;
}

.product_preview_price {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_preview_price div:nth-of-type(1) {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p_span {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #2E2E2E;
}

.p_span span {
    color: var(--red-deep);
}

.off_price {
    color: #888888;
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
}

.off_price span {
    text-decoration: line-through;
}

.item_counter_wrapper {
    width: 89px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E5E5E5;
    border-radius: 7px;
}

.item_counter_wrapper button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item_counter_wrapper .btn-minus {
    background-color: var(--red-deep);
}

.item_counter_wrapper span {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 17.37px;
    line-height: 100%;
    color: #3D3C3C;
}

.item_counter_wrapper .btn-plus {
    background-color: #F3F0F0;
}

.off_badge_m {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 22px;
    color: white;
    background: #EB5757;
    padding: 3px 24px;
    width: 138px;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    position: absolute;
    left: 0;
    top: 70px;
}

.status_badge {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
    gap: 5px;
}

.status_badge.processing {
    background-color: #EA6A12;
}

.status_badge.delivering {
    background-color: var(--red-deep);
}

.status_badge.cancelled {
    background-color: #787878;
}

.status_badge.success {
    background-color: #2DB224;
}

.status_badge span {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 14.14px;
    line-height: 160%;
    color: white;
}

.status_badge img {
    height: 20px;
    width: 25px;
}

.message-box {
    position: fixed;
    top: 90vh;
    left: 50%;
    transform: translateX(-40%);
    max-width: 600px;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    box-shadow: 0px 0px 14px 0px #00000080;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    display: none;
}

.message-box a {
    color: #FFFFFF;
}


.message-box>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-box.success {
    background-color: #2DB224;
    color: white;
}

@media only screen and (max-width : 1440px) {
    .product-row {
        justify-content: initial;
    }
}

@media only screen and (max-width : 1363px) {
    .product-wrapper {
        max-width: 23%;
    }
}

@media only screen and (max-width : 1100px) {
    .product_modal {
        max-width: 800px;
    }

    .product_image_wrapper {
        height: 270px;
    }
}

@media only screen and (max-width : 1148px) {
    .delivery_actions_wrapper {
        margin-left: 0px;
    }
}

@media only screen and (max-width : 1141px) {
    .product-wrapper {
        max-width: 31%;
    }

    .product_item_desc {
        margin-right: 27px;
    }
}

@media only screen and (max-width:850px) {

    .product-wrapper {
        max-width: 48%;
    }

    .hamburger .logo {
        display: none;
    }

    .search_bar_wrapper {
        display: none;
    }

    .logo-sm {
        display: block;
    }

    .hamburger {
        width: fit-content;
    }

    .quick_action.search {
        display: grid;
    }

    .side_nav {
        left: -120px;
    }

    .side_nav.hovered {
        left: 0px;
    }

    .main-content {
        margin-left: 0px;
        padding: 0px;
    }

    .products_feeds_wrapper {
        padding: 30px;
    }

    .tabs_header.fixed {
        left: 0px;
        width: 100%;
    }

    .banner-container {
        border-radius: 0px;
        padding-top: 33px;
        padding-left: 33px;
        padding-right: 33px;
    }

    .page_banner {
        border-radius: 0px;
    }

    .banner-container .content h1 {
        line-height: 147%;
        font-size: 30px;
    }
}

@media only screen and (max-width : 768px) {
    .order_number {
        font-size: 14px;
    }

    .product_image_wrapper {
        height: 350px;
    }

    .product_modal {
        top: 100%;
        height: 85%;
        border-radius: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        transition: all 0.5s ease-in-out;
    }
    .items_selected_p_w {
        gap: 30px;
    }


    .modal_body {
        flex-direction: column;
        overflow: auto;
        height: 100%;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 10px;
    }

    .modal_overlay.active .product_modal {
        top: 15%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .modal_close {
        display: block;
    }

    .address_details_section {
        background-repeat: repeat;
    }

    .sidebar {
        width: 100%;
        right: 0px;
        top: 100%;
    }

    .sidebar.active {
        top: 0px;
    }

    .product_data_wrapper {
        max-width: 100%;
    }

}


@media only screen and (max-width : 549px) {
    .product_image_wrapper {
        height: 250px;
    }

    .banner-container {
        background-image: url('/assets/images/banner-mobile.png');
    }

    .product-row {
        row-gap: 20px;
    }

    .order_details_heading {
        flex-wrap: wrap;
        gap: 15px;
    }

    .banner-container .content h1 {
        margin-bottom: 12px;
    }

    .search_bar_container {
        max-width: 300px;
    }

    .banner-container {
        height: 250px;
    }

    .product-wrapper {
        max-width: 47%;
    }

    .product-wrapper .product-image-wrapper {
        height: 132px;
        overflow: hidden;
        border-radius: 9px;
    }

    .discount-badge {
        font-size: 12px;
    }

    .product-image-wrapper .availability-badge {
        font-size: 10px;
    }

    .desc-col h5 {
        font-size: 14px;
        line-height: 19px;
    }

    .desc-col img,
    .h-icon {
        height: 20px;
    }

    .desc-col h6 {
        font-size: 16px;
    }

    .desc-col h6 span:first-child {
        font-size: 16px;
    }

    .desc-col h6 span {
        font-size: 9px;
    }

    .product-row {
        justify-content: space-between;
    }

    .product-wrapper .product-image-wrapper img {
        object-fit: cover;
    }

    .section-heading {
        font-size: 18px;
    }

    .timer span:first-child,
    .timer span:last-child {
        font-size: 13px;
    }

    .tabs_header a {
        padding: 6px 9px;
        font-size: 16px;
    }

    .sidebar_steps_wrapper .step span {
        font-size: 13px;
    }

    .sidebar_steps_wrapper .step div {
        font-size: 11px;
        width: 23px;
        height: 23px;
    }


}

@media only screen and (max-width : 1230px) {
    .orders_actions_wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
}

@media only screen and (max-width : 400px) {
    .c_product_wrapper {
        width: 141px;
    }
    .section-heading {
        font-size: 14px;
    }
}

@media only screen and (max-width : 376px) {
    .product-wrapper {
        max-width: 100%;
    }
}