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: 116px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root .main_content {
    border-bottom: 2px solid transparent;
}

.toolbar_root #main_logo {
    width: 200px;
    height: 60px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/fame_logo@4x.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;
    transition: 0.4s ease;
}

.menu_item span {
    color: var(--colorAccent);
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 2px;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
}

.menu_item span.highlight {
    background: var(--colorAccent);
    border-radius: 16px;
    color: white;
    margin: 0 8px;
}

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

.menu_item:hover > span {
    color: white;
}

.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: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    font-family: 'Poppins', 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: 1300px;
}

.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;
}

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

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

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

.accent_button.light {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
}

.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: var(--colorAccent);
    font-size: 35px;
    padding: 8px 8px 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
    margin: 4px 0;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.page_heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    height: 15px;
    background-size: contain;
    background-position: center;
    width: 100%;
    background-image: url("../images/heading_border@3x.png");
}

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

.news_update_item_wrapper {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--colorAccent);
}

.news_update_item_wrapper .title {
    font-weight: bold;
}

.news_update_item_wrapper .date {
    margin-top: 12px;
    color: #d2691e;
    font-size: 14px;
}

.news_update_item_wrapper img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;

}


.section_wrapper {
    padding: 40px 0;
}

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

.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;
}

.vision_mission_section {
    background-image: url("../images/vision_bg@3x-100.jpg");
    background-size: cover;
    border-top: 12px solid var(--colorAccent);
    border-bottom: 3px solid var(--colorAccent);
}

.vision_mission_wrapper {
    padding: 12px;
    align-self: center;
}

.vision_mission_wrapper img {
    width: 90px;
    height: 90px;
}

.vision_mission_wrapper span {
    margin: 12px 0 8px;
    font-size: 28px;
    font-weight: bold;
}

.vision_mission_wrapper p {
    font-size: 16px;
    line-height: 1.5;
}

.news_update_detail_wrapper {
    padding: 0 12px;
}

.image_container_wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.image_container_wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.image_container_wrapper span {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--colorAccent);
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
}

footer {
    background-image: url("../images/footer_bg@3x-100.jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.footer_wrapper {
    padding: 40px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer_logo {
    width: 60%;
    max-height: 80px;
    min-width: 100px;
}

.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: var(--colorAccent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.footer_link {
    color: var(--colorAccent);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    margin: 8px;
}

.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: 600px;
    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: 24px;
}

.product_detail_container {
    border-radius: 6px;
    margin: 8px;
    padding: 12px;
    overflow: hidden;
    max-width: 400px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

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

.selling_price {
    font-weight: bold;
    color: var(--colorAccent);
    font-size: 24px;
}

.market_price {
    font-weight: bold;
    color: #bababa;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 12px;
    align-self: center;
}

.offering_item_wrapper img {
    width: 70px;
    height: 70px;
    align-self: center;
    margin-right: 12px;
}

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

.offering_item_wrapper b {
    font-size: 16px;
    font-weight: normal;
    color: #212121;
}

.product_detail_wrapper {
    border-radius: 8px;
    background: #f0f0f0;
    margin-bottom: 16px;
    padding: 20px;
}

.product_detail_container .image_container_wrapper {
    height: 300px;
    position: relative;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    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;
    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;
}

.product_detail_container:hover {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.product_detail_container span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin-top: 16px;
    color: white;
    background: var(--colorAccent);
    border-radius: 24px;
    padding: 8px 16px;
    font-weight: 500;
}

.product_detail_container p {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 12px;
    text-align: center;
}

.product_detail_container .heading {
    font-weight: 500;
    font-size: 16px;
    padding: 16px 4px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--colorAccent);
}

.product_detail_container .accent_button {
    margin-top: 12px;
}

#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: var(--colorAccent);
    border-radius: 12px;
}


.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;
}


.about_us_section_container {
    max-width: 800px;
    text-align: center;
}

.about_us_section_container .page_heading {
    font-size: 30px;
    font-weight: 700;
}

.about_us_section_container .content_page_sub_heading_content {
    color: #727272;
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 4px;
}

.board_of_director_table {
    margin: 20px 10px;
}

.board_of_director_table th {
    text-align: start;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 2px dotted var(--colorAccent);
    padding: 12px;
    font-family: "Poppins", sans-serif;
}

.board_of_director_table td {
    text-align: start;
    font-size: 16px;
    border-bottom: 2px dotted var(--colorAccent);
    padding: 4px 12px;
    font-family: "Poppins", sans-serif;
}

.branch_wrapper {
    padding: 12px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.branch_wrapper img {
    width: 30%;
    height: 100px;
    background: #f6f6f6;
    object-fit: cover;
    border-radius: 8px;
}

.branch_wrapper .name {
    font-weight: bold;
    font-size: 16px;
    padding: 4px 12px;
}

.branch_wrapper .address {
    font-size: 14px;
    padding: 4px 12px;
}

.branch_wrapper a {
    color: #d2691e;
    font-size: 14px;
    padding: 4px 12px;
}


@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;
    }

    .toolbar_root #main_logo {
        height: 46px;
        width: 160px;
        margin: 0 4px;
        transition: 0.4s;
        flex: 1 1 auto;
        object-fit: contain;
    }

    .page_heading {
        font-size: 26px;
    }

    .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);
    }


    .category_item_wrapper {
        width: calc(100% - 8px);
    }

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


    .brand_wrapper {
        width: calc((100% / 2) - 10px);
        margin: 5px;
        padding: 6px;
    }

    .founder_info_container {
        width: calc((100% / 2) - 16px);
        margin: 8px;
    }


    .contact_page_heading {
        align-self: center;
    }


}

