@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Roman.eot');
  src: url('../fonts/HelveticaNeue-Roman.eot?#iefix')
      format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Roman.woff') format('woff'),
    url('../fonts/HelveticaNeue-Roman.ttf') format('truetype'),
    url('../fonts/HelveticaNeue-Roman.svg#HelveticaNeue-Roman') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Medium.eot');
  src: url('../fonts/HelveticaNeue-Medium.eot?#iefix')
      format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Medium.woff') format('woff'),
    url('../fonts/HelveticaNeue-Medium.ttf') format('truetype'),
    url('../fonts/HelveticaNeue-Medium.svg#HelveticaNeue-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Bold.eot');
  src: url('../fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Bold.woff') format('woff'),
    url('../fonts/HelveticaNeue-Bold.ttf') format('truetype'),
    url('../fonts/HelveticaNeue-Bold.svg#HelveticaNeue-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeue-Light.eot');
  src: url('../fonts/HelveticaNeue-Light.eot?#iefix')
      format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Light.woff') format('woff'),
    url('../fonts/HelveticaNeue-Light.ttf') format('truetype'),
    url('../fonts/HelveticaNeue-Light.svg#HelveticaNeue-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --color1: #48484a;
  --color2: #ad8b00;
  --color3: #1c1c1e;
  --color4: #3a3a3c;
}

body {
  font-family: 'Helvetica Neue';
  font-weight: 400;
  font-size: 16px;
  color: var(--color1);
  line-height: 27px;
}

body img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: var(--color3);
}

button:focus {
  outline: unset;
}

