@charset "utf-8";
/* CSS Document */

/* Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&display=swap');






:root {
    /* Font family */
    /* --heading-font: CambriaFont; */
    /* --body-font: 'Roboto', sans-serif; */
    /* --body-font: 'Poppins', sans-serif; */
    /* --body-font: "Plus Jakarta Sans", sans-serif;
    --other-font1: "Lora", serif; */
    --body-font: "Afacad", sans-serif;
    --body-font-size: 16px;
    /* Color */
    --primary-color: #fe0734;
    --secondary-color: #2b72ff;
    --text-color: #5F615E;
    --white-color: #fff;
    --eee-color: #eee;
    --ccc-color: #ccc;
    --color-999: #999;
    --color-777: #777;
    --color-555: #555;
    --color-333: #333;
    --color-222: #222;
    --color-111: #111;
    --black-color: #000;
    --divider-color: rgba(255, 255, 255, 0.2);
    --light_gray: #eee;
    --green-color: #499F30;
    --light-bg: #ecebdb;
    --yellow: #ffe135;
    --light-yellow: #ffff00;
    --orange-color: #EE7F00;
    --deep-orange-color: #E69600;
    --red-colour: #f00;
    --indigo-color: #8809E3;
    --border-color: #ededed;
    --bg-light-gray: #FAFAFD;
    --priceold-color: #ACAFAB;
    --violet-blue-color: #6265FE;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: var(--body-font-size);
    line-height: 1.5;
    background: var(--white-color);
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: var(--black-color);
    position: relative;
}

/* h1 { font-size: 40px; font-weight: 600;}
h2 { font-size: 32px; font-weight: 600;}
h3 { font-size: 28px; font-weight: 600;}
h4 { font-size: 24px; font-weight: 600;}
h5 { font-size: 20px; font-weight: 600;}
h6 { font-size: var(--body-font-size); font-weight: 600; } */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2em;
    font-weight: 400;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 400;
}

h1,
.h1 {
    font-size: 56px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

p {
    padding: 0;
    margin: 0 0 16px 0;
    font-size: var(--body-font-size);
    font-weight: normal;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
    vertical-align: middle;
    transform: scale(1);
}

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

ol {
    list-style: decimal inside;
}

ul li {
    list-style-type: none;
}

a {
    color: var(--black-color);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}

b,
strong,
.strong {
    font-weight: 600;
}

a:hover {
    color: var(--primary-color);
}

blockquote {
    padding: 0;
    margin: 0;
    border: none;
}

figure {
    margin: 0;
}

.image_anime {
    position: relative;
    overflow: hidden;
}

.image_anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image_anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
    display: block;
}

button {
    border: 0;
    background: transparent;
}

.text-white {
    color: var(--white-color);
}

/* .fa {font-family:var(--fa-style-family,"Font Awesome 6 Free");} */


/* a, a:hover, a:visited
{
    color: #21a108;
} */
/* ::selection
{
    background: #21a108;
    color: #fff;
}
::-moz-selection
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}

/***************
page scrool
**************/
/* .scrollup {
    right: 15px;
    position: fixed;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: var(--second-bg-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: var(--main-text-color);
    padding: 10px;
    font-size: 18px;
}
.scrollup.active {
    bottom: 92px;
    right: 15px;
} */
/***************
page scrool
***************/
.text-decoration-underline {
    text-decoration: underline;
}

.light_bg {
    background: var(--light-bg);
}

.bg_light_gray {
    background: var(--bg-light-gray);
}

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

.gray_bg {
    background: var(--light_gray);
}

.text-small {
    font-size: 12px;
    line-height: 16px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-black {
    color: var(--black-color);
}

.section {
    padding: 80px 0;
}

.sec_spacing {
    padding-top: 112px;
    padding-bottom: 112px;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

/* =============Header Section========= */
.head_topbar {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--ccc-color);
}

.topbar_option_list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
}

.topbar_option_list li a {
    font-size: 18px;
    color: var(--text-color);
}

.topbar_right {
    justify-content: end;
}

