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 {
    padding-top: 130px;
    min-height: 700px;
    background-color: white;
}

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

.toolbar_primary_bar {
    background: var(--colorAccent2);
    padding: 8px 12px;
    position: relative;
}

.gold_price_bar {
    background: var(--colorAccentLight);
    border-radius: 12px;
    padding: 4px 8px;
}

.gold_price_bar img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
    object-position: center;
}

.gold_price_bar span {
    font-size: 12px;
    font-weight: bold;
    color: var(--colorAccent2);
    font-family: "AfterGlow", sans-serif;
}

.gold_price_bar b {
    color: #212121;
}

.header_tag_line {
    color: white;
    text-align: center;
    font-size: 14px;
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.toolbar_logo {
    width: 100%;
    max-width: 120px;
    padding: 4px 16px;
    height: auto
}

.menu_item {
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    transition: 0.4s ease;
    color: #212121;
    padding: 8px 16px;
}

.menu_item img {
    height: 16px;
    margin-right: 4px;
    align-self: center;
    object-fit: contain;
    object-position: center;
}

.menu_item > span {
    color: inherit;
    margin: 0 8px;
    font-size: 14px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: normal;
    font-family: 'AfterGlow', sans-serif;
    transition: 0.4s ease;
    align-self: center;
    line-height: 1;
}

.menu_item > i {
    padding: 8px;
    margin: 0;
    font-size: 14px;
    transition: 0.4s ease;
}

.menu_item:hover, .toolbar_dropdown_container:hover > .menu_item {
    background-color: var(--colorAccent);
    color: white;
}

.menu_item:hover img, .toolbar_dropdown_container:hover > .menu_item img {
    filter: brightness(0) invert(1);
}

.toolbar_menu_icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.toolbar_menu_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

.toolbar_dropdown_content {
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: 100%;
    /*opacity: 0;*/
    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_container:hover .toolbar_dropdown_content {
    height: auto;
    overflow-y: auto;
    /*opacity: 1;*/
    pointer-events: all;
    padding: 8px 0;
    /*left: 0;*/
    /*right: 0;*/
    /*top: 100%;*/
}


.toolbar_dropdown_content.small.left {
    right: auto;
    left: 0;
}

.toolbar_dropdown_content.small {
    position: absolute;
    padding: 0;
    width: 350px;
    right: 0;
    left: auto;
    top: calc(100% - 8px);
    height: 0;
    overflow-y: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    max-height: 500px;
    pointer-events: none;
}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    border: 1px solid var(--divider);
}

.toolbar_dropdown_content.small a {
    border: none;
    padding: 6px 12px;
    height: auto;
    align-content: center;
    border-bottom: 1px solid var(--divider) !important;
}

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

.toolbar_dropdown_content_expandable_bg {
    position: fixed;
    padding: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9990;
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
    pointer-events: none;
}

.toolbar_dropdown_content_expandable_bg.expand {
    bottom: 0;
    pointer-events: all;
}

.toolbar_dropdown_content a {
    min-height: 40px;
    border-bottom: none !important;
    border-left: 3px solid white;
    padding: 0;
    transition: 0.4s ease;
}

.toolbar_dropdown_content .heading {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 4px;
    margin: 0 16px;
    color: white;
    text-transform: uppercase;
}

.toolbar_dropdown_content a:hover {
    border-color: #212121;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 15px;
    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;
}

.search_bar_wrapper {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    background: rgba(255, 255, 255, 0.95);
}

.search_bar_wrapper.active {
    display: flex;
}

.search_bar_wrapper .close_button {
    align-self: flex-end;
    padding: 24px;
    font-size: 26px;
}

.search_bar_wrapper form i {
    padding: 16px;
    font-size: 16px;
}

.search_bar_wrapper form input {
    padding: 16px;
    border: none;
    outline: none;
    font-size: 16px;
    min-width: 50%;
    margin: 0 8px;
    border-bottom: 1px solid #212121;
}

.slide_image {
    object-fit: cover;
    border-radius: 24px;
}


.main_content {
    width: 100%;
    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: 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;
}

.product_container {
    background-color: white;
    transition: 0.4s;
    cursor: pointer;
    margin: 8px;
    overflow: hidden;
    display: flex;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.products_list_wrapper .product_container {
    width: calc((100% / 4) - 16px);
}

.product_container .image_container {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    height: 350px;
}

.image_container .highlight {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: white;
    font-size: 12px;
    font-weight: 500;
    color: var(--colorAccent);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.image_container .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: 0.4s ease;
}

.product_container .image.one {
    opacity: 1;
}

.product_container .image.two {
    opacity: 0;
}

.product_container:hover {
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.08);
}

.product_container:hover .image.one {
    opacity: 0;
}

.product_container:hover .image.two {
    opacity: 1;
}

.product_item_detail_container {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 8px 12px;
}

.product_container .category_name {
    text-align: center;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: capitalize;
    white-space: nowrap;
    color: var(--colorAccent);
    font-family: 'Poppins', sans-serif;
}

.product_container .product_name {
    /*text-align: center;*/
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: capitalize;
    white-space: nowrap;
    color: var(--colorPrimary);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.product_container .bs_price {
    font-size: 16px;
    /*text-align: center;*/
    font-weight: bold;
    color: var(--colorAccent2);
    font-family: 'Poppins', sans-serif;
    margin: 5px 0;
}

.product_container .mrp_price {
    font-size: 14px;
    color: #828282;
    text-decoration: line-through;
    font-family: 'Poppins', sans-serif;
    margin: 5px 10px;
}

.product_container .discount {
    font-size: 14px;
    color: var(--greenColor);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin: 5px 10px;
}

.section_wrapper {
    width: 100%;
    padding: 24px 0;
}

.section_wrapper.dark {
    background: #f9f2e8
}

.brand_idea_section_wrapper {
    background: rgba(249, 243, 232, 0.8);
    padding: 0;
    position: relative;
}

.brand_idea_image_wrapper {
    min-width: 500px;
}

.product_collection_item img {
    filter: grayscale(1);
    transition: 0.4s ease;
}

.product_collection_item:hover img {
    filter: grayscale(0);
}


.page_heading {
    color: var(--colorAccent);
    font-size: 30px;
    padding: 16px 120px;
    text-align: center;
    font-weight: 400;
    align-self: center;
    text-transform: uppercase;
    margin: 4px 0 12px;
    font-family: "AfterGlow", sans-serif;
    position: relative;
}

.page_sub_heading {
    color: var(--colorAccent);
    font-size: 18px;
    align-self: center;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: "AfterGlow", sans-serif;
}

.page_heading:after, .page_heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    background-image: url("../images/dd_border.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.page_heading:after {
    left: auto;
    right: 0;
}

.page_heading.plain {
    padding: 16px;
}

.page_heading.plain:after, .page_heading.plain:before {
    display: none;
}


.collection_item_wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.collection_item_wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    max-height: 625px;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: 2s ease;
}

.collection_item_wrapper div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 70%;
    opacity: 0;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: 0.4s ease;
}