.img {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.img img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#wrapper .container,
.header-sm .container {
  max-width: 100%;
}
body {
  overflow-x: hidden;
}
/* --- header---  */
header {
  padding: 10px 0;
  background-color: #fff;
}
header .row {
  margin: 0 -7.5px;
}
header .row .col-12 {
  padding: 0 7.5px;
}
.navigation,
.navigation ul,
.navigation ul li,
.navigation ul li a {
  list-style: none;
  line-height: 0;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  flex: 0 0 72%;
}

.navigation ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.navigation:after,
.navigation > ul:after {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.navigation > ul > li {
  display: table-cell;
  width: 1%;
}

.navigation > ul > li > a {
  color: var(--color1);
  display: block;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  padding: 7px 8px;
  white-space: nowrap;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  overflow: hidden;
  text-transform: uppercase;
}

.navigation ul li:first-child a {
  margin-left: 0;
}

.navigation ul li:last-child a {
  margin-right: 0;
}

.navigation > ul > li.active > a:hover:before,
.navigation > ul > li.active > a:focus:before,
.navigation > ul > li.active > a:active:before {
  display: none;
}
.navigation ul ul {
  position: absolute;
  left: -9999px;
  top: 40px;
  width: 200px;
  z-index: 999;
  opacity: 0;
  -webkit-transition: top 0.2s ease, opacity 0.2s ease-in;
  -o-transition: top 0.2s ease, opacity 0.2s ease-in;
  transition: top 0.2s ease, opacity 0.2s ease-in;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.navigation ul ul ul {
  width: auto;
}

.navigation.align-right ul ul {
  text-align: right;
}

.navigation.align-right > ul > li > ul::after {
  left: auto;
  right: 20px;
}
.navigation > ul > li:hover > ul {
  top: 37px;
  left: -25px;
  opacity: 1;
}
.navigation.align-right > ul > li:hover > ul {
  left: auto;
  right: 0;
}

.navigation ul ul ul {
  padding-top: 0;
}

.navigation.align-right ul ul ul {
  padding-right: 6px;
}

.navigation ul ul > li:hover > ul {
  left: 197px;
  top: 0;
  opacity: 1;
}

.navigation.align-right ul ul > li:hover > ul {
  left: auto;
  right: 100%;
  opacity: 1;
}

.navigation ul ul li a {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  padding: 0 10px 0 25px;
  line-height: 36px;
  width: 200px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.navigation ul li ul > li:hover > a {
  background-color: #f5f5f5;
}

.navigation ul ul li a::before {
  font: normal normal normal 10px/1 FontAwesome;
  content: '\f101';
  position: absolute;
  top: 14px;
  left: 10px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.navigation ul ul li:hover > a::before,
.navigation ul ul li > a:hover:before,
.navigation ul ul li > a:focus:before {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.navigation ul ul li.active > a::before {
  /* color: #fff; */
}

.header-right ul li {
  display: inline-block;
}
.header-main__right ul {
  margin: 0 -5px;
}
.header-main__right ul li {
  display: inline-block;
  padding: 0 5px;
}
.header-right__search input {
  border-radius: 100px;
  height: 44px;
  padding-left: 47px;
  font-size: 14px;
}
.header-right__search button {
  top: 0;
  left: 0;
  background: #ededf2;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider.owl-carousel .owl-dots .owl-dot span,
.main-blog.owl-carousel .owl-dots .owl-dot span {
  width: 7px;
  height: 16px;
  background-color: rgb(224, 224, 224);
  margin: 0 3px;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  border-radius: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.main-slider.owl-carousel .owl-dots .owl-dot.active span,
.main-blog.owl-carousel .owl-dots .owl-dot.active span {
  height: 24px;
  width: 7px;
  background-color: #222;
}

.section-block {
  margin-top: 60px;
}
.box-quality {
  background: #f5f0e6;
  border-radius: 4px;
  padding: 15px;
  height: 100%;
}
.box-quality__caption {
  width: 70%;
}
.box-quality__caption img {
  max-height: 80px;
}
.box-quality__caption h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--color2);
  font-size: 30px;
  margin-bottom: 10px;
}
.box-quality__caption p {
  color: #3a3a3c;
  font-size: 20px;
  font-weight: 500;
}

.section-block h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--color3);
}
.section-block span {
  font-weight: 500;
  font-size: 16px;
}
.wrap-product__filter .list-type ul {
  margin: 0 -20px;
}
.wrap-product__filter .list-type li {
  display: inline-block;
  padding: 0 20px;
}
.wrap-product__filter li a {
  color: #636366;
  font-size: 20px;

  position: relative;
  padding-bottom: 10px;
}
.wrap-product__filter li a.active,
.wrap-product__filter li a:hover {
  color: var(--color3);
}
.wrap-product__filter li a.active:after,
.wrap-product__filter li a:hover:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid var(--color3);
}
.wrap-product__filter li a img {
  height: 15px;
}

.box-product__img > a {
  position: relative;
}
.box-product a:hover img:first-child {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.box-product__img a img + img {
  top: 0;
  left: 0;
  height: 100%;
  z-index: 999;
  width: 100%;
}
.box-product__caption {
  padding: 15px;
}
.box-product__caption h4 a {
  color: var(--color4);
  font-size: 16px;
  font-weight: 400;
}
.box-product__caption .price-product span,
.box-product__caption .price-product {
  color: var(--color2);
  font-weight: 700;
  font-size: 17px;
}
.box-product__caption .price-product span + span,
.box-product__caption .price-product span + span span {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--color4);
  font-weight: 400;
}
.box-product__caption .price-product span + span {
  margin-left: 10px;
}

.list-promotion__box:hover .img img,
.box-blog:hover img,
.box-cat-product:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.filter-product__view {
  padding: 12px 24px;
  border: 1px solid var(--color3);
  font-weight: 500;
  gap: 3px;
}
.filter-product__view:hover {
  background-color: var(--color2);
  color: #fff;
  border: 1px solid #fff;
}
.wrap-policy__group {
  margin: 50px 0;
  display: grid;
  gap: 15px;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
}
.wrap-policy__group .box-policy:first-child {
  grid-column: 1 / span 2;
  text-align: center;
}
/* .wrap-policy__group .box-policy:first-child .box-policy__icon{
    margin-bottom: 15px;
} */
.box-policy {
  gap: 10px;
}
.box-policy__caption h4 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color2);
}
.box-policy__caption p {
  color: var(--color4);
}

.wrap-support .box-support {
  background-color: var(--bg-support);
  padding: 12px 24px;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
}
.wrap-support .box-support h5 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color4);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.wrap-support .box-support p {
  margin-bottom: 0;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #636366;
}
.wrap-support .box-support img {
  position: absolute;
  bottom: 0;
  left: 12px;
  height: 50px;
}
.wrap-promotion__block h4 {
  color: var(--color3);
  font-size: 24px;
  padding-bottom: 6px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.wrap-promotion__block h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--color3);
  width: 50px;
  height: 2px;
}
.list-promotion {
  display: grid;
  gap: 45px;
}
/* .list-promotion__box{
    margin: 0 -7.5px 35px;
} */
.list-promotion__box__img,
.list-promotion__box__caption {
  width: 50%;
  padding: 0 7.5px;
}

