html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 100px;
    background-color: white;
}

.top_header_bar {
    background: var(--colorAccent);
    padding: 6px;
}

.top_header_bar span {
    color: white;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    transition: 0.4s;
    border-bottom: 1px solid var(--divider);
}

.toolbar_root #main_logo {
    width: 140px;
    height: 60px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/happy_hour_store_logo.png") no-repeat center;
    background-size: contain;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    margin: 0 4px;
    transition: 0.4s ease;
    position: relative;
}

.menu_item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 1px;
    width: 0;
    background: var(--colorAccent);
    transition: 0.4s ease;
}

.menu_item:hover:after {
    width: 100%;
}

.menu_item span {
    color: #212121;
    padding: 8px 16px;
    font-size: 16px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 2px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
}

.menu_item:hover > span {
    color: var(--colorAccent);
    font-weight: 500;
}

.menu_item:hover span.highlight {
    background-color: rgba(0, 0, 0, 0.1);
}


.toolbar_dropdown_container {
    /*position: relative;*/
}

.toolbar_dropdown_content {
    position: absolute;
    top: 100%;
    right: 0;
    /*border-bottom-left-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
    display: none !important;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    max-height: 500px;
    background-size: 400% 400%;
    overflow-y: auto;

}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex !important;
}

.toolbar_dropdown_content .menu_item {
    min-height: 40px;
    padding: 8px 16px;
    color: #212121;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 12px 16px 12px 24px;
    font-size: 16px;
    transition: 0.4s;
    font-family: 'Montserrat', sans-serif;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

.main_content {
    width: 100%;
    padding: 0 12px;
    max-width: 1500px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    left: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: white;
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.4);
}

.header_image {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: calc(100vw * 0.4);
    object-fit: cover;
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: inherit;
    overflow: hidden;
}

.toolbar_dropdown_content_expandable {
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: 100%;
    height: 0;
    overflow-y: hidden;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    max-height: 500px;
    pointer-events: none;
}

.toolbar_dropdown_content_expandable.expand {
    height: auto;
    overflow-y: auto;
    pointer-events: all;
    padding: 8px 0;
}


.search_bar {
    padding: 20px;
    margin: 4px 8px;
    width: calc(100% - 16px);
    align-self: center;
}

.search_bar form {
    align-self: center;
    max-width: 700px;
    padding: 4px 8px;
}

.search_bar i {
    color: var(--colorAccent);
    align-self: center;
}

.search_bar input {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    margin-left: 16px;
    outline: none;
    padding: 4px;
    text-align: center;
    border: none;
    width: 100%;
    color: #212121;
    background: transparent;
    border-bottom: 1px solid var(--divider);
    transition: 0.4s ease;
}

.search_bar input:hover, .search_bar input:focus {
    border-bottom: 1px solid var(--colorAccent);
}

.search_bar button {
    margin: 0 8px;
    border-radius: 20px;
    background: #3d3d3d;
    border: none;
    outline: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
}

.accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    transform: translateY(0);
}

.accent_button:hover {
    transform: translateY(-4px);
}

.accent_button.white {
    background-color: white;
    color: #212121;
}

.accent_button.dark {
    background-color: #212121;
}

.bordered_button {
    background: transparent;
    color: var(--colorAccent);
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--colorAccent);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    outline: none;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.bordered_button:hover {
    background: var(--colorAccent);
    border: 2px solid var(--colorAccent);
    color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.bordered_button.white {
    border: 2px solid white;
    color: white;
}

.page_heading {
    color: #212121;
    font-size: 32px;
    padding: 8px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    margin: 8px 0;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    position: relative;
}


.page_sub_heading {
    color: #212121;
    font-size: 14px;
    text-align: center;
    margin: 8px 0 -8px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.section_wrapper {
    padding: 40px 0;
}

.section_wrapper.dark {
    background: rgba(0, 0, 0, 0.7);
}

.about_content_wrapper {
    margin: 12px;
    padding: 16px;
    align-self: center;
}

.assembly_video_wrapper {
    min-height: 500px;
    background: #040404;
    border-radius: 12px;
    overflow: hidden;
}

.assembly_video_wrapper iframe {
    width: 100%;
    border: none;
    height: 100%;
}

.testimonial_wrapper {
    padding: 20px 24px;
    background: white;
    margin: 4px;
    border-left: 3px solid var(--colorAccent);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.testimonial_wrapper .client_image {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
}


.testimonial_wrapper .client_name {
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.testimonial_wrapper p {
    font-size: 15px;
    margin: 12px 0 0;
    font-family: "Montserrat", sans-serif;
}

.service_item_wrapper {
    padding: 24px 16px;
    border: 1px solid var(--divider);
}

.service_item_wrapper i {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--colorAccent);
}

.service_item_wrapper span {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.service_item_wrapper p {
    font-size: 16px;
    text-align: center;
}

.service_item_wrapper .accent_button {
    align-self: flex-start;
}

.enquiry_container {
    border: 1px solid white;
    border-radius: 8px;
    padding: 8px;
    max-width: 500px;
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}

.enquiry_container .page_heading, .contact_details_container .page_heading {
    color: white;
    font-size: 24px;
}

.form_wrapper {
    width: calc(100% - 20px);
    border-radius: 16px;
}

.form_wrapper .title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 14px;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 6px 12px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    background: white;
    font-family: "Poppins", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.form_wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.contact_details_container {
    width: 90%;
    height: auto;
    max-width: 500px;
    color: white;
    padding: 26px;
}

.contact_details_container p {
    margin-left: 20px;
}


.footer_wrapper {
    padding: 40px 0 8px;
    background-color: white;
    border-top: 1px solid var(--divider);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

.footer_logo {
    width: 80%;
    max-width: 120px;
}

.footer_container {
    width: calc((100% / 3) - 16px);
    padding: 20px;
    margin: 8px;
}

.footer_container p {
    font-size: 14px;
    color: #212121;
}

.footer_social_link {
    font-weight: 500;
    font-size: 15px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--colorAccent);
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid var(--colorAccent);
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    color: white;
    border: 2px solid var(--colorAccent);
}

.footer_heading {
    color: #212121;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    margin: 8px;
    transition: 0.4s ease;
}

.footer_link:hover {
    color: var(--colorAccent);
}

.footer_icon {
    font-size: 18px;
    margin-right: 16px;
}

.footer_link i {
    color: var(--colorAccent);
}

.footer_input_field {
    background-color: #fde8e8;
    padding: 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.footer_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    outline: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

.footer_accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.full_image {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    display: none;
}

.full_image.active {
    display: block;
}


.image_thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    object-fit: cover;
    margin: 2px;
    border: 2px solid #f1f1f1;
}

.image_thumb.active {
    border: 2px solid var(--colorAccent);
}

.product_detail_content_wrapper {
    padding: 0 16px;
}

.product_id_wrapper {
    color: #525252;
    margin: -8px 8px 8px;
    font-size: 14px;
    font-weight: 500;
}

.selling_price {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: var(--colorAccent);
    font-size: 24px;
}

.market_price {
    font-weight: 500;
    color: #777777;
    font-size: 16px;
    text-decoration: line-through;
    margin-left: 12px;
    align-self: center;
}

.product_list_wrapper .product_detail_container {
    width: calc((100% / 3) - 16px);
    max-width: 400px;
}

.product_detail_container {
    margin: 12px 8px 8px;
    background: white;
    box-shadow: 0 0 0 transparent;
    transition: 0.4s ease;
    transform: translateY(0);
}

.product_detail_container .product_name {
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product_detail_container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}


.product_detail_container .selling_price {
    font-size: 16px !important;
}

.image_container_wrapper {
    height: 300px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image_container_wrapper #image_1,
.image_container_wrapper #image_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s ease;
}

.image_container_wrapper #image_1 {
    opacity: 1;
}

.image_container_wrapper #image_2 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_1 {
    opacity: 0;
}

.product_detail_container:hover .image_container_wrapper #image_2 {
    opacity: 1;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.dialog-container .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 24px;
    right: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: var(--colorAccent);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.contact_header_container {
    position: relative;
    width: 100%;
    background: #212121;
}

.contact_header_container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 750px;
    padding: 16px;
}

.contact_header_container img {
    width: 100%;
    object-fit: cover;
    filter: opacity(0.5);
}

.contact_header_container h2 {
    font-size: 36px;
    margin: 4px;
}

.contact_header_container p {
    margin: 4px;
    line-height: 1.5;
    font-size: 18px;
}

.contact_us_header_container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact_us_header_container .page_heading {
    z-index: 1;
    font-weight: bold;
    font-size: 42px;
}

.contact_detail_container {
    padding: 16px;
}

.contact_page_sub_heading {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    padding-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.content_page_sub_heading_content {
    color: #212121;
    font-size: 14px;
    margin: 0 16px;
    padding-bottom: 8px;
    font-family: "Poppins", sans-serif;

}

.contact_info_icon {
    font-size: 18px;
    color: var(--colorAccent2);
}


.social_media_icon {
    font-size: 18px;
    line-height: 1;
    width: 40px;
    text-align: center;
    color: white;
    border-radius: 50%;
    margin: 8px 16px 8px 0;
    padding: 11px 12px;
    background-color: var(--colorAccent);
}

.social_media_icon:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    transition: 0.4s;
}

.contact_input_field {
    background-color: #f8f8f8;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

.contact_input_field .multi-select-button {
    background-color: #f8f8f8;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dad9d9;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}


.contact_page_enquire_container {
    width: 100%;
    padding: 16px;
    background: white;
    border-left: 3px solid var(--colorAccent);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}


.contact_page_accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 8px 30px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: start;
    border-radius: 6px;
    outline: none;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.4s;
    align-self: start;
}

.contact_page_accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.category_item_wrapper {
    cursor: pointer;
    margin: 8px;
    width: calc((100% / 4) - 16px);
    transition: 0.4s ease;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 0 transparent;
}

.category_item_wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transform: scale(1);
    transition: 1s ease;
    z-index: 1;
}

.category_item_wrapper span {
    text-align: center;
    padding: 12px 6px;
    background: white;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.category_item_wrapper:hover img {
    transform: scale(1.1);
}

.category_item_wrapper:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.offering_item_wrapper {
    padding: 12px;
}

.offering_item_wrapper i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: white;
    text-align: center;
    padding: calc((70px - 28px) / 2) 16px;
    font-size: 28px;
    line-height: 1;;
    align-self: center;
    color: var(--colorAccent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 16px;
}

.offering_item_wrapper span {
    font-weight: 500;
    align-self: center;
    line-height: 1.5;
    font-size: 15px;
    color: #313131;
}

.offering_item_wrapper b {
    font-size: 18px;
    font-weight: normal;
    color: var(--colorAccent);
}


.side_info_section {
    margin: 12px;
    width: 22%;
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guarantee_item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--divider);
    align-items: center;
}

.guarantee_item span {
    margin-left: 12px;
    font-size: 14px;
}

.guarantee_item i {
    color: var(--colorAccent);
    font-size: 14px;
}

.side_info_section .price_range_section {
    padding: 12px;
    margin: 6px;
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.side_info_section .title_heading {
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    color: var(--colorAccent);
    margin-bottom: 12px;
}

.price_range_section i {
    font-size: 12px;
    width: 20px;
    height: 20px;
    margin: 2px;
    color: white;
    background-color: var(--colorAccent);
    border-radius: 50%;
    text-align: center;
    padding: 4px 0;
    line-height: 1;
}

.side_panel_client_logo_wrapper {
    padding: 4px;
}

.side_panel_client_logo_wrapper img {
    max-width: calc(50% - 8px);
    padding: 12px;
    margin: 4px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 80px;
}

.form_heading {
    padding: 14px 4px 4px;
    font-weight: 500;
    font-size: 16px;
    color: var(--colorAccent);
}

.small_link {
    padding: 4px 0;
    margin: 2px 8px;
    font-size: 14px;
    transition: 0.4s ease;
    text-transform: capitalize;
    border-bottom: 1px solid transparent;
}

.small_link:hover {
    color: var(--colorAccent);
    border-bottom: 1px solid var(--colorAccent);
}

.product_detail_wrapper .page_heading {
    margin: 0 !important;
}

.product_detail_wrapper p,
.product_detail_wrapper span {
    font-family: "Poppins", sans-serif !important;
}

.product_detail_wrapper ul,
.product_detail_wrapper ol {
    padding-left: 24px;
}

.product_detail_wrapper ul p,
.product_detail_wrapper ol p {
    margin: 0 0 4px;
}

@media only screen and (max-width: 780px) {

    .product_detail_content_wrapper {
        padding: 16px 0;
    }

    .selling_price {
        font-size: 20px;
    }

    .market_price {
        font-size: 16px;
    }

    .logo_container {
        display: flex;
        flex: 1 1 auto;
    }

    .page_heading {
        font-size: 32px;
    }

    .section_wrapper {
        padding: 30px 0;
    }


    .page_heading.left_aligned {
        text-align: center;
    }

    .footer_container {
        width: calc(100% - 6px);
    }


    .header_container {
        height: calc(100vw * 1.4);
    }

    .header_image {
        height: calc(100vw * 1.4);
    }

    .slide img {
        height: calc(100vw * 1.4);
    }

    .product_item_wrapper {
        width: calc(100% - 12px);
    }

    .base_margin {
        margin-top: 100px;
    }

    .category_item_wrapper {
        width: calc((100% / 1) - 16px);
    }

    .product_list_wrapper .product_detail_container {
        width: calc((100% / 2) - 16px);
    }

    .image_container_wrapper {
        height: 250px;
    }


    .side_info_section {
        margin: 12px;
        width: calc(100% - 24px);
        max-width: none;
    }

}