.collection_item_wrapper span {
    font-size: 28px;
    font-family: "AfterGlow", sans-serif;
    color: white;
    padding: 24px 16px;
    text-align: center;
    transition: 0.4s ease;
}

.collection_item_wrapper:hover div {
    top: 40%;
    opacity: 1;
}


.collection_item_wrapper:hover span {
    font-size: 32px;
}

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

.image_thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    object-fit: cover;
    margin: 2px;
    border: 2px solid var(--divider);
}

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

.full_image {
    width: calc(90%);
    max-width: 550px;
    border-radius: 24px;
    object-fit: contain;
    display: block;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    cursor: zoom-in;
}

.product_detail_container {
    padding: 20px;
    width: 500px;
}

.product_detail_container .divider {
    margin: 16px 0;
    height: 1px;
    background: #f1f1f1;
}

.product_detail_container .offer_detail {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 14px 10px 0;
    background-color: var(--colorAccent);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    align-self: flex-start;
}

.product_detail_container .product_name {
    font-weight: 500;
    color: var(--colorPrimary);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    padding: 4px 8px;
    margin: 8px 0 0;
}

.product_detail_container .product_id {
    color: var(--colorPrimary);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    padding: 0 8px;
    margin: 0 0 8px;
}

.product_id > b {
    color: var(--colorAccent);
}