.list-promotion__box__img img {
  width: 100%;
  height: auto;
}
.list-promotion__box__caption h5 a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color4);
}
.list-promotion__box__caption .price-product,
.list-promotion__box__caption .price-product > span:first-child {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.list-promotion__box__caption .price-product > span + span {
  font-size: 16px;
  font-weight: 300;
  text-decoration: line-through;
  color: #949499;
}
.list-promotion__box__view {
  padding: 6px 24px;
  border: 1px solid var(--color3);
  font-weight: 500;
  font-size: 14px;
  color: var(--color3);
  display: inline-block;
  margin-top: 10px;
}
.list-promotion__box:hover .list-promotion__box__view {
  background-color: var(--color2);
  color: #fff;
  border-color: var(--color2);
}
.list-promotion__box__view i {
  font-size: 16px;
}
.box-banner {
  overflow: hidden;
  height: 100%;
}
.box-banner__img img {
  height: 100% !important;
  object-fit: cover;
}
.box-banner__caption {
  background: #ffffffa3;
  border-radius: 100%;
  padding: 86px 80px 61px 93px;
  top: -56px;
  left: -73px;
}
.box-banner__caption h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--color3);
}
.box-banner__caption p {
  font-size: 18px;
  color: var(--color4);
  max-width: 211px;
}
.box-banner__caption a {
  background-color: var(--color4);
  padding: 12px 24px;
  font-weight: 500;
  color: #fdfdfd;
  gap: 3px;
}
.box-banner__caption a:hover {
  background-color: var(--color2);
}

.wrap-blog {
  padding: 80px 0;
  background-color: #f5f4f3;
}

.wrap-blog__title p {
  font-weight: 500;
  font-size: 20px;
  color: var(--color3);
}
.wrap-blog__title h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--color3);
}

.box-blog__img {
  width: 40%;
}
.box-blog__img img {
  width: 100%;
}
.box-blog__caption {
  width: 60%;
  padding-left: 15px;
}
.box-blog__caption > p {
  text-transform: uppercase;
  color: var(--color4);
  font-size: 16px;
  margin-bottom: 5px;
}
.box-blog__caption h4,
.box-blog--archive h4 {
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 50px;
}
.box-blog__caption h4 a,
.box-blog--archive h4 a {
  color: #000;
  font-weight: 700;
  font-size: 18px;
}
.box-blog__caption .description {
  color: var(--color4);
  font-size: 16px;
}
.box-blog__caption > a {
  gap: 3px;
  color: var(--color3);
  font-weight: 500;
  font-size: 16px;
}

.box-contact__banner,
.box-contact__form {
  width: 50%;
}
.box-contact__banner img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  max-height: 800px;
}
.box-contact__form {
  background-color: #000;
  padding: 40px 40px 40px 70px;
  color: #fff;
}
.box-contact__form .contact-description img {
  max-height: 67px;
}
.box-contact__form .contact-description h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 450px;
}
.box-contact__form .preview ul li {
  list-style-image: url(../images/check.png);
  margin-bottom: 15px;
}
.frm-contact label {
  color: #b8b8bf;
  font-size: 18px;
}
.frm-contact input,
.frm-contact textarea,
.frm-contact input:focus,
.frm-contact textarea:focus {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color1);
  color: #fff;
  outline: none;
  box-shadow: none;
}
.frm-contact__preview {
  color: #949499;
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}
.frm-contact button {
  background-color: #fff;
  color: var(--color3);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 30px;
  padding: 12px 24px;
}