.custom_select_wrapbox select {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.custom_select_wrapbox select:focus,
.custom_select_wrapbox select:focus-visible {
    border-color: unset;
    box-shadow: none;
    outline: none;
}

.country_flug_txt {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.country_flug_txt img {
    width: 20px;
    height: 20px;
}

.main_header {
    margin-bottom: 16px;
}

.header_top {
    padding: 25px 0;
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

.logo_head {
    width: 120px;
    display: flex;
    justify-content: start;
    margin: 0;
}

.form_search_product {
    width: 100%;
    max-width: 670px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 4px 4px 4px 24px;
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    position: relative;
    border-radius: 200px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
}

.form_search_product form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.devider_line {
    width: 1px;
    height: 16px;
    display: inline-flex;
    background-color: var(--border-color);
}

.search_box {
    width: 74%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.search_box input {
    width: 74%;
    font-size: 18px;
    line-height: 20px;
    color: var(--black-color);
    font-weight: 400;
    padding-left: 0;
    padding-right: 0;
    border: 0;
    box-shadow: none;
    outline: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.search_box input:focus,
.search_box input:focus-visible {
    border-color: unset;
    box-shadow: none;
    outline: none;
}

.btn_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 39px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 0;
    outline: none;
    border-radius: 200px;
}

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

.select_category select {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: none;
}

.select_category select:focus,
.select_category select:focus-visible {
    border-color: unset;
    box-shadow: none;
    outline: none;
}

.select_category .select_options {
    min-width: 200px;
    position: absolute;
    top: -3px;
    right: -3px;
    left: -3px;
    z-index: 100;
    margin: 0;
    padding: 20px;
    list-style: none;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    display: none;
}

.select_category .select_options li {
    width: 32.88%;
    color: var(--text-color);
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 8px 10px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select_category .select_options li:hover {
    color: var(--primary-color);
}

.select_options .header_select_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.select_options .header_select_option .selected_txt,
.select_options .header_select_option .close_option {
    color: var(--black-color);
}

.select_options .header_select_option .close_option {
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.select_options .header_select_option .close_option:hover {
    color: var(--primary-color);
}

.ct_select_custom {
    max-width: 125px;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 600;
    padding-right: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    z-index: 2;
    cursor: pointer;
    overflow: hidden;
}

.ct_select_custom::after {
    font-family: "Font Awesome 6 Free";
    content: "\f107";
    position: absolute;
    font-size: 16px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.nav_icon_list {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    position: relative;
}

.nav_icon_list li a {
    color: var(--text-color);
}

.nav_icon_list .nav_icon_item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.nav_icon_item_sub {
    display: grid;
}

.nav_icon_list li a i,
.nav_icon_list li a svg {
    font-size: 40px;
}

.nav_icon_list li a .h6 {
    margin: 0;
}

.nav_icon_list li a i,
.nav_icon_list li a svg,
.nav_icon_list li a .h6 {
    color: var(--black-color);
}

.nav_icon_list li a:hover i,
.nav_icon_list li a:hover svg,
.nav_icon_list li a:hover .h6 {
    color: var(--primary-color);
}

.nav_icon_list li .ic_count {
    position: relative;
}

.nav_icon_list li .countbox {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: -12px;
    right: -12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_inner {
    width: 100%;
}

.header_inner_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.col_left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.col_right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_inner_wrap .col_right .icon {
    color: var(--primary-color);
}

.nav_category_wrap {
    position: relative;
}

.btn_nav_drop {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav_drop_style {
    min-width: 222px;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 11px 24px 12px 24px;
    border-radius: 16px 16px 0px 0px;
    justify-content: space-between;
}

.btn_mobile_menu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn_mobile_menu.type_small {
    width: 20px;
    height: 20px;
}

.btn_nav_drop .name_category {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    font-weight: 600;
}

.box_nav_category {
    min-width: 222px;
    padding-top: 18px;
    padding-bottom: 18px;
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    z-index: 1;
    background-color: var(--white-color);
    transform: translateY(10px);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.box_nav_category.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.box_nav_category ul {
    top: 100%;
    left: 0;
}

.box_nav_category ul li {
    list-style: none;
}

.nav_category_link {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 24px;
    color: var(--text-color);
}

.box_navigation {
    display: block;
    position: relative;
}

.box_nav_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.box_nav_menu .menu-item {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.box_nav_menu .menu-item .item-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 11px 0;
    position: relative;
}

.btn-mobile-menu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-mobile-menu span {
    width: 18px;
    height: 2px;
    background-color: var(--black-color);
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-mobile-menu::before,
.btn-mobile-menu::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: var(--black-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-mobile-menu::before {
    top: 5px;
}

.btn-mobile-menu::after {
    bottom: 5px;
}

.d-xl-none {
    display: none;
}

.canvas_wrapper {
    padding: 0;
    isolation: isolate;
    height: 100%;
    width: 100%;
    max-height: none;
    display: grid;
    grid-auto-rows: auto minmax(0, 1fr) auto;
    align-content: start;
}

.offcanvas {
    max-width: 100%;
    width: 325px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    color: var(--black-color);
    transform: translateX(-100%);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
}

.offcanvas.show {
    visibility: visible;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}

.offcanvas .icon-close-popup {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    font-size: 16px;
    color: var(--black-color);
    z-index: 10;
    cursor: pointer;
}

.offcanvas .icon-close-popup:hover {
    color: var(--primary-color);
}

.canvas_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    padding-bottom: 32px;
    position: relative;
    text-transform: capitalize;
}

.canvas_header .text-logo {
    font-size: 40px;
    line-height: 52px;
    color: var(--black-color);
    font-weight: 700;
    margin: 0;
}

.canvas_header .text-logo img {
    max-width: 100px;
}

.canvas_header .canvas_btn:hover,
.canvas_header .canvas_btn:focus {
    background: var(--primary-color);
    box-shadow: none;
}

.br-line {
    width: auto;
    height: 1px;
    position: absolute;
    background-color: var(--border-color);
    left: 24px;
    right: 24px;
    bottom: 0px;
}

.canvas_body {
    padding-top: 32px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    padding: 10px 24px;
}

.mb_content_top {
    margin-bottom: 32px;
}

.nav_menu_navigation {
    width: 100%;
}

.mb-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 24px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.mb-menu-link:hover,
.mb-menu-link:focus,
.mb-menu-link:active {
    color: var(--primary-color);
}

.dropdown_menu.collapse {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out;
    -webkit-transition: max-height 0.4s ease-in-out;
    -moz-transition: max-height 0.4s ease-in-out;
    -ms-transition: max-height 0.4s ease-in-out;
    -o-transition: max-height 0.4s ease-in-out;
}

.dropdown_menu.collapse.show {
    max-height: 500px;
    opacity: 1;
}

.dropdown_menu .sub-nav-menu {
    padding-left: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-left: 16px;
    margin-bottom: 24px;
    border-left: 1px solid var(--border-color);
}

.sub-nav-menu .sub_nav_link {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 400;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-nav-menu .sub_nav_link:hover {
    color: var(--primary-color);
}

.canvas_body .group-btn {
    margin-bottom: 32px;
}

.flow_us_wrap {
    width: 100%;
}

.flow_us_wrap .title {
    margin-bottom: 16px;
    font-weight: 500;
}

.canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    text-transform: capitalize;
}

.canvas-sidebar .canvas-header {
    box-shadow: 0px 4px 10px 0px rgba(212, 212, 212, 0.2509803922);
    display: none;
}

.canvas-sidebar .canvas-header .icon-close-popup {
    position: relative;
    right: auto;
    top: auto;
    padding: 10px;
    font-size: 24px;
    color: var(--black-color);
    z-index: 10;
    cursor: pointer;
}

.canvas-sidebar .canvas-header .icon-close-popup:hover {
    color: var(--primary-color);
}

.canvas-body {
    background-color: var(--white-color);
    padding: 10px 24px;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    flex: 1;
}

/* =============End Header Section========= */
/* =============Footer Section========= */
.footer_style {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 40px;
}

.white_rounded {
    width: 100%;
    background: var(--white-color);
    padding: 32px;
    border-radius: 16px;
}

.footer_top {
    width: 100%;
}

.foot_icbox_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.footer_info_slider {
    width: 100%;
}

.footer_info_item {
    border-right: 1px solid var(--border-color);
}

.footer_info_item:last-child {
    border-right: 0;
}

.foot_icbasebox {
    text-align: center;
    position: relative;
}

.foot_icbasebox::after {
    content: "";
    position: absolute;
    right: -33%;
    top: 50%;
    transform: translateY(-50%);
    height: 102px;
    width: 1px;
    background-color: var(--ccc-color);
}

.foot_icbasebox:last-child::after {
    display: none;
}

.foot_icbasebox .iconbox {
    font-size: 56px;
    margin: 0 auto 26px auto;
}

.foot_icbasebox .title {
    margin: 0 0 4px 0;
}

.foot_icbasebox .desctxt {
    color: var(--text-color);
}

.footer_body {
    margin: 56px 0 0 0;
    padding: 56px 0 56px 0;
    border-top: 1px solid var(--ccc-color);
}

.footer_col_block {
    width: 100%;
}

.footer_col_block .footer_heading {
    font-size: 24px;
    line-height: 32px;
    color: var(--black-color);
    margin: 0 0 24px 0;
}

.footer_menu_list {
    display: grid;
    gap: 12px;
}

.footer_menu_list li a {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}

.footer_menu_list li a:hover {
    color: var(--primary-color);
}

.footer_newsletter {
    width: 100%;
}

.footer_newsletter p {
    margin-bottom: 16px;
}

.form_get_email {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.form_get_email input {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: var(--black-color);
    font-weight: 400;
    border: 1px solid var(--text-color);
    border-radius: 100px;
    outline: none;
    padding: 15px 24px;
}

.form_get_email button {
    min-width: 34%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    font-weight: 600;
    padding: 16px 30px;
    position: relative;
    background-color: var(--black-color);
    border-radius: 100px;
}

.form_get_email button:hover {
    color: var(--white-color);
}

.animate_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0.3;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 70%);
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
}

.animate_btn:hover::after {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0) 20%, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0) 70%);
    left: -100%;
    opacity: 0.5;
    animation: shine-reverse 1s forwards;
}

@keyframes shine-reverse {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.sib_form_footer .form-check {
    display: flex;
    gap: 8px;
}

.footer_contact {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.footer_contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer_contact li a {
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
}

.footer_contact li a:hover {
    color: var(--primary-color);
}

.footer_social ul {
    display: inline-flex;
    gap: 16px;
}

.footer_social ul li a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--ccc-color);
    border-radius: 50%;
    position: relative;
}

.footer_social ul li a:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

.social_facebook:hover {
    background: rgb(59, 89, 152);
}

.social_instagram:hover {
    background: linear-gradient(#8a3ab9, #e95950, #fccc63);
}

.social_x:hover {
    background: rgb(85, 85, 85);
}

.social_youtube:hover {
    background: rgb(205, 32, 31);
}

.footer_bottom {
    border-top: 1px solid var(--ccc-color);
}

.footer_inner_bottom {
    padding: 32px 0px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.list_hor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-method-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-list li {
    max-width: 50px;
}

/* =============End Footer Section========= */
/* =============Start Hero Section========= */
.hero_sec {
    width: 100%;
    position: relative;
}

.hero_slideshow_container {
    display: flex;
    gap: 12px;
}

.hero_slideshow_container.width2 {
    max-width: calc(100% - 238px);
    margin-left: auto;
}

.hero_slideshow_wrapper {
    width: 70.22%;
}

.hero_adsshop_wrapper {
    width: calc(29.78% - 12px);
}

.hero_adsshop_wrapper.colads_right {
    display: grid;
    gap: 12px;
}

.ads_shopbox {
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero_slideshow_wrapper .heroslider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.heroslider .slick-dots {
    bottom: 10px;
}

.heroslider .slick-dots li button::before {
    font-size: 50px;
}

.boximage_image {
    width: 100%;
    display: inline-block;
}

.boximage_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
    -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.ads_shopbox:hover .boximage_image img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.ads_shopbox_content {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 24px;
    z-index: 1;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.ads_shopbox_content .sub-title {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.ads_shopbox_content .title-txt {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.txtbtn {
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    color: var(--black-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(to right, var(--primary-color) 50%, var(--black-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.txtbtn::before {
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    bottom: 3px;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s linear;
    z-index: 1;
}

.txtbtn::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background-color: var(--black-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.txtbtn:hover {
    background-position: left;
}

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

.hero_item {
    width: 100%;
    /* transform: scale(1); transition: all 0.3s linear;  */
    position: relative;
}

.hero_content {
    position: absolute;
    top: 50%;
    left: 32px;
    right: 32px;
    z-index: 2;
    transform: translateY(-50%);
}

.hero_content .hero_sub_title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
}

.hero_content .hero_title a {
    color: var(--black-color);
}

.hero_content .hero_title a:hover {
    color: var(--primary-color);
}

.hero_content .price_wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
}

.hero_content .price_wrap .price_new {
    color: var(--primary-color);
    font-weight: 700;
}

.price_old {
    color: var(--priceold-color);
    position: relative;
}

.price_old::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--priceold-color);
}

.hero_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* .heroslider .hero_item.slick-active .hero_img img { transform: scale(1); } */
/* =============End Hero Section========= */
/* =============Start Shop by category Section========= */
.shopnow_sec {
    width: 100%;
}

.sec_titlebox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
}

.category_slider {
    width: 100%;
}
.category_slider .slick-prev, .category_slider .slick-next { width: 50px; height: 50px; z-index: 2;}
.category_slider .slick-prev { left: 0;}
.category_slider .slick-next { right: 0;}
.category_slider .slick-prev::before, .category_slider .slick-next::before { font-size: 50px; color: var(--primary-color);}
.category_slider .slick-prev::before { content: "\f104"; font-family:'FontAwesome';}
.category_slider .slick-next::before { content: "\f105"; font-family:'FontAwesome';}
.category_item {
    margin-left: 20px;
    margin-right: 20px;
}

.category_item a {
    height: 100%;
    display: grid;
    gap: 24px;
}

.category_item .category_item_imgbox {
    border-radius: 50%;
    overflow: hidden;
}

.category_item .category_item_imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.category_item a:hover .category_item_imgbox img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.category_item .collection_name {
    text-align: center;
}

.category_item a .collection_name {
    color: var(--text-color);
}

.category_item a:hover .collection_name {
    color: var(--primary-color);
}

.category_item a .collection_name span {
    color: var(--text-color);
}

/* =============End Shop by category Section========= */
/* =============Start Deal Of The Day Section========= */
.deal_of_day_sec {
    padding: 80px 0 40px 0;
}

.align_across {
    justify-content: space-between;
}

.countdown_timer {
    display: flex;
    gap: 8px;
}

.countdown_timer .countdown_item {
    min-width: 56px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    text-align: center;
    padding: 8px;
}

.countdown_timer .countdown_item .countdown_value {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: -7px;
    font-weight: 600;
}

.countdown_timer .countdown_item .countdown_label {
    font-size: 14px;
    line-height: 20px;
}

.view_all_product a {
    color: var(--black-color);
}

.view_all_product a:hover {
    color: var(--primary-color);
}

.card_product {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.card_product_wrapper {
    overflow: hidden;
    position: relative;
}

.border_radius {
    border-radius: 16px;
    border: 1px solid var(--line);
}

.product_action_list {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    z-index: 6;
}

.product_action_list li {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.roundbox_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
}

.product_action_list li .roundbox_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.card_product:hover .product_action_list li {
    opacity: 1;
    visibility: visible;
}

.card_product:hover .product_action_list li:nth-child(1) {
    transform: translateX(0px);
}

.card_product:hover .product_action_list li:nth-child(2) {
    transform: translateX(0px);
    transition-delay: 0.1s;
}

.card_product:hover .product_action_list li:nth-child(3) {
    transform: translateX(0px);
    transition-delay: 0.2s;
}

.card_product:hover .product_action_list li a:hover {
    background: var(--black-color);
    color: var(--white-color);
}

.product_action_bot {
    position: absolute;
    right: 15px;
    bottom: 16px;
    left: 15px;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 22px;
    color: var(--white-color);
    font-weight: 600;
    padding: 16px 30px;
    position: relative;
    background-color: var(--black-color);
    border-radius: 100px;
    overflow: hidden;
}

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

.product_action_bot a:hover {
    color: var(--white-color);
}

.card_product .product_action_bot {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card_product:hover .product_action_bot {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.product_badge_list {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    display: flex;
}

.product_badge_item {
    padding: 3px 16px;
    color: var(--white-color);
    font-size: 18px;
    line-height: 24px;
}

.hot_item {
    background-color: var(--orange-color);
}

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

.new_item {
    background-color: var(--green-color);
}

.limited_item {
    background-color: var(--indigo-color);
}

.trending_item {
    background-color: var(--violet-blue-color);
}

.flash_item {
    background-color: var(--black-color);
    position: relative;
}

.flash_item::before {
    
    font-family: 'FontAwesome';
    font-size: 14px;
    color: var(--yellow);
    margin-right: 6px;
}

.item_radius {
    border-radius: 16px;
}

.rate_wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 12px;
}

.rate_wrap i,
.rate_wrap svg {
    color: var(--deep-orange-color);
}

.product_price_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px 10px;
}

.product_price_wrap .price_new {
    font-weight: 600;
}

.price_old {
    display: inline-block;
    color: var(--priceold-color);
    position: relative;
}

.product_name {
    color: var(--black-color);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 16px;
}

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

/* =============End Deal Of The Day Section========= */
/* =============Start Our Best Sellers Section========= */
.best_sellers_sec {
    padding: 0 0 40px 0;
}

.blue_rounded {
    width: 100%;
    background: var(--secondary-color);
    padding: 32px;
    border-radius: 16px;
}

.blue_rounded .sec_titlebox,
.blue_rounded .view_all_product a {
    color: var(--white-color);
}

.grid_layout_product {
    display: flex;
    justify-content: space-between;
}

.grid_layout_product .grid_item1 {
    width: calc(66.388888% - 12px);
}

.grid_layout_product .grid_item2 {
    width: calc(33.61111111% - 12px);
}

.banner_card_product {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: var(--white-color);
    padding: 16px 12px;
    border-radius: 16px;
}

.banner_card_product>* {
    width: calc(50% - 12px);
}

.banner_card_product .card_product_image {
    border-radius: 16px;
    overflow: hidden;
}

.banner_card_product .card_product_image img {
    aspect-ratio: 0.8212927757;
}

.card_product_content {
    display: grid;
    gap: 24px;
}

.product_info .info-cate {
    margin-bottom: 4px;
    display: block;
}

.product_info .info-name {
    margin-bottom: 8px;
}

.product_info .info-name a:hover {
    color: var(--primary-color);
}

.product_count_buy {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.product_progress_sold {
    display: grid;
    gap: 12px;
}

.progress {
    height: 9px;
    border-radius: 40px;
}

.box_quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product_action {
    display: flex;
    gap: 12px;
}

.product_action .btn_button {
    font-size: 14px;
    padding: 16px 24px;
}

.product_quantity {
    min-width: 140px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--ccc-color);
    padding: 7px 0;
    border-radius: 43px;
    overflow: hidden;
}

.product_quantity .btn-quantity {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--black-color);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product_quantity .btn-quantity:hover {
    color: var(--primary-color);
}

.product_quantity .quantity-product {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    border: 0;
    text-align: center;
    font-family: "Sora";
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: var(--black-color);
    pointer-events: none;
}

.product_style_list_mini {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    gap: 24px;
    z-index: 1;
    transition-property: unset;
    transition-timing-function: unset;
    box-sizing: unset;
}

.product_style_list_mini .card_product {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: var(--white-color);
    padding: 15px;
    border-radius: 16px;
    margin: 0;
}

.card_productimg_wrapper {
    max-width: 112px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product_style_list_mini .card_product .card_productimg_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.product_style_list_mini .card_product:hover .card_productimg_wrapper img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.style-row {
    flex-direction: row;
}

.card_product_info .name-product {
    color: var(--black);
    overflow: hidden;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product_sty_list_box .card_product_info .name-product {
    margin-bottom: 12px;
}

.group-action {
    position: relative;
    display: grid;
    gap: 8px;
}

.product_color {
    width: 100%;
}

.product_color .pro_title {
    margin-bottom: 16px;
}

.product_color_listbox {
    width: 100%;
}

.product_color_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.product_color_list.style_large .product_color_item {
    width: 40px;
    height: 40px;
}

.product_color_list li {
    position: relative;
}

.product_color_item {
    width: 30px;
    height: 30px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: 0.4s;
    border-radius: 50%;
}

.product_color_item:hover,
.product_color_item.active {
    border-color: var(--black-color);
}

.product_color_item .swatch-value {
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 3px solid var(--white-color);
    border-radius: 50%;
    transition: 0.3s;
}

.bg-light-brown {
    background-color: #c8a07c;
}

.bg-baby-blue {
    background-color: #b2cbea;
}

.bg-honey-orange {
    background-color: #f3a729;
}

.card_product_info .product_price_wrap {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product_sty_list_box:hover .card_product_info .product_price_wrap {
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
}

.product_sty_list_box .card_product_info .product_action_list {
    flex-direction: row;
    top: 0;
    left: 0;
}

.product_sty_list_box .card_product_info .product_action_list li {
    transform: translateY(-16px);
    transition-delay: unset !important;
}

.product_sty_list_box .card_product_info .product_action_list .roundbox_icon {
    width: 32px;
    height: 32px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
}

/* =============End Our Best Sellers Section========= */
/* =============Start Deal Of The Day2 Section========= */
.deal_of_day_sec2 {
    padding: 0;
}

.deal_of_day_item {
    padding: 0 8px;
}

.deal_of_day_slider .deal_of_day_item>* {
    height: 100%;
}

.deal_of_day_item .banner_card_product {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    margin: 0;
    background-color: var(--bg-light-gray);
    position: relative;
}

.deal_of_day_item .banner_card_product .card_product_wrapper {
    width: 100%;
}

.deal_of_day_item .banner_card_product .card_product_image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.deal_of_day_item .banner_card_product .card_product_image img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition-duration: 700ms;
    aspect-ratio: unset;
}

.deal_of_day_item .banner_card_product .card_product_content {
    width: 100%;
    gap: 16px;
}

.deal_of_day_item .product_info .info-name:hover {
    color: var(--primary-color);
}

.deal_of_day_item .banner_card_product:hover .card_product_image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.deal_of_day_item .product_style_list_mini {
    display: grid;
    gap: 16px;
}

.deal_of_day_item .product_style_list_mini .card_product {
    border: 1px solid var(--border-color);
    padding: 12px;
}

.deal_of_day_item .product_style_list_mini .rate_wrap {
    font-size: 12px;
}

/* =============End Deal Of The Day Section========= */
/* =============Start offer_voucher_sec Section========= */
.deal_of_day_sec3 {
    padding: 40px 0;
}

.offer_content_wrapbox {
    border-radius: 16px;
    padding: 8px;
    background-color: var(--primary-color);
}

.offer_content_wrapbox .offer_content_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px dashed var(--white-color);
    padding: 24px 30px;
    gap: 5px;
}

.looklike_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 600;
    padding: 16px 40px;
    position: relative;
    background-color: var(--white-color);
    border-radius: 60px;
}

.offer_voucher {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.offer_voucher .voucher_txt {
    font-weight: 600;
}

.offer_voucher .copy_txt {
    color: var(--primary-color);
    font-weight: 500;
}

.animate_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100%;
    opacity: 0.6;
}

.animate-dark:hover::after {
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

/* =============End offer_voucher_sec Section========= */
/* =============Start blog Section========= */
.blog_sec {
    padding: 40px 0;
}

.blog_item {
    width: 100%;
    padding: 0 10px;
    position: relative;
}

.article_blog {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.article_blog a {
    display: inline-block;
}

.article_blog .entry_image {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.article_blog .entry_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 0 / 1;
    transition: 1s;
}

.article_blog .entry_image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.article_blog:hover .entry_image:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.article_blog .blog-content {
    padding: 0;
}

.article_blog .blog-content .entry_name {
    margin-bottom: 12px;
}

.article_blog .blog-content .h6 {
    margin-bottom: 24px;
}

.txt_link {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    color: var(--black-color);
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(to right, var(--primary-color) 50%, var(--black-color) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
    cursor: pointer;
}

.txt_link:focus,
.txt_link:hover {
    text-decoration: none;
    outline: 0px;
}

.txt_link::before {
    position: absolute;
    content: "";
    left: 0px;
    width: 0px;
    bottom: 3px;
    height: 1px;
    background-color: var(--primary-color);
    z-index: 1;
    transition: width 0.3s linear;
}

.txt_link::after {
    position: absolute;
    content: "";
    left: 0px;
    right: 0px;
    bottom: 3px;
    height: 1px;
    background-color: var(--black-color);
    transition: 0.3s;
}

.txt_link:hover {
    color: var(--primary-color);
    background-position: left center;
    text-decoration: none;
}

.txt_link:hover::before {
    width: 100%;
}

.entry_tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date_tag {
    display: block;
    padding: 8px 24px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 60px;
}

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

/* =============End blog Section========= */
/* =============Start ShopePage Section========= */
.page_banner {
    width: 100%;
    background: #eee;
    padding: 80px 0px;
}

.page_banner_content {
    text-align: center;
}

.page_banner .title-page {
    font-weight: 500;
    margin-bottom: 12px;
}

.page_breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
}

/* =============End ShopePage Section========= */
/* =============Start Section========= */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.shop_category_sec {
    padding-top: 112px;
}

.shop_category_slider .shop_category_item {
    padding: 0 20px;
}

.box_image_category {
    display: flex;
    position: relative;
    overflow: hidden;
}

.box_image_category a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.box_image_category:hover a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.box_image_content {
    position: absolute;
    right: 14px;
    left: 14px;
    bottom: 18px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.animate_btn {
    position: relative;
    overflow: hidden;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    line-height: 24px;
    padding: 10.5px 24px;
    position: relative;
    border: 0;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 100px;
    font-weight: 600;
}

.btn-white h5,
.btn-white .h5 {
    margin: 0;
}

.shop_control {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 8px;
    margin-bottom: 30px;
}

.shop_sale_text {
    display: inline-block;
}

.shop_sale_text .form-check {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
}

.filter_control {
    display: none;
}

.filter_control .btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 24px;
    color: var(--black);
    font-weight: 600;
    padding: 8px 16px;
}

.control_sorting {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.control_sorting .h6,
.control_sorting h6,
.control_sorting p {
    margin: 0;
}

.dropdown-sort {
    padding: 10px 5px;
    min-width: 180px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    border-radius: 200px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.dropdown-sort select,
.dropdown-sort select:focus,
.dropdown-sort select:active {
    border: 0;
    box-shadow: none;
}

.dropdown-sort select {
    font-size: 18px;
    font-weight: 600;
}

.pagination_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 50px auto;
}

.pagination_box .pagination {
    gap: 20px;
}

.pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item a.page-link:focus {
    box-shadow: none;
    background-color: var(--white-color);
}

.pagination .page-item a.page-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 42px;
    color: var(--black-color);
    font-weight: 500;
    text-align: center;
}

.pagination .page-item a.page-link:hover,
.pagination .page-item.active a.page-link {
    color: var(--white-color);
    background: var(--black-color);
    border-color: var(--black-color);
}

.pagination .page-item:first-child a.page-link {
    font-size: 24px;
}

.pagination .page-item:last-child a.page-link {
    font-size: 24px;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
    box-shadow: none;
    border-color: var(--border-color);
    outline: none;
}

.canvas-sidebar.sidebar-filter {
    background-color: var(--white-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.canvas-sidebar .accordion-item {
    border: 0;
}

.canvas-sidebar .accordion-item .accordion-button {
    font-size: 24px;
    color: var(--black-color);
    font-weight: 600;
    background: var(--white-color);
    padding: 0;
    box-shadow: none;
}

.canvas-sidebar .accordion-item .accordion-button:focus {
    border: 0;
    box-shadow: none;
    outline: none;
}

.canvas-sidebar .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.canvas-sidebar .accordion-item .accordion-body {
    padding: 1rem 0;
}

.filter_group_check li.list-item,
.filter_group_check li.list-item .radio_checkbox {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
}

.filter_group_check li.list-item:not(:last-child) {
    margin-bottom: 12px;
}

.filter_group_check li.list-item a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}

.filter_group_check li.list-item a:hover {
    color: var(--primary-color);
}

.radio_checkbox .form-check-input {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    -webkit-appearance: none;
    outline: 0;
    border: 1px solid var(--border-color);
    border-radius: 0;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.radio_checkbox .form-check-input:checked {
    border-color: var(--black-color);
    background-color: var(--black-color);
    background-image: none;
}

.radio_checkbox .form-check-input::before,
.form-check-input[type="checkbox"]::before {
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    color: var(--white-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.radio_checkbox .form-check-input:checked::before,
.form-check-input[type="checkbox"]:checked::before {
    opacity: 1;
    transform: scale(1);
}

.availability_checkboxs .filter_group_check li.list-item,
.brand_list_wrap .filter_group_check li.list-item label {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
}

.filter_group_check li.list-item .radio_checkbox {
    width: 100%;
}

.filter_group_check li.list-item .radio_checkbox .form-check-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.widget-price {
    display: grid;
    gap: 16px;
}

.widget-price .price-val-range {
    margin: 7px 0px;
    background: none;
    box-shadow: none;
}

.noUi-target {
    border: 0;
}

.noUi-horizontal {
    height: 2px;
}

.widget-price-filter {
    display: grid;
    gap: 24px;
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-horizontal {
    height: 18px;
}

.noUi-horizontal {
    height: 2px;
}

.noUi-target {
    border: 0;
    margin: 7px 0px;
    padding: 0px 8px;
}

.noUi-base,
.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-connects {
    overflow: hidden;
    z-index: 0;
}

.noUi-base .noUi-connects {
    border-radius: 120px;
    background-color: #eee;
}

.noUi-connect,
.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.noUi-connect {
    background-color: var(--primary-color);
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
    height: 15px;
    width: 15px;
    border-radius: 50px;
    border: 4px solid var(--black-color);
    background-color: var(--white-color);
    box-shadow: unset;
    cursor: pointer;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -17px;
    left: auto;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
    right: -8px;
}

.price-output {
    display: flex;
    gap: 12px;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.widget-price .price-output .price-box {
    font-weight: 700;
}

.brand_list_wrap {
    width: 100%;
}

.form-check-input[type="checkbox"] {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    outline: 0;
    cursor: pointer;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.form-check-input[type="checkbox"]:checked {
    border-color: var(--black-color);
    background-color: var(--black-color);
}

.size_list_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.size_list_wrap .size-item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.size_list_wrap .size-item .size {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.size_list_wrap .size-item:hover,
.size_list_wrap .size-item.active {
    color: var(--white-color);
    background: var(--black-color);
    border-color: var(--black-color);
}

.size_list_wrap .size-item.max-size {
    width: 120px;
    border-radius: 100px;
}

.color_list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 32px;
}

.color_list_wrap .color-item {
    width: 40px;
    height: 40px;
    display: block;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    padding: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.color_list_wrap .color-item.active {
    border-color: var(--black-color) !important;
}

.color_list_wrap .color-item .color {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-light-purple {
    background-color: #D5D4FE !important;
}

.bg-dark-charcoal {
    background-color: #201E21 !important;
}

.bg-dark-jade {
    background-color: #114842 !important;
}

.bg-light-beige {
    background-color: #EEDFC6 !important;
}

.bg-sage-green {
    background-color: #71A46E !important;
}

.bg-tomato {
    background-color: #F55B31 !important;
}

.bg-honey-orange {
    background-color: #F3A729 !important;
}

.bg-dark-olive {
    background-color: #444828 !important;
}

.bg-dark-olive-2 {
    background-color: #4F684C !important;
}

.bg-hot-pink {
    background-color: #F56EB7 !important;
}

.bg-muted-violet {
    background-color: #51518D !important;
}

.bg-dusty-olive {
    background-color: #A6AB84 !important;
}

.bg-caramel {
    background-color: #C8A07C;
}

.bg-deep-orange {
    background-color: #EC6E1A;
}

.bg-baby-blue {
    background-color: #B2CBEA;
}

.bg-teal-blue {
    background-color: #277A9F;
}

.bg-medium-gray {
    background-color: #CFD0CA;
}

.bg-off-white {
    background-color: var(--bg-9) !important;
}

.bg-ghost-white {
    background-color: #FAFAFD;
}

.bg-deep-green {
    background-color: #42514A !important;
}

.bg-soft-peach {
    background-color: #F7EDE4 !important;
}

.bg-black-gray {
    background: linear-gradient(to right, #000000 50%, #888888 50%) !important;
}

.bg-black-green {
    background: linear-gradient(to right, #888888 50%, #4CAF50 50%) !important;
}

.bg-dusty-rose {
    background-color: #B3907A !important;
}

.bg-sand-white {
    background-color: #EFE7DA !important;
}

.bg-cosmic-purple {
    background-color: #685BC7 !important;
}

.bg-brown {
    background-color: #8b674d;
}

.ads-banner {
    position: relative;
    overflow: hidden;
}

.hover-img .img-style {
    overflow: hidden;
}

.hover-img .img-style>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.hover-img:hover .img-style>img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.ads_content {
    position: absolute;
    bottom: 8px;
    left: 0;
    padding: 10px 20px;
    z-index: 2;
}

.ads_content .title_txt {
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

.ads_content .subtxt {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 12px;
}

/* =============End Start Section========= */
/* =============Start single_product_sec Section========= */
.single_product_sec {
    padding: 80px 0 40px 0;
}

.single_product_base {
    width: 100%;
}

.product_info_wrap {
    display: grid;
    position: relative;
}

.product_info_list {
    display: grid;
}

.product_info_name {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 34px;
}

.product_info_meta {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.product_info_meta .rating {
    display: flex;
    align-items: center;
    gap: 9px;
}

.product_info_meta .rating .rate_wrap {
    margin-bottom: 0;
}

.product_info_meta .rating .reviews {
    color: var(--text-color);
}

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

.product_heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.product_info_price .price_new {
    font-size: 40px;
    line-height: 40px;
    color: var(--black-color);
    font-weight: 400;
    margin-right: 5px;
}

.product_info_price .price_old {
    font-size: 18px;
    line-height: 24px;
    margin-right: 5px;
}

.product_price_wrap .badges_on_sale {
    border-radius: 4px;
    padding: 0 7px;
    line-height: 22px;
    background-color: var(--primary-color);
    color: var(--white-color);
    margin: 0;
}

.product_info_countdown {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product_info_countdown .countdown_title .text_small {
    color: var(--text-color);
    margin: 0;
}

.product_info_countdown .countdown_timer .countdown_item {
    width: 50px;
    height: 50px;
    min-width: 50px;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border: 1px solid var(--border-color);
}

.product_info_countdown .countdown_timer .countdown_item .countdown_value {
    color: var(--primary-color);
}

.product_info_countdown .countdown_timer .countdown_item .countdown_label {
    color: var(--text-color);
}

.product_info_liveview {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.liveview_count {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--black-color);
    border-radius: 99px;
    color: var(--white-color);
}

.liveview_count .counttxt {
    margin: 0;
}

.viewing_txt {
    color: var(--black-color);
    font-weight: 600;
    margin: 0;
}

.product_info_wrap .product_variant {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.variant_picker_item {
    position: relative;
    z-index: 1;
}

.variant_picker_item .variant_picker_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.variant_picker_item .variant_picker_label .h4 {
    font-weight: 600;
}

.variant_picker_item .variant_picker_label .value_current_size {
    display: inline-block;
}

.variant_picker_item .variant_picker_label .size_guide {
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant_picker_item .variant_picker_label .size_guide:hover {
    color: var(--primary-color);
}

.variant_picker_item .variant_picker_values {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variant_picker_item .variant_picker_values .size-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 18px;
    line-height: 24px;
    color: var(--text-color);
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.variant_picker_item .variant_picker_values .size-btn:hover,
.variant_picker_item .variant_picker_values .size-btn.active {
    background: var(--black-color);
    border-color: var(--black-color);
    color: var(--white-color);
}

.variant_picker_item .variant_picker_values .color-btn:not(.select-item) {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    border-radius: 50%;
}

.variant_picker_item .variant_picker_values .color-btn .check_color {
    width: 32px;
    height: 32px;
    display: flex;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.product_total_quantity {
    margin-bottom: 20px;
}

.product_total_quantity .group-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.box_icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    color: #252525;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.box_icon:hover {
    background: var(--black-color);
    border-color: var(--black-color);
    color: var(--white-color);
}

.red_btn {
    background: var(--primary-color);
    font-size: 18px;
    line-height: 20px;
    padding: 14px 40px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.red_btn:hover {
    background: var(--black-color);
}

.product_extra_link {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product_extra_icon_link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.product_delivery_return {
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin-bottom: 20px;
}

.product_delivery {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product_delivery .ic_ {
    display: inline-block;
}

.product_delivery p {
    color: var(--text-color);
    margin: 0;
}

.product_delivery p strong {
    color: var(--black-color);
}

.product_trust_seal {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.product_trust_seal .text_seal {
    line-height: 24px;
    color: var(--text-color);
    margin: 0;
}

.product_cate_sku ul {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.product_cate_sku ul .item_cate_sku {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-color);
    margin: 0;
}

.product_cate_sku ul .item_cate_sku span {
    font-weight: 600;
}

.product_cate_sku ul .item_cate_sku a {
    color: var(--text-color);
}

.product_cate_sku ul .item_cate_sku a:hover {
    color: var(--primary-color);
}

.product_media_wrap {
    width: 100%;
    position: sticky !important;
    z-index: 50;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.product_thumbs_slider {
    display: flex;
    gap: 8px;
    max-height: 680px;
    overflow: hidden;
}

.product_thumbs_slider .slider-for {
    width: calc(100% - 115px - 8px);
    position: relative;
}

.product_thumbs_slider .slider-for .slick-list,
.product_thumbs_slider .slider-for .slick-list .slick-track {
    height: 100% !important;
}

.product_thumbs_slider .slider-for .for_item {
    position: relative;
    cursor: pointer;
}

.product_thumbs_slider .slider-for .for_item a {
    display: block;
}

.product_thumbs_slider .slider-for .for_item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.product_thumbs_slider .slider-nav {
    width: 115px;
    flex-shrink: 0;
    max-height: 764px;
}

.slider-nav .nav_item {
    width: 100% !important;
    height: 150px;
    height: auto;
    border: 1px solid var(--white-color);
    position: relative;
    margin-bottom: 12px;
}

.slider-nav .nav_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 0.7516339869;
}

.slider-nav .slick-list {
    width: 100% !important;
    padding: 0 !important;
}

.slider-nav .slick-track {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    transform: none !important;
}

.slider-nav .nav_item.slick-current {
    border: 1px solid var(--black-color);
}

.product_media_wrap .img-container {
    position: relative;
    width: 420px;
    height: 560px;
    height: 100%;
    overflow: hidden;
}

.product_media_wrap .zoom-lens {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px solid #000;
    background: rgba(255, 255, 255, .35);
    display: none;
    pointer-events: none;
    z-index: 5;
}

.product_media_wrap .zoom-preview {
    width: 500px;
    height: 500px;
    border: 1px solid #ddd;
    background-repeat: no-repeat;
    background-size: 300%;
    display: none;
    position: absolute;
    top: 0;
    right: -90%;
    z-index: 5;
}

/* =============End single_product_sec Section========= */
.customers_sec {
    padding: 0 0 40px 0;
}

.sect_title {
    margin-bottom: 56px;
}

.grid_photos {
    display: grid;
    column-gap: 12px;
    row-gap: 32px;
    column-gap: 48px;
    grid-template-columns: repeat(4, 1fr);
}

.wg_real_image {
    position: relative;
}

.wg_real_image .box_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    border: 0;
    color: var(--white-color);
    position: absolute;
    top: 16px;
    right: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    cursor: pointer;
}

.wg_real_image .box_icon i,
.wg_real_image .box_icon svg {
    font-size: 20px;
}

.may_like_sec {
    padding: 40px 0;
}

.may_like_sec .sec_titlebox .sect_title {
    font-size: 54px;
    font-weight: 500;
    margin: 0;
}

/* =============Start Section========= */
.pro_descriptions_sec {
    padding: 40px 0 20px 0;
}

.details_tab {
    width: 100%;
}

.details_tab .nav-tabs {
    margin-bottom: 48px;
}

.details_tab .nav-tabs .nav-link {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 100%;
    padding: 0 24px 16px;
    display: block;
    position: relative;
    text-align: center;
    white-space: nowrap;
    border: 0;
}

.details_tab .nav-tabs .nav-link.active {
    color: var(--black-color);
    font-weight: 500;
    border-bottom: 1px solid var(--black-color);
}

.details_tab .nav-tabs .nav-link:first-child {
    padding-left: 0;
}

.pro_descriptions_sec .tab-content>.tab-pane p {
    font-size: 18px;
    line-height: 24px;
}

.tab_descriptions {
    width: 100%;
}

.tab_descriptions p {
    color: var(--text-color);
    line-height: 24px;
}

.tab_descriptions p:last-child {
    margin-bottom: 32px;
}

.list_infor {
    display: grid;
    column-gap: 12px;
    row-gap: 32px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 24px;
}

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

.infor_item .title_head {
    margin-bottom: 24px;
}

.infor_item ul {
    display: grid;
    gap: 16px;
}

.infor_item ul li {
    display: flex;
}

.tab_descriptions .infor_item ul li p,
.infor_item ul li p {
    margin: 0;
}

.tab_descriptions .infor_item ul li p span,
.infor_item ul li p span {
    color: var(--black-color);
    font-weight: 600;
}

.space_gap {
    width: 52%;
    min-width: 124px;
    display: inline-block;
}

.tab_policy {
    width: 100%;
}

.tab_policy h5 {
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.tab_policy p {
    color: var(--text-color);
}

.pro_faqs_tabs {
    display: flex;
    gap: 45px;
    min-width: 200px;
}

.pro_faqs_tabs .nav.flex-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pro_faqs_tabs .tab-content {
    border: 1px solid var(--border-color);
    position: relative;
    flex-grow: 1;
}

.pro_faqs_tabs .tab-content>.tab-pane {
    padding: 31px 31px 47px;
}

.pro_faqs_tabs .nav-pills .nav-item .nav-link {
    position: relative;
    width: 100%;
    padding: 11px 23px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.pro_faqs_tabs .nav-pills .nav-item .nav-link.active {
    background-color: var(--black-color);
    border-color: var(--black-color);
    color: var(--white-color);
}

.pro_faqs_tabs .nav-pills .nav-item .nav-link::before {
    position: absolute;
    content: "";
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid var(--black-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.pro_faqs_tabs .nav-pills .nav-item .nav-link.active::before {
    opacity: 1;
    visibility: visible;
}

/* =============End Start Section========= */
/* =============Start Section========= */

/* =============End Start Section========= */