:root {
  --bg-header-top: #ebebeb;
  --bg-footer: #ebebeb;
  --bg-copyright: #ebebeb;
  --bg-body: #ffffff;
  --bg-menu: #ffffff;
  --bg-white: #ffffff;
  --color-main: #000000;
  --color-red: #e60023;
  --color-body: #343a40;
  --color-brown: #92161e;
  --color-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #dbb05a #f1f1f1;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #dbb05a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4facfe, #00f2fe);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #43e97b, #38f9d7);
}

body {
  font-family: "Google Sans", sans-serif;
  background-color: var(--bg-body);
  color: var(--color-body);
  font-size: 1rem;
  top: 0 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.grecaptcha-badge {
  display: none !important;
}

.line-clamp-1 {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.maintenance {
  width: 100%;
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 10px 0px;
  z-index: 10000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
}

.header {
  position: relative;
  background: transparent;
}

.header__top {
  padding: 4px 0;
  background: var(--bg-header-top);
  font-size: 14px;
}
.header__top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__top-right {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header__top-right a {
  line-height: 1;
  display: inline-block;
}
.header__top-right img {
  transition: all 0.3s ease;
}
.header__top-right a:hover img {
  opacity: 0.7;
}
.header__top-left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.header__top-info {
  display: inline-flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}
.header__top-socials {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header__top-socials img {
  max-width: 24px;
}

.header__bottom {
  display: none;
}
.header__bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 20px;
  transition: color 0.3s ease;
  color: #333;
}
.header__cart i {
  font-size: 24px;
}

.cart__count {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: translate(50%, -50%);
  background-color: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}

.menu {
  background-color: var(--bg-menu);
  position: relative;
  z-index: 2;
}

.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.flex-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 100px;
  gap: 20px;
}
.menu-right ul {
  list-style: none;
}
.menu-right .level-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  width: 100%;
  gap: 1px;
}

.level-1 > li {
  flex: 1;
  text-align: center;
  position: relative;
}
.level-1 > li > a.menu-item {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-radius: 4px;
}
.level-1 > li:hover > a.menu-item, .level-1 > li.active > a.menu-item {
  background-color: #f2f2f2;
  color: #000;
}
.level-1 > li,
.level-1 .submenu li {
  position: relative;
}

.submenu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  z-index: 999;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  background: #fff;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease;
  text-align: left;
}
.submenu li a:hover {
  background: #f5f5f5;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.level-3,
.level-4,
.level-5 {
  top: 0;
  left: 100%;
}

.menu__icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.menu__icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 30px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.menu__icon:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
  color: #000;
}
.menu__icon i {
  pointer-events: none;
}
.menu__icon--cart:hover .menu__cart-count {
  transform: scale(1.08);
}

.menu__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #ff4d4f;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
  transition: transform 0.2s ease;
}

.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.menu-style-one {
  padding: 10px 0;
}

.menu-style-two {
  padding: 10px 0;
  display: none;
}
.menu-style-two .menu-right {
  margin-left: 0px;
}

.menu__icon--user {
  position: relative;
  cursor: pointer;
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 16px;
  color: #333;
  justify-content: center;
  align-items: center;
}
.menu__icon--user .avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.menu__icon--user:hover .dropdown-user-menu {
  display: block;
}

.dropdown-user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  display: none;
  z-index: 9999;
}
.dropdown-user-menu li {
  list-style: none;
}
.dropdown-user-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 15px;
  font-weight: normal;
}
.dropdown-user-menu li a:hover {
  background-color: #f2f2f2;
}

.slider {
  position: relative;
  z-index: 0;
}
.slider .owl-dots {
  background: transparent;
}
.slider .owl-dots .owl-dot span {
  width: 36px;
  height: 3px;
  border-radius: 3px;
}
.slider .owl-dots .owl-dot.active span {
  background: #e60023;
}
.slider__item a img {
  display: block;
  width: 100%;
}
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding-left: 15px;
  padding-right: 15px;
}
.slider__btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.slider__btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.slider__btn i {
  font-size: 18px;
  color: #333;
}
.slider__btn.prev {
  left: 20px;
}
.slider__btn.next {
  right: 20px;
}

.product-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-menu li {
  line-height: 1.2;
  margin-left: 20px;
}
.product-menu li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-menu li a:hover {
  background: #f8f8f8;
  color: #c72323;
}