footer {
  background-color: #f8f8f8;
  padding: 56px 0 30px;
}
footer h4 {
  color: var(--color3);
  font-weight: 500px;
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}
footer h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  border-bottom: 2px solid var(--color3);
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color2);
  margin-bottom: 30px;
}
.footer-top__logo img {
  height: 70px;
}
.footer-top__short {
  font-weight: 500;
  font-size: 16px;
}
.footer-top__info p {
  color: var(--color4);
  font-size: 16px;
  margin-bottom: 7px;
}
.footer-top__soical {
  margin: 20px -7px 0;
  display: flex;
  align-items: center;
}
.footer-top__soical li {
  display: inline-block;
  padding: 0 7px;
}
.footer-top__soical li a {
  width: 34px;
  height: 34px;
  border: 1px solid #000;
  color: #000;
  border-radius: 100%;
}
.footer-top__menu ul {
  list-style: none;
}
.footer-bottom h5 {
  color: var(--color3);
  font-weight: 700;
  font-size: 20px;
}
.footer-bottom p {
  margin-bottom: 5px;
}
.footer-bottom p a {
  color: var(--color2);
}
.footer-top__statics p {
  margin-bottom: 7px;
  color: #636366;
  font-weight: 300;
  text-align: right;
}
.footer-top__statics p i {
  width: 25px;
  text-align: center;
}
.footer-top__statics p span {
  min-width: 155px;
  display: inline-block;
}
.footer-top__statics p span + span {
  min-width: 50px;
  display: inline-block;
}
.footer-top__statics p:first-child span + span {
  color: #34c759;
}
.footer-top__statics {
  margin-top: 70px;
}
/* --page--- */
.page-breadcrumb {
  background: var(--bg-breadcrumb) no-repeat center center;
  height: 300px;
  background-size: cover;
  position: relative;
}
.page-breadcrumb:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 40%);
  z-index: 1;
}
.page-breadcrumb .container {
  position: relative;
  z-index: 2;
}
.page-breadcrumb li,
.page-breadcrumb li.active {
  display: inline-block;
  color: #fff !important;
}
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumbs li a,
#page-breadcrumb span {
  color: #fff;
}
div.pagination ul.pagination span,
.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  background-color: var(--color2) !important;
}
body .pagination > li > a,
.pagination > li > span {
  border: solid 1px var(--color2) !important;
}
body .pagination > li > a {
  color: var(--color3);
}
.info-product .price-product {
  font-size: 25px;
  color: var(--color2);
  font-weight: 500;
  margin: 10px 0;
}
.info-product .price-product span + span {
  font-size: 18px;
  color: var(--color1);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 15px;
  display: inline-block;
}
.proudct-meta p {
  margin-bottom: 5px;
}
#add-item-form input {
  width: 150px;
  height: 36.5px;
}
#add-item-form button {
  background-color: var(--color3);
  color: #fff;
  padding: 7px 24px;
  margin-left: 10px;
  border: none;
}
#add-item-form button:hover,
#add-item-form button:focus,
#add-item-form button:active {
  outline: none;
  box-shadow: none;
  background-color: var(--color2);
}