.product_detail_container .highlight {
    color: #212121;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    align-self: flex-start;
    background: var(--colorAccentLight);
    margin: 8px;
}

.breadcrumb_container a, .breadcrumb_container span {
    font-size: 12px;
    font-weight: 300;
    margin: 0 4px;
    padding: 2px 1px;
    text-transform: uppercase;
}

.product_description {
    padding: 0 8px;
}

.product_description .description_heading {
    font-size: 14px;
    font-weight: bold;
    margin-top: 40px;
    text-transform: uppercase;
    padding-bottom: 3px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--divider);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    color: #2d2d2d;
}

.description_data, .description_data p {
    font-size: 14px;
    margin: 4px 0 6px;
    font-family: 'Poppins', sans-serif;
    color: #111111;
}

.description_data table {
    align-self: center;
    max-width: 800px;
    width: 90% !important;
}

.description_data tr:nth-child(even) {
    background: #f7f7f7;
}

.description_data td, .description_data th {
    padding: 6px 12px;
}

.description_data h2, .description_data h3 {
    font-size: 14px;
}

.product_detail_container .bs_price {
    font-size: 28px;
    line-height: 1.8;
    color: var(--colorAccent2);
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin: 0 8px;
}

.product_detail_container .mrp_price {
    font-size: 16px;
    line-height: 1;
    align-self: center;
    text-decoration: line-through;
    color: var(--divider);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.quantity_modifier {
    border: 1px solid #404040;
    align-self: flex-start;
    padding: 0;
    background-color: #404040;
}

.product_detail_container .quantity_modifier > button {
    background-color: #404040;
    padding: 8px 12px;
    outline: none;
    margin: 0;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    border: none;
}

.product_detail_container .quantity_modifier > input {
    background-color: transparent;
    width: 60px;
    height: 40px;
    outline: none;
    font-weight: bold;
    font-size: 16px;
    color: var(--colorAccent);
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid var(--colorAccent);
}

.product_detail_container .quantity_modifier > button:hover {
    background-color: var(--colorAccent);
    color: white;
}

.product_detail_container .quantity_modifier > input {
    cursor: text;
    border: none;
    background-color: white;
    color: #212121;
    -moz-appearance: textfield;
}

.product_detail_container .features {
    font-size: 14px;
    color: #23779a;
    font-family: 'Poppins', sans-serif;
    margin: 5px 10px;
    font-weight: bold;
}

.features i {
    margin-right: 5px;
    width: 14px;
    line-height: 24px;
}


.footer {
    width: calc(100% - 20px);
    margin: 0 10px;
    min-height: 100px;
    padding: 40px 50px 10px;
    position: relative;
    background-image: url("../images/footer_bg@2x-100.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.footer_element {
    width: 100%;
    padding: 0 0 0 20px;
    justify-content: space-between;
}

.footer_element > .column_alignment {
    padding: 0;
    width: calc(100% / 5);
}

.footer_element .column_alignment {
    margin-bottom: 12px;
}

.footer_heading {
    color: var(--colorAccent2);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 4px 8px;
    text-transform: capitalize;
    align-self: flex-start;
    border-bottom: 2px solid #9c6a61;
    font-family: "AfterGlow", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 14px;
    margin: 8px;
    font-family: "AfterGlow", sans-serif;
    align-self: flex-start;
    transition: 0.4s ease;
}

.footer_logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

footer .features {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    margin: 5px 0;
}

footer .link_button {
    font-size: 14px;
    padding: 0 4px;
    color: #393939;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    transition: 0.4s ease;
}

footer .link_button i {
    color: #212112;
}

footer .link_button:hover {
    text-decoration: none !important;
    color: #212121;
}

.footer_social_icon {
    color: var(--colorAccent2);
    font-size: 16px;
    margin-right: 16px;
}

.fab_whats_app {
    position: fixed;
    background: var(--whatsapp_color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9990;
}

.fab_whats_app i {
    color: white;
    font-size: 28px;
}

.form_heading {
    color: #dbc4a0;
    text-align: start;
    font-size: 28px;
    font-weight: 500;
    padding: 0 8px 16px;
    font-family: 'AfterGlow', sans-serif;
}


form .accent_button.bordered {
    border: 1px solid #dbc4a0;
    color: #dbc4a0;
    font-size: 16px;
}

.bs_form {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    padding: 20px;
    background: white;
    border-radius: 3px;
}

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

.bs_form label {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin: 4px;
}

.bs_form input, .bs_form select, .input_field, .bs_form textarea {
    padding: 12px 20px;
    width: calc(100% - 16px);
    margin: 8px 8px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    outline: none;
    border-radius: 12px;
    border: none;
    transition: all 0.4s;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.bs_form textarea {
    min-height: 100px;
    transition: all 0.4s;
    resize: vertical;
}

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

.error input, .error textarea {
    border: 1px solid var(--error_color);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: -16px 10px 24px;
}

.errorlist > li, .error_text {
    font-size: 12px;
    font-weight: 600;
    padding: 0 12px;
    color: var(--error_color);
}

.white_button_border {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.60);
    font-family: "Poppins", sans-serif;
    padding: 8px 16px;
    text-decoration: none;
    outline: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.60);
    cursor: pointer;
    transition: 0.5s ease;
}

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

.accent_button {
    background-color: var(--colorAccent);
    color: #eee5d4;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    outline: none;
    font-family: "AfterGlow", sans-serif;
    cursor: pointer;
    transition: 0.4s;
    transform: translateY(0);
}

.accent_button:hover {
    background-color: var(--colorAccent);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    transform: translateY(-2px);
}

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

.accent_button.light {
    background: rgba(243, 198, 125, 0.37);
    color: #212121;
    font-weight: 400;
    font-size: 18px;
}

.accent_button.bordered {
    background-color: transparent;
    color: #212121;
    border: 1px solid rgba(243, 198, 125, 0.62);
    font-weight: 400;
    font-size: 18px;
}


.link_button {
    background-color: transparent;
    color: var(--error_color);
    padding: 10px 0 0;
    font-size: 12px;
    border: none;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.link_button:hover {
    text-decoration: underline !important;
    transition: 0.4s;
}

.about_container {
    background: white;
    padding: 8px;
}


.about_container .about_p {
    text-align: left;
}

.about_p p, .about_p, .about_container p {
    line-height: 1.5;
    font-size: 14px;
    color: var(--colorPrimary);
    font-family: 'Lato', sans-serif;
    margin: 20px;
    text-align: left;
}

.about_p b {
    line-height: 2;
}


.about_container.highlight {
    padding: 0;
    margin-top: 30px;
    background-color: #f2f2f2;
}

.about_container.highlight p {
    color: #212121;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.5;
    text-align: start;
    font-family: "Poppins", sans-serif;
}

.about_container.highlight div {
    border-radius: 4px;
    border: 2px solid var(--colorAccent);
    background-color: var(--colorAccent);
}

.about_container.highlight div p {
    color: white;
    font-size: 16px;
}


.about_feature_wrapper {
    padding: 0;
}

.about_feature_wrapper .content {
    max-width: 600px;
    margin: 8px;
}

.about_feature_wrapper .reverse {
    margin-top: -50px;
}

.certificate_slide_image {
    height: 120px;
    padding: 8px;
    width: 120px;
    object-fit: contain;
    background-color: white;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.certificate_slide_image:hover {
    filter: grayscale(0);
}

.certification_container {
    padding: 8px;
}

.certification_container img {
    width: 80px;
    padding: 6px;
    background-color: #eeeeee;
    height: 80px;
}

.certification_container .about_p {
    text-align: left;
    margin: 8px 20px;
}

.social_login_container {
    margin: 40px;
}

.social_login_container .holder {
    margin: 10px 20px;
    font-family: 'Poppins', sans-serif;
    flex: 0 0 auto;
    color: var(--colorAccent);
}

.social_button {
    display: flex;
    color: white;
    padding: 14px 24px;
    border: none;
    text-decoration: none;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    cursor: pointer;
    min-width: 300px;
    align-self: flex-start;
    margin: 10px 20px;
    transition: 0.4s;
}

.social_button > span {
    font-weight: bold;
    flex: 1 1 auto;
    letter-spacing: 1px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.social_button:hover {
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.shipping_detail {
    font-size: 15px;
    margin: 2px 8px;
    font-family: 'Poppins', sans-serif;
}

.question {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: var(--colorAccent);
    align-self: flex-start;
    border-bottom: 1px solid var(--divider);
}

.answer {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--colorPrimaryDark);
    margin-top: 3px;
}

.answer a {
    color: var(--colorAccent);
    text-decoration: underline;

}

.search_bar {
    background-color: white;
    border-radius: 12px;
    padding: 10px 16px;
    margin: 0 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search_bar i {
    color: rgba(0, 0, 0, 0.6);
    align-self: center;
}

.search_bar input {
    font-family: 'Poppins', sans-serif;
    border: none;
    font-size: 14px;
    margin-left: 16px;
    outline: none;
}

.toolbar_category {
    background-color: white;
    width: 100%;
}

.toolbar_category a {
    padding: 8px 24px;
    font-size: 16px;
    margin: 0 4px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease;
}

.toolbar_category a:hover {
    border-bottom: 3px solid var(--logo-green);
}

#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 {
    background-color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    position: fixed;
    top: 70px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 10px);
    max-width: 700px;
    z-index: 9999;
    padding: 12px;
    overflow: auto;
    max-height: calc(100% - 80px);
}

.close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 8px;
    cursor: pointer;
}

.dialog-container .bs_form {
    box-shadow: none;
    margin: 0;
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow: auto;
    padding: 10px;
}


.dialog-container#share_dialog {
    background-color: white;
    padding: 16px;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.dialog-container#share_dialog span {
    font-size: 14px;
    margin: 4px;
    color: #424242;
}

.copy_link_wrapper {
    border: 1px solid #424242;
    padding: 12px 16px;
    white-space: nowrap;
    max-width: 400px;
    overflow: hidden;
    cursor: pointer;
    text-overflow: ellipsis;
}

.social_share_button_wrapper i {
    cursor: pointer;
    color: #424242;
    padding: 8px;
    font-size: 20px;
}

.footer_divider {
    border-top: 1px solid #393939;
    margin: 16px 0;
}

.contact_detail_wrapper {
    margin: 20px 0;
    max-width: 800px;
    width: 100%;
}

.contact_detail_wrapper > .column_alignment {
    padding: 8px 20px;
    width: calc(50% - 11px);
}

.contact_detail_wrapper h3 {
    font-size: 24px;
    margin: 24px 8px 4px;
}

.contact_detail_wrapper h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 8px 8px 4px;
}

.contact_detail_wrapper a {
    font-size: 16px;
    color: #e78124;
    margin: 2px 8px 4px;
    font-family: 'Poppins', sans-serif;
}

.contact_detail_wrapper span {
    font-size: 16px;
    margin: 2px 8px 4px;
    font-family: 'Poppins', sans-serif;
}

.contact_detail_wrapper .border {
    margin: 8px 10px;
    width: 1px;
    background-color: var(--divider);
}

.contact_header_container {
    position: relative;
    width: 100%;
}

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

.contact_header_container img {
    width: 100%;
    object-fit: cover;
}

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

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

.filter_bar_wrapper {
    width: 100%;
    margin: 8px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    position: relative;
}

.filter_bar_wrapper span {
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
}

.filter_bar_wrapper span b {
    color: #4c4c4c;
}

.filter_dropdown .menu_item {
    border: none;
    outline: none;
    padding: 8px;
}

.filter_dropdown {
    position: absolute;
    top: 100%;
    z-index: 12;
    height: 0;
    overflow: hidden;
    background: white;
    transition: 0.4s ease;
    border: 0 solid var(--divider);
    box-shadow: none;
}

.filter_dropdown.active {
    height: auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    /*border: 1px solid var(--divider);*/

}

.filter_option_wrapper {
    width: 100%;
}

.filter_bar_wrapper .menu_item {
    color: #212121;
}

.filter_bar_wrapper .menu_item:hover {
    color: white;
}

.sort_option_wrapper {
    width: 100%;
    max-width: 250px;
    right: 0;
}

.product_feature_wrapper {
    padding: 8px 10px;
}

.product_feature_wrapper span {
    font-size: 14px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

.product_feature_wrapper span b {
    font-weight: normal;
    padding: 8px 10px;
    margin-top: 4px;
    min-width: 100px;
    border: 1px solid var(--colorAccent);
    border-radius: 6px;
}

.container_wrapper {
    margin: 10px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-left: 3px solid var(--colorAccent);
}

.container_wrapper .page_sub_heading {
    margin: 0;
    padding: 8px 16px;
    color: #212121;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid var(--divider);
}

.container_wrapper > .content {
    padding: 16px;
}

.container_wrapper > .content span {
    font-size: 12px;
    margin: 1px 0;
    font-family: 'Poppins', sans-serif;
}

.dialog-container.popup {
    top: 50%;
    left: 50%;
    right: auto;
    max-width: 550px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    bottom: auto;
    transform: translate(-50%, -50%);
}

.popup .input_field, .popup .accent_button {
    margin: 4px !important;
}

.popup .two > * {
    width: calc((100% / 2) - 8px);
}

.celebrity_slide_wrapper {
    margin: 8px;
    width: 350px;
    border-radius: 24px;
    border: 3px solid white;
    overflow: hidden;
}

.celebrity_slide_wrapper img {
    width: 100%;
    object-fit: cover;
}

.marquee_container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee_content_wrapper {

}

.marquee_content {
    flex: 0 0 auto;
}


.store_banner_wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.store_banner_wrapper img {
    width: 100%;
    object-fit: cover;
    transition: 2s ease;
    transform: scale(1);
}

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

.store_info_wrapper {
    max-width: 350px;
}

.store_banner_heading {
    font-size: 36px;
    font-weight: normal;
    margin: 0;
    color: var(--colorAccent);
    line-height: 1.5;
    font-family: "AfterGlow", sans-serif;
}

.store_banner_heading b {
    font-weight: normal;
    font-size: 24px;
    color: #212121;
}

.store_banner_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 300px;
    font-family: "AfterGlow", sans-serif;
}


.know_slide .know_item_wrapper,
.know_slide .owl-item {
    height: 100%;
    min-height: 300px;
}

.know_item_wrapper {
    border-radius: 24px;
    background: linear-gradient(to bottom, white, #fbf1df);
    padding: 20px;
    border: 2px solid var(--colorAccentLight);
    overflow: hidden;
    flex: 1 1 auto;
    transition: 0.4s ease;
    transform: translateY(0);
}

.know_item_wrapper:hover {
    border: 2px solid var(--colorAccent);
    background: linear-gradient(to bottom, #fbf1df, #fbf1df);
    transform: translateY(-2px);
}

.know_item_wrapper img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain;
    margin-right: 16px;
}

.know_item_wrapper span {
    font-size: 24px;
    font-weight: 500;
    color: var(--colorAccent);
}

.brand_item_wrapper {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    max-width: 350px;
    width: calc(100% / 3 - 24px);
    margin: 12px;
    padding: 16px;
}

.brand_item_wrapper img {
    width: 100%;
    object-fit: contain;
    height: 80px;
}

.breadcrumb_container a, .breadcrumb_container span {
    font-size: 12px;
    font-weight: 300;
    margin: 0 4px;
    padding: 2px 1px;
    text-transform: uppercase;
}

.breadcrumb_wrapper {
    padding: 16px 8px;
    align-items: center;
}

.breadcrumb_wrapper a {
    transition: 0.4s ease;
    font-size: 13px;
    color: #5f5f5f;
    font-family: "Poppins", sans-serif;
    border-bottom: 1px solid transparent;
}

.breadcrumb_wrapper span {
    font-size: 13px;
    color: #5f5f5f;
    font-family: "Poppins", sans-serif;
}

.breadcrumb_wrapper i {
    font-size: 12px;
    color: #5f5f5f;
    padding: 0 16px;
}


.breadcrumb_wrapper a:hover {
    color: #212121;
    border-bottom: 1px solid #212121;
}


.thumbnail_container .thumbnail_img {
    width: 120px;
    height: 120px;
    border: 2px solid var(--divider);
    margin: 6px;
    border-radius: 8px;
    opacity: 0.5;
    object-fit: cover;
}

.thumbnail_img.active, .thumbnail_img:hover {
    opacity: 1;
    cursor: pointer;
    border: 2px solid var(--colorPrimary);
}

.why_choose_item_wrapper {
    background: #fffaf3;
    border-radius: 16px;
    padding: 24px 12px;
    flex: 1 1 auto;
    overflow: hidden;
    border: 2px solid var(--colorAccent);
}

.why_choose_item_wrapper img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    align-self: center;
    margin-bottom: 16px;
}

.why_choose_item_wrapper span {
    font-size: 20px;
    font-weight: 500;
    color: #212121;
    text-align: center;
    align-self: center;
    font-family: "AfterGlow", sans-serif;
}


.why_choose_item_wrapper p {
    font-size: 16px;
    max-width: 85%;
    align-self: center;
    font-weight: normal;
    color: var(--colorAccent2);
    text-align: center;
    font-family: "AfterGlow", sans-serif;
}

.blog_item_wrapper {
    padding: 12px;
}

.blog_item_wrapper img {
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: 12px;
}

.blog_item_wrapper span {
    text-align: center;
    padding: 8px;
}

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

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

    .toolbar_category {
        display: none;
    }

    .search_bar {
        display: none;
    }

    .page_heading {
        font-size: 24px;
        padding: 8px 16px;
        margin: 4px 0 8px;
    }

    .page_heading:after,
    .page_heading:before {
        display: none;
    }


    .product_detail_container {
        padding: 8px 12px;
    }

    .footer_element > .column_alignment {
        width: calc(100%);
    }

    .filter_bar_wrapper {
        margin: 0 0;
    }

    .bring_home_section .bring_home_section_item {
        width: calc((100% / 2) - 8px);
    }

    .footer_company_section .column_alignment {
        width: calc(100% / 2);
    }

    .container_wrapper {
        margin: 6px 16px;
    }

    .container_wrapper .page_sub_heading {
        margin: 0 10px 10px;
    }

    .products_list_wrapper .product_container.small {
        width: calc((100% / 2) - 16px);
    }

    .base_margin {
        padding-top: 159px;
    }

    .footer {
        position: relative;
        z-index: 1;
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 40px 10px;
    }

    .footer_heading {
        margin: 0 0 12px;
    }


    .collection_item_wrapper {
        width: 100% !important;
    }

    .product_page_category_section {
        display: none;
    }


    .menu_item > span {
        margin: 0;
        padding: 4px;
    }

    .menu_item i {
        font-size: 16px;
        color: var(--colorAccent);
    }

    .header_tag_line {
        position: relative;
        transform: none;
        margin-top: 8px;
        top: auto;
        left: auto;
    }

    .store_info_wrapper {
        width: 90%;
        max-width: none;
        align-items: center;
    }


    .store_banner_heading {
        font-size: 28px;
        text-align: center;
    }

    .store_banner_heading b {
        font-size: 20px;
    }

    .store_banner_text {
        font-size: 16px;
    }

    .store_info_wrapper .accent_button {
        align-self: center !important;
    }

    .brand_item_wrapper {
        width: calc(100% / 2 - 24px);
    }

    .products_list_wrapper .product_container {
        width: calc(100% - 16px);
        margin: 8px;
    }

    .brand_idea_image_wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 30%;
        height: 200px;
        min-width: auto;
        overflow: hidden;
    }

    .brand_idea_image_wrapper img {
        width: 250px !important;
        height: 100%;
        object-fit: contain;
        object-position: top right;
    }

}