.slide img {
  padding: 20px 0px;
  width: 850px;
  height: 400px;
  border-radius: 4px;
  display: block;
}

.why__choice {
  padding: 60px 0px;
}
.why__choice-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.why__choice-item {
  width: calc(25% - 18px);
  padding: 20px;
  background-color: #fff;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why__choice-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.why__choice-item:hover h3 a {
  color: #e60023;
}
.why__choice-item .thumb {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  overflow: hidden;
}
.why__choice-item .thumb img {
  max-width: 50%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.why__choice-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why__choice-item h3 a {
  color: #222;
  text-decoration: none;
}
.why__choice-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  text-align: center;
}

.banner1 {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.news-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.news-video {
  flex: 1;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.news-list {
  width: 400px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.news-header h3 {
  color: #c72323;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.view-all {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}
.view-all i {
  margin-left: 5px;
  font-size: 12px;
}

.news-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.news-item:last-child {
  border-bottom: none;
}

.news-image {
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 8px;
}

.news-category {
  color: #c72323;
  font-size: 13px;
}

.news-date {
  color: #666;
  font-size: 13px;
}

.news-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}
.floating-contact a {
  width: 45px;
  height: 45px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 20px;
}

.scroll-circle {
  position: fixed;
  right: 20px;
  bottom: 140px;
  width: 50px;
  height: 50px;
  z-index: 999;
  cursor: pointer;
}
.scroll-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-circle .bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 5;
}
.scroll-circle .progress {
  fill: none;
  stroke: #007bff;
  stroke-width: 5;
  stroke-dasharray: 163.36;
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #007bff;
  font-size: 16px;
  pointer-events: none;
}

.contact-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 0px;
  background: #fff;
}

.contact-btn {
  background: #ffd700;
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.contact-btn i {
  font-size: 16px;
}

.footer {
  background-color: var(--bg-footer);
}
.footer__main {
  padding: 60px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__title h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo a {
  display: block;
}
.footer__text {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}
.footer__text ul {
  margin-left: 17px;
}
.footer__links {
  list-style: none;
  padding: 0;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}
.footer__links a:hover {
  color: #e60023;
}
.footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer__socials a {
  color: #666;
  font-size: 16px;
}
.footer__map {
  position: relative;
  min-height: 300px;
}
.footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.footer__copyright {
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-copyright);
  font-size: 14px;
}
.footer__copyright-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.footer__copyright-author {
  text-decoration: none;
  color: var(--color-black);
  font-weight: bold;
}
.footer__copyright-author:hover {
  color: var(--color-brown);
}

.btn-loading {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-loading span {
  display: none;
}
.btn-loading.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn-loading.is-loading span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
  animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
  100% {
    transform: rotate(360deg);
  }
}
.notyf {
  padding: 15px;
  z-index: 9999999999 !important;
}
.notyf__message {
  white-space: nowrap;
}
.notyf__toast {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 20px 12px;
  font-size: 14px;
  font-weight: 500;
  max-width: 100%;
}
.notyf__ripple {
  opacity: 0.12;
}
.notyf__wrapper {
  padding: 4px 8px;
}
.notyf__dismiss-btn {
  background: transparent;
  opacity: 1;
  cursor: pointer;
  height: 26px;
  width: 26px;
  border-radius: 4px !important;
}
.notyf__dismiss {
  height: 26px;
  width: 26px;
  border-radius: 4px !important;
}

.heading__title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding: 0 15px;
}
.heading__title h2 {
  font-size: 28px;
  color: #e60023;
  position: relative;
  display: inline-block;
  padding: 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.heading__title h2 span {
  position: relative;
  z-index: 2;
}
.heading__title h2::before, .heading__title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: #e60023;
  transform: translateY(-50%);
}
.heading__title h2::before {
  left: -70px;
}
.heading__title h2::after {
  right: -70px;
}
.heading__title p {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-style: italic;
  opacity: 0.85;
}

.partner {
  padding: 60px 0;
  background-color: #f9f9f9;
  position: relative;
}
.partner__wrapper {
  padding: 10px 0;
  position: relative;
}
.partner-item {
  text-align: center;
  transition: transform 0.3s ease;
}
.partner-item a {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.partner-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  filter: grayscale(20%);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.partner-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  filter: grayscale(0%);
}
.partner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}
.partner__nav-prev {
  left: 10px;
}
.partner__nav-next {
  right: 10px;
}
.partner__nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.partner__nav-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.partner__nav-btn i {
  font-size: 16px;
  color: #333;
}

.product__hot {
  padding: 60px 0px;
  position: relative;
}
.product__hot-wrapper {
  position: relative;
}
.product__hot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding-left: 16px;
  padding-right: 16px;
}
.product__hot-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.product__hot-nav-btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.product__hot-nav-btn i {
  font-size: 16px;
  color: #333;
}
.product__hot-prev {
  left: 10px;
}
.product__hot-next {
  right: 10px;
}

.product__item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.product__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.product__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product__item:hover .thumb img {
  transform: scale(1.1);
}
.product__item:hover .product__item-overlay {
  opacity: 1;
  visibility: visible;
}
.product__item:hover .add-to-cart-btn {
  transform: translateY(0);
}
.product__item:hover .info h3 a {
  color: #ff6b35;
}
.product__item-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.product__item-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.product__item-info {
  padding: 16px;
}
.product__item-info h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
.product__item-info h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.product__item-info p {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.product__item-contact {
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}
.product__item-price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.product__item-price-sale {
  color: #ff6b35;
  font-weight: 700;
  font-size: 18px;
}
.product__item-price-original {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 500;
}
.product__item-price-regular {
  color: #333;
  font-weight: 700;
  font-size: 18px;
}
.product__item-name {
  text-align: center;
}
.product__item-desc {
  text-align: center;
}

.product__item-wrapper {
  position: relative;
  overflow: hidden;
}

.product__item .add-to-cart-btn {
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.product__item .add-to-cart-btn:hover {
  background: linear-gradient(45deg, #ff8c42, #ff6b35);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.product__item .add-to-cart-btn i {
  font-size: 16px;
}

.product-category {
  padding: 60px 0;
}

.news__index {
  padding: 60px 0;
}

.news__owl .owl-dots .owl-dot span {
  width: 36px;
  height: 3px;
  border-radius: 3px;
}
.news__owl .owl-dots .owl-dot.active span {
  background: #e60023;
}

.news__item-index {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news__item-index:hover {
  transform: translateY(-4px);
}
.news__item-index:hover h3 a {
  color: #e60023;
}
.news__item-index .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news__item-index .info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.news__item-index h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.news__item-index h3 a {
  color: #333;
  text-decoration: none;
}
.news__item-index p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: auto;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.btn-read-more .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
  font-size: 16px;
}
.btn-read-more:hover {
  color: #007bff;
}
.btn-read-more:hover .arrow {
  transform: translateX(6px);
}

#menu-mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#mmenu {
  display: none;
}

.mm-menu_opened {
  display: block !important;
}

#mmenu a.active span {
  font-weight: 600;
}

#menu-mobile > .mmenu-extras {
  display: none;
}

.mm-panel .mmenu-extras {
  display: block;
  padding: 15px;
}

.mmenu-footer .support-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-size: 14px;
}
.mmenu-footer .support-info p {
  margin: 5px 0;
  color: #333;
}
.mmenu-footer .support-info a {
  color: #007bff;
  text-decoration: none;
}

.menu-bar-res {
  min-height: 40px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-bar-res__logo {
  flex-shrink: 0;
  max-width: 140px;
}
.menu-bar-res__logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.menu-bar-res__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

#hamburger {
  display: block;
  width: 30px;
  height: 22px;
  position: relative;
  text-decoration: none;
}
#hamburger::before, #hamburger::after,
#hamburger span {
  background: var(--color-body);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}
#hamburger::before {
  top: 0;
}
#hamburger span {
  top: 10px;
}
#hamburger::after {
  top: 20px;
}

.mm-wrapper_opening #hamburger::before, .mm-wrapper_opening #hamburger::after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger::before {
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger::after {
  transform: rotate(-45deg);
}

.mm-wrapper__blocker {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mmenu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.mmenu-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}
.mmenu-icon:hover {
  background-color: #e8e8e8;
  transform: scale(1.05);
}
.mmenu-icon:active {
  transform: scale(0.98);
}

.mobile-language-title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 550;
  color: #333;
}

.mobile-language-options {
  display: flex;
  gap: 10px;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.mobile-lang-btn .flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 12px;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
}

.language__pc {
  display: flex;
  justify-content: end;
  gap: 6px;
  margin-right: 10px;
}
.language__pc--item img {
  width: auto;
  max-width: 24px;
}

.page__static--section {
  padding-top: 10px;
  padding-bottom: 30px;
}

.page__title {
  font-size: 28px;
  color: #e60023;
  position: relative;
  letter-spacing: 1px;
  text-align: center;
  margin: 16px 0;
}

.breadcrumb-nav {
  margin: 16px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
}

.breadcrumb-link {
  color: #333;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s ease-in-out;
}
.breadcrumb-link:hover {
  color: #e63946;
  background-color: transparent;
}

.breadcrumb-current {
  font-weight: bold;
  color: #333;
  padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
  color: #999;
}

.empty-state {
  text-align: center;
  padding-bottom: 60px;
  padding-top: 24px;
}

.empty-content i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}
.empty-content h3 {
  color: #666;
  margin-bottom: 10px;
}
.empty-content p {
  color: #999;
  margin-bottom: 30px;
}
.empty-content a {
  color: #333;
}

.fixed-social {
  position: fixed;
  bottom: 4rem;
  right: 0.25rem;
  padding: 0.5rem;
  z-index: 1000;
}
.fixed-social .link-item {
  position: relative;
  margin-bottom: 0.625rem;
}
.fixed-social .link-item span {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0.625rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 0;
  font-size: 3.75rem;
  border: 3px solid rgb(56, 32, 41);
  border-right: 0;
}
.fixed-social .social-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.625rem;
  background-color: rgb(146, 22, 30);
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.fixed-social .social-button:hover {
  transform: scale(1.1);
}
.fixed-social .social-button img {
  width: 1.75rem;
  height: auto;
}

.social-button svg {
  width: 24px;
  height: 24px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
  }
  to {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
  }
}
.pulse-1 {
  animation: pulse 0.8s infinite;
}

.pulse-2 {
  animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
  animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
  animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
  position: relative;
}

.phone-sub {
  position: absolute;
  right: calc(100% + 12px);
  min-width: 150px;
  max-width: 250px;
  background-color: rgb(146, 22, 30);
  border-radius: 6px;
  bottom: 0px;
  transform-origin: bottom right;
  transform: scale(0);
  transition: 0.3s all;
}
.phone-sub.open {
  transform: scale(1);
}

.phone-sub-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  border-bottom: 1px solid #e3e3e3;
  color: #fff;
}
.phone-sub-item:last-child {
  border-bottom: 0px;
}
.phone-sub-item i {
  color: #fff;
  transform: rotate(90deg);
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.phone-sub-item .icon {
  color: var(--color-01);
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.phone-sub-item .icon svg {
  fill: var(--color-01);
}
.phone-sub-item:hover span:not(.icon) {
  opacity: 0.6;
}

.skiptranslate {
  display: none;
}

#google_language_translator {
  clear: both;
  width: auto !important;
  text-align: right;
  display: none;
}

.go__top {
  position: fixed;
  bottom: 15px;
  right: 12px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms linear;
  background: transparent;
}
.go__top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go__top::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  font-weight: 900;
  color: var(--color-orange);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 400ms linear;
}
.go__top-svg {
  fill: none;
}
.go__top-svg path {
  stroke: var(--color-brown);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 400ms linear;
}

.coppy_right {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.coppy_right:hover {
  color: #0800e6;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(1, 129, 248, 0.7);
  transform: translateY(-2px);
}

.content__detail {
  font-size: 16px;
}
.content__detail h1,
.content__detail h2,
.content__detail h3,
.content__detail h4,
.content__detail h5,
.content__detail h6 {
  font-weight: bold;
  color: var(--color-main);
}
.content__detail h1 {
  font-size: 1.5rem;
}
.content__detail h2 {
  font-size: 1.5rem;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.content__detail h3 {
  font-size: 1.2rem;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}
.content__detail h4 {
  font-size: 1.124rem;
}
.content__detail h5,
.content__detail h6 {
  font-size: 1rem;
}
.content__detail img {
  margin-bottom: 15px;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}
.content__detail table,
.content__detail table td {
  border: 1px solid #ccc;
}
.content__detail table td {
  padding: 15px;
}
.content__detail ul li {
  margin-left: 17px;
}
.content__detail ul li:not(:last-child) {
  margin-bottom: 15px;
}
.content__detail p {
  margin-bottom: 10px;
}