.woocommerce-message {
  border-top-color: var(--color2) !important;
}
.woocommerce-message::before {
  color: var(--color2) !important;
}
.wc-block-cart__submit-container a,
button[name='woocommerce_checkout_place_order'] {
  color: #fff !important;
  background-color: var(--color3) !important;
}
.wc-block-cart__submit-container a:hover,
button[name='woocommerce_checkout_place_order']:hover {
  background-color: var(--color2) !important;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  max-width: 48% !important;
  padding: 0 !important;
}
.checkout.woocommerce-checkout label,
.checkout.woocommerce-checkout label + span,
#order_comments_field label + span {
  display: block;
  width: 100%;
}
#billing_country_field {
  display: none;
}
.woocommerce-checkout #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input + label {
  display: inline-block !important;
  width: auto;
}
.wrap-promotion__banner,
.wrap-promotion__banner img {
  height: 100%;
  object-fit: cover;
}
.footer-top__title-fb {
  text-align: left;
  left: 22%;
}
.header-sm {
  background-color: #fff;
  padding: 2px 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  display: none;
}
.header-sm .logo a img {
  height: 42px;
}
.header-sm ul {
  position: absolute;
  right: 71px;
  top: 8px;
}
.header-sm ul li {
  display: inline-block;
  padding: 0 5px;
}
.header-sm #frm-search {
  top: 35px;
  right: -5px;
  width: 300px;
  padding: 5px;
  background-color: #ffffffaa;
  border: solid 1px silver;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.header-sm #frm-search input {
  height: 38px;
}

.header-sm #frm-search button {
  top: 1px;
  right: 0;
  background-color: var(--color1);
  color: #fff;
  z-index: 99;
}
.swal2-popup .swal2-styled.swal2-confirm {
  background-color: var(--color3) !important;
}
.list-promotion__box__img span {
  top: 20px;
  right: 0;
  background-color: var(--color3);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 4px;
  color: #fdfdfd;
  font-size: 14px;
}
.form-contact button {
  background-color: var(--color3);
  color: #fff;
  border-radius: 4px;
  border: none;
}
.form-contact button:hover,
.form-contact button:focus,
.form-contact button:active {
  background-color: var(--color2);
  outline: none;
  box-shadow: none;
}
.box-blog--archive .box-blog__img,
.box-blog--archive .box-blog__caption {
  width: 100%;
}
.box-cat-product {
  box-shadow: 0 0 5px #0000001a;
  height: 100%;
}
.box-cat-product__caption {
  padding: 20px 20px 30px;
  background-color: #fff;
}
.box-cat-product__caption h4 {
  margin-bottom: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.box-cat-product__caption h4 a {
  color: var(--color3);
  font-weight: 600;
}
.box-cat-product__caption .description-cat {
  color: var(--color4);
  font-size: 16px;
  margin-bottom: 7px;
}
.box-cat-product__caption .view-more {
  font-weight: 500;
  background-color: var(--color2);
  padding: 12px 24px;
  color: #fff;
  display: inline-block;
}
#accordian {
  color: #fff;
  background: #fff;
  top: 95px;
  z-index: 1000;
}

.side-bar__title {
  color: #fff;
  background-color: var(--color1);
  font-size: 18px;
  padding: 10px 5px;
}

#accordian h3 {
  background: #fff;
}

#accordian h3 a {
  padding: 0 10px;
  font-size: 17px;
  line-height: 34px;
  display: block;
  color: #000;
  font-weight: 400;
  text-decoration: none;
}
#accordian h3 a:hover,
#accordian li.active h3 a,
#accordian ul li ul li.active > a,
#accordian li.current h3 a,
#accordian ul li ul li.current > a,
#accordian ul li ul li ul li.current a {
  color: var(--color2);
}

#accordian h3:hover {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

#accordian i {
  margin-right: 10px;
}

#accordian li {
  list-style-type: none;
  position: relative;
}
#accordian li span {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  z-index: 9;
}

#accordian ul ul li a,
#accordian h4 {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  line-height: 27px;
  display: block;
  padding: 5px 17px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  position: relative;
}

#accordian ul ul li a:not(.arrow):hover {
  border-left: 5px solid var(--color2);
}

#accordian ul ul {
  display: none;
}

#accordian li.active > ul {
  display: block;
}

#accordian ul ul ul {
  margin-left: 15px;
  border-left: 1px dotted var(--color2);
}
#accordian li a.arrow:after {
  content: '\f0da ';
  font-family: fontawesome;
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 17px;
}
#accordian li ul li a.arrow:after {
  right: 29px;
}

#accordian li.active a.arrow:after {
  content: '\f0d7 ';
}

#accordian li.active li a.arrow:after {
  content: '\f0da ';
}
#accordian li.active li.active a.arrow:after {
  content: '\f0d7 ';
}
.info-product__description ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.info-product__description li {
  width: 49%;
  padding-right: 25px;
}

.box-side__advise {
  gap: 15px;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}
.box-side__advise h2,
.box-side__advise h3,
.box-side__advise h4,
.box-side__advise h5,
.box-side__advise h6 {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
}
.box-side__advise a.hotline {
  color: #222;
  font-size: 24px;
}
.box-side__advise a.contact {
  color: var(--color2);
}
.box-side__advise .icon {
  height: 55px;
  width: 55px;
  border: 3px solid #eaf2de;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-side__advise .icon i {
  font-size: 32px;
  color: var(--color2);
}
.box-side__choose {
  background-color: #fff4de;
  border: 1px dashed #f6a623;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}
.box-side__choose h2,
.box-side__choose h3,
.box-side__choose h4,
.box-side__choose h5,
.box-side__choose h6 {
  margin-top: 0;
  font-size: 15px;
  color: #e52025;
}
.box-side__choose ul {
  padding-left: 20px;
}

.group-contact {
  box-shadow: 0 0 5px #0000001a;
  border: 1px solid #0000001a;
  height: 100%;
}
.group-contact__icon {
  text-align: center;
}
.group-contact__icon i {
  font-size: 54px;
  color: var(--color2);
  padding: 30px;
}
.group-contact__caption {
  padding: 15px 15px 25px;
}
.group-contact__caption h4 {
  font-size: 22px;
}
.group-contact__caption p {
  color: var(--color3);
}
.group-contact__caption a {
  background-color: var(--color2);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
}
.group-contact__icon a img {
  height: 65px;
  margin: 20px;
}
.group-brand {
  margin: 20px 0;
  border: 1px solid #d6d6d4;
  padding: 20px;
}
.group-brand__info {
  gap: 7px;
}
.map-brand a {
  background: #fff;
  border: 1px dotted #d6d6d4;
  border-radius: 22px;
  box-shadow: 0 0 10px #0a0a0a1a;
  display: inline-block;
  height: 44px;
  margin-bottom: 3px;
  padding: 9px 10px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-brand a i {
  color: var(--color2);
  font-size: 25px;
}
.page-store-content {
  line-height: 40px;
}
.page-store-form {
  border: 1px solid #d6d6d4;
  padding: 20px;
  max-width: 500px;
  margin: auto;
}
.frm-care button,
.frm-care button:hover,
.frm-care button:focus {
  background-color: var(--color2);
  padding: 7px 24px;
  border-radius: 4px;
  color: #fff;
  outline: none;
  box-shadow: none;
}

/* -menu-mega-- */
.navigation > ul > li.has-mega-menu:hover > ul {
  max-height: max-content;
  opacity: 1;
  visibility: visible;
  top: 30px;
}
.navigation > ul > li.has-mega-menu:hover > ul {
  max-height: max-content;
  pointer-events: all;
  opacity: 1;
  background-color: #fff;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.3);
}
.navigation ul .has-mega-menu ul {
  width: 100vw;
  position: fixed;
  top: 67px !important;
  left: 0 !important;
  padding: 30px 4%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 10px -15px;
  display: grid;
  z-index: 999;
  grid-template-columns: repeat(7, 1fr);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.has-mega-menu ul li a {
  overflow: visible;
}
.has-mega-menu ul > li {
  grid-column: span 2;
}
.has-mega-menu ul > li.menu-mega-thumbnail {
  grid-column: 7;
  order: 10; /* Đảm bảo div thứ 4 ở vị trí cuối cùng */
  grid-row: 1 / span 3;
}
.has-mega-menu ul > li:nth-child(4) a {
  padding: 0;
}
.navigation ul ul {
  left: 0 !important  ;
}
.navigation ul ul a {
  left: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.navigation ul ul > li:hover > ul {
  opacity: 1;
}

.has-mega-menu ul .mega-menu-item a::before {
  content: '';
}
.has-mega-menu ul .mega-menu-item a span {
  position: relative;
  z-index: 10;
}
.has-mega-menu ul .mega-menu-item span:hover::before {
  width: 100%;
}
.has-mega-menu ul .mega-menu-item a span::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  background-color: #000;
  z-index: 1;
  top: 80%;
  transition: width 0.3s ease-in-out;
}
.has-mega-menu ul .mega-menu-item a span:hover .item-thumbnail {
  opacity: 1;
  display: block;
}

.has-mega-menu ul > li.item-thumbnail {
  opacity: 1;
  visibility: visible;
  grid-column: 7;
  order: 10; /* Đảm bảo div thứ 4 ở vị trí cuối cùng */
  grid-row: 1 / span 3;
}
.has-mega-menu ul .item-thumbnail a span {
  display: none !important;
}
.has-mega-menu ul > li.item-thumbnail a img {
  opacity: 1;
  visibility: visible;
  position: initial;
  display: block;
  width: 100%;
}
.navigation ul ul {
  pointer-events: none;
}
.navigation ul:hover ul {
  /* pointer-events: all; */
}
.navigation ul li.has-mega-menu ul > li:hover > a {
  background-color: initial;
}
.image-mega-menu img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.navigation > ul > li:hover > ul {
  pointer-events: all;
}
.has-mega-menu ul > li a {
  background-color: initial !important;
  position: relative;
  overflow: visible !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.has-mega-menu ul > li a span:hover + img {
  opacity: 1;
  visibility: visible;
}
.has-mega-menu ul > li a img {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  right: -50%;
  transition: all 0.3s;
  z-index: 99;
  display: block !important;
}
.navigation ul ul li a img {
  display: none;
}
.has-mega-menu ul > li a img {
  object-fit: cover;
  width: 200px;
  height: 300px;
}
/* blog */
/* blog */
.page-title {
  margin-bottom: 30px;
}
/* support */
.wrap-support .item-support {
  transition: 0.4s all;
}
.wrap-support .item-support:hover {
  transform: translateY(-12px);
}
/* button-to-top */
#button-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 100px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button-to-top::after {
  content: '\f077';
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}
#button-to-top:hover {
  cursor: pointer;
  background-color: #333;
}
#button-to-top:active {
  background-color: #555;
}
#button-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* customer */
.customer-item {
  width: 25%;
  transition: all 0.3s;
}
.customer-item:hover {
  opacity: 0.8;
}
/* video */
.section-top-hot .title-video {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
}
.section-top-hot .subtitle-video {
  font-size: 18px;
  line-height: 1.5;
}
.section-top-hot .hot-video-pc {
  display: block;
}
.section-top-hot .hot-video-sp {
  display: none;
}
#add-item-form a:hover,
#add-item-form a:focus,
#add-item-form a:active {
  outline: none;
  box-shadow: none;
  background-color: var(--color2);
}
#add-item-form input {
  width: 150px;
  height: 36.5px;
}
#add-item-form a {
  background-color: var(--color3);
  color: #fff;
  padding: 7px 24px;
  margin-left: 10px;
  border: none;
}
#add-item-form a:hover,
#add-item-form a:focus,
#add-item-form a:active {
  outline: none;
  box-shadow: none;
  background-color: var(--color2);
}
.wrap-contact .button-request-zalo {
  width: max-content;
}
/*  */
.is-menu-category {
  background-color: #48484a;
  padding-left: 18px;
}
.is-menu-category > a > span {
  color: #fff;
}
.is-menu-category .fa-bars {
  color: #fff;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 7px;
  z-index: 9999;
  transform: translateY(-22%);
  font: normal normal normal 14px/1 FontAwesome;
}
.navigation ul ul ul {
  left: 197px !important;
}
.navigation ul ul > li:hover > ul > li {
  pointer-events: all;
}
/* heading */
@media screen and (max-width: 768px) {
  .heading-category {
    margin-top: 20px;
  }
  .single h1 {font-size: 1.5rem;}
  .single h2 {font-size: 1.2rem;}
}

a.text-underline {
    text-decoration: underline;
}