@charset "UTF-8";
:root {
  --main-color:#eab11b;
  --hover-color:#eab11b;
  --font-size: 14px;
  --font-size-sm: 13px;
  --margin-news: 10px;
  --margin-products: 10px ;
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Black";
  src: url("../fonts/Lato-Black.eot");
  src: url("../fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Black.woff2") format("woff2"), url("../fonts/Lato-Black.woff") format("woff"), url("../fonts/Lato-Black.ttf") format("truetype"), url("../fonts/Lato-Black.svg#Lato-Black") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato-Bold.eot");
  src: url("../fonts/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype"), url("../fonts/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Italic";
  src: url("../fonts/Lato-Italic.eot");
  src: url("../fonts/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Italic.woff2") format("woff2"), url("../fonts/Lato-Italic.woff") format("woff"), url("../fonts/Lato-Italic.ttf") format("truetype"), url("../fonts/Lato-Italic.svg#Lato-Italic") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Medium";
  src: url("../fonts/Lato-Medium.eot");
  src: url("../fonts/Lato-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Medium.woff2") format("woff2"), url("../fonts/Lato-Medium.woff") format("woff"), url("../fonts/Lato-Medium.ttf") format("truetype"), url("../fonts/Lato-Medium.svg#Lato-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.eot");
  src: url("../fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-Semibold";
  src: url("../fonts/Lato-Semibold.eot");
  src: url("../fonts/Lato-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Semibold.woff2") format("woff2"), url("../fonts/Lato-Semibold.woff") format("woff"), url("../fonts/Lato-Semibold.ttf") format("truetype"), url("../fonts/Lato-Semibold.svg#Lato-Semibold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

figure {
  margin-bottom: 0;
}

input,
textarea,
button {
  outline: none;
  border: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}
img:not([src]) {
  visibility: hidden;
}
img.lazy {
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img.initial, img.loaded, img.error {
  opacity: 1;
}
img.img-responsive, img.img-fluid {
  width: 100% !important;
  height: auto;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

*::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

*::-webkit-scrollbar-thumb:hover {
  background: #333;
}

b,
strong {
  font-weight: 600;
}

body {
  font-family: Roboto-Regular;
  margin: 0;
  line-height: 1.5em;
  font-size: var(--font-size);
  color: #333;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  body {
    font-size: var(--font-size-sm);
  }
}

.wrapper {
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .wrapper {
    max-width: 570px;
  }
}
@media screen and (min-width: 767px) {
  .wrapper {
    max-width: 750px;
  }
}
@media screen and (min-width: 991px) {
  .wrapper {
    max-width: 1330px;
  }
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
  display: none;
}

.wrap-clear:after {
  display: block;
  content: "";
  clear: both;
}

.full {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

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

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

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

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

.line-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  word-break: break-word;
}

.line-6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  word-break: break-word;
}

.line-7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  word-break: break-word;
}

.line-8 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  word-break: break-word;
}

.line-9 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
  word-break: break-word;
}

.line-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  word-break: break-word;
}

p.validator-feedback {
  margin-bottom: 0;
  margin-top: 8px;
  font-style: italic;
  color: var(--bs-danger);
}

.tags-title {
  transform: rotateZ(-90deg);
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  white-space: nowrap;
}

.tags-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tags-list a {
  height: 26px;
  line-height: 24px;
  position: relative;
  font-size: 14px;
  margin-left: 20px;
  padding: 0 10px 0 12px;
  background: var(--warning);
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  transition: 0.4s;
}
.tags-list a::before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent var(--warning) transparent transparent;
  border-style: solid;
  border-width: 12px 12px 14px 0;
  transition: 0.4s;
}
.tags-list a::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  float: left;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}
.tags-list a:hover {
  background: var(--danger);
}
.tags-list a:hover::before {
  border-color: transparent var(--danger) transparent transparent;
}
@media screen and (max-width: 991px) {
  .tags-list a {
    margin-bottom: 5px;
  }
}

.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}

.hidden {
  display: none;
}

.f-ui-container {
  --primary: #10c6a8;
  --primary-glow: #10c6a84D;
  /* 30% opacity */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-float: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  --text-dark: #1e293b;
  --transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 990;
  pointer-events: none;
}

.f-ui-container * {
  box-sizing: border-box;
  pointer-events: auto;
}

.f-social-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition);
  position: relative;
  z-index: 10;
}

.f-toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px var(--primary-glow);
}

.f-toggle-btn:active {
  transform: scale(0.95);
}

.f-toggle-btn svg {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: var(--transition);
}

.f-toggle-btn .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.f-social-group.is-active .f-toggle-btn {
  background: #ff4757;
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.f-social-group.is-active .f-toggle-btn .icon-chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.f-social-group.is-active .f-toggle-btn .icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.f-social-menu {
  position: absolute;
  bottom: calc(100% + 16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: var(--transition);
  transform-origin: bottom center;
}

.f-social-group.is-active .f-social-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.f-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
}

.f-icon-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.f-icon-btn:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 15px var(--primary-glow);
}

.f-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 8px 15px rgba(24, 119, 242, 0.3);
}

.f-ig:hover {
  background: #E4405F;
  border-color: #E4405F;
  box-shadow: 0 8px 15px rgba(228, 64, 95, 0.3);
}

.f-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3);
}

.f-tiktok:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.f-zalo:hover {
  background: #0068FF;
  border-color: #0068FF;
  box-shadow: 0 8px 15px rgba(0, 104, 255, 0.3);
}

.f-phone:hover {
  background: #00C853;
  border-color: #00C853;
  box-shadow: 0 8px 15px rgba(0, 200, 83, 0.3);
}

.f-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--text-dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body, system-ui, sans-serif);
}

.f-icon-btn::after {
  content: "";
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--text-dark);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.f-icon-btn:hover::before,
.f-icon-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.f-btt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-float);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.f-btt.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.f-btt:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.f-btt-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.f-btt:hover .f-btt-icon {
  transform: translateY(-2px);
}

.f-btt-icon svg {
  width: 20px;
  height: 20px;
}

.f-progress-circle {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.f-progress-circle circle {
  fill: none;
  stroke-width: 3;
}

.f-progress-circle .f-bg {
  stroke: rgba(0, 0, 0, 0.05);
}

.f-progress-circle .f-progress-line {
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-dasharray: 138.2;
  stroke-dashoffset: 138.2;
  transition: stroke-dashoffset 0.1s linear;
}

@media screen and (max-width: 769px) {
  .f-ui-container {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    gap: 12px;
  }
  .f-toggle-btn {
    width: 50px;
    height: 50px;
  }
  .f-toggle-btn svg {
    width: 20px;
    height: 20px;
  }
  .f-btt {
    width: 44px;
    height: 44px;
  }
  .f-btt-icon svg {
    width: 18px;
  }
  .f-progress-circle circle {
    stroke-width: 2.5;
    r: 19;
    cx: 22;
    cy: 22;
  }
  .f-progress-circle {
    width: 44px;
    height: 44px;
    viewBox: 0 0 44 44;
    left: 1px;
    top: -3px;
  }
  .f-progress-circle .f-progress {
    stroke-dasharray: 119.38;
    stroke-dashoffset: 119.38;
  }
  .f-icon-btn::before,
  .f-icon-btn::after {
    display: none;
  }
}
.title-article {
  margin-bottom: 25px;
}
.title-article h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title-article p {
  font-style: normal;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}
.title-article p i {
  margin-right: 5px;
  color: #eab11b;
}
@media screen and (max-width: 991px) {
  .title-article h2 {
    font-size: 22px;
  }
}

.article iframe,
.article object {
  max-width: 100% !important;
}
.article table {
  max-width: 100% !important;
}
.article *:not(iframe):not(object):not(img) {
  max-width: 100% !important;
  height: auto !important;
}
.article blockquote {
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}
@media screen and (max-width: 991px) {
  .article img {
    max-width: 100% !important;
    height: auto !important;
  }
}

.nav-article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  margin-top: 30px;
  background: #f3f4f6;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
}
.nav-article .nav-article_left {
  max-width: calc(100% - 200px);
  color: #4b5563;
}
.nav-article .nav-article_left span {
  font-weight: 700;
  color: #1f2937;
}
.nav-article .nav-article_right {
  max-width: 200px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.nav-article .nav-article_right span {
  margin: 0 15px;
  color: #d1d5db;
}
.nav-article .nav-article_right a {
  font-weight: 600;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}
.nav-article .nav-article_right a.disabled {
  pointer-events: none;
  opacity: 0.4;
}
.nav-article .nav-article_right a svg {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  transition: transform 0.2s ease;
}
.nav-article .nav-article_right a:hover {
  color: #eab11b;
}
.nav-article .nav-article_right a:hover .arrow-left {
  transform: translateX(-3px);
}
.nav-article .nav-article_right a:hover .arrow-right {
  transform: translateX(3px);
}
@media screen and (max-width: 991px) {
  .nav-article {
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
  }
  .nav-article .nav-article_left {
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
}

.card-right-article {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  margin-bottom: 30px;
}
.card-right-article .card-right-article-title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #e5e7eb;
}
.card-right-article .card-right-article-title h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.card-right-article .card-right-article-title h4 span {
  position: absolute;
  right: 0;
  top: 0;
  color: #9ca3af;
  transition: transform 0.3s ease;
}
.card-right-article .card-right-article-title h4:hover span {
  color: #eab11b;
}
.card-right-article .card-right-article-list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card-right-article .card-right-article-list.card-lated-article-list {
  max-height: 315px;
  overflow-y: auto;
}
.card-right-article .card-right-article-list.card-lated-article-list > ul > li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.card-right-article .card-right-article-list.card-lated-article-list > ul > li:first-child {
  padding-top: 0;
}
.card-right-article .card-right-article-list.card-lated-article-list > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.card-right-article .card-right-article-list.card-category-article-list {
  max-height: 415px;
  overflow-y: auto;
}

.card-sticky {
  position: sticky;
}

.category-article-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-article-group li {
  padding: 2px 0;
}
.category-article-group li a {
  display: block;
  padding: 8px 15px;
  border-radius: 50px;
  /* Dạng Pill */
  color: #4b5563;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.category-article-group li a:hover {
  background-color: rgb(253.32, 248.76, 236.76);
  color: #eab11b;
  padding-left: 20px;
}
.category-article-group li.has-child {
  position: relative;
}
.category-article-group li.has-child.is-open > a {
  color: #eab11b;
  background-color: rgb(253.32, 248.76, 236.76);
}
.category-article-group li.has-child.is-open > .toggle-icon {
  background-color: #eab11b;
  color: #fff;
  border-color: #eab11b;
  transform: rotate(180deg);
}
.category-article-group li.has-child .toggle-icon {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 10px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-article-group li.has-child .toggle-icon:hover {
  color: #eab11b;
  border-color: #eab11b;
}
.category-article-group li ul {
  margin: 5px 0 5px 20px;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgb(250.8, 239.4, 209.4);
}
.category-article-group li ul > li {
  padding: 2px 0;
}
.category-article-group li ul > li a {
  font-size: 13px;
  padding: 6px 15px;
}

.wow {
  visibility: hidden;
}

.hover-scale img {
  transition: 0.4s;
}
.hover-scale:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}

.img-zoom {
  overflow: hidden;
  position: relative;
}
.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.img-zoom:hover img {
  transform: scale(1.08);
}

.img-shine {
  overflow: hidden;
  display: block;
  position: relative;
}
.img-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: all 1s ease;
}
.img-shine:hover::before {
  left: 120%;
}

.social-share {
  padding: 12px;
  background: #eee;
  border-radius: 10px;
}
.social-share .social-share_title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.social-share .social-share_title svg {
  margin-bottom: 1px;
  margin-right: 8px;
}

.pagination-wrapper {
  margin: 1.5rem 0;
}
.pagination-wrapper .badge-info {
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 20px;
  color: #64748b;
  font-weight: 500;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  display: inline-block;
}
.pagination-wrapper .badge-info strong {
  color: #3b82f6;
}
.pagination-wrapper .pagination {
  gap: 8px;
}
.pagination-wrapper .pagination .page-item .page-link {
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 13px;
  margin: 0;
}
.pagination-wrapper .pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(16, 198, 168, 0.25);
}
.pagination-wrapper .pagination .page-item.disabled .page-link {
  background: #f8fafc;
  color: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.pagination-wrapper .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, rgb(240.4518072289, 200.9638554217, 97.0481927711) 0%, #eab11b 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(234, 177, 27, 0.35);
  transform: scale(1.05);
  z-index: 2;
}
.pagination-wrapper .pagination .page-item:not(.disabled):not(.active) .page-link:hover {
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.4);
}

.block-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  transition: 0.8s;
}

.search-wrap {
  position: relative;
  color: #fff;
  height: 100vh;
}

.form-search-d {
  position: relative;
  width: 0;
  transition: 0.8s;
}
.form-search-d.active {
  width: 70%;
}
@media screen and (max-width: 991px) {
  .form-search-d.active {
    width: calc(100% - 50px);
  }
}

.form-search-d input {
  width: 100%;
  height: 45px;
  outline: none;
  color: #ffffff;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 0 30px 0 10px;
  font-size: 12px;
}
.form-search-d input::placeholder {
  color: #fff;
  font-size: 12px;
}

.form-search-d button {
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: 14px;
  height: 100%;
  color: #fff;
}

.close-form-search {
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 25px;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .close-form-search {
    font-size: 20px;
  }
}

.close-form-search:hover {
  background: #333333;
}

/* ========================= SEARCH ========================= */
.search-btn {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.search-btn i {
  color: #363636;
  font-size: 18px;
}

.section-breadcrumb {
  background: rgba(234, 177, 27, 0.05);
  padding: 10px 0;
  margin-bottom: 20px;
}
.section-breadcrumb .breadcrumb {
  padding: 0;
  margin: 0;
  background-color: inherit;
  border-radius: 0;
}
.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 7 Pro";
}

#footermap {
  padding-bottom: 30px;
}
#footermap iframe {
  display: block;
  width: 100%;
  height: 370px;
  box-shadow: 0px 0px 10px rgba(34, 34, 34, 0.15);
  border-radius: 12px;
}
#footermap::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(234, 177, 27, 0) 0%, #b17802 49.52%, rgba(234, 177, 27, 0) 100%);
  opacity: 0.35;
  border-radius: 10px;
}

#footer {
  position: relative;
  background: url("../images/photo/bg-footer.png") no-repeat center center;
  background-size: cover;
  color: #1d1400;
}

.footer-main {
  padding: 40px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-line {
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background: linear-gradient(270deg, rgba(234, 177, 27, 0) 0%, #b17802 49.52%, rgba(234, 177, 27, 0) 100%);
  opacity: 0.35;
  border-radius: 10px;
}

.title-footer h2 {
  font: 20px "Lato-Bold";
  text-transform: uppercase;
  line-height: 24px;
  color: #1d1400;
  margin-bottom: 20px;
}

.footer-items ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-items li a {
  display: block;
  font: 16px "Lato-Medium";
  line-height: 25px;
  color: #1d1400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-items li a:hover {
  color: var(--hover-);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-name h2 {
  font: 34px "Lato-Black";
  text-transform: uppercase;
  line-height: 46px;
  color: #1d1400;
}
.footer-name h2 span {
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-infor {
  flex: 0 0 428px;
  -ms-flex: 0 0 428px;
  max-width: 428px;
}

.footer-terms {
  flex: 0 0 162px;
  -ms-flex: 0 0 162px;
  max-width: 162px;
}

.footer-fanpage {
  flex: 0 0 310px;
  -ms-flex: 0 0 310px;
  max-width: 310px;
}
.footer-fanpage iframe {
  box-shadow: 0px 0px 10px rgba(34, 34, 34, 0.15);
  border-radius: 12px;
}

.social-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerPowered {
  padding: 10px 0;
  background: transparent;
  position: relative;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright .footer-left {
  font: 14px "Lato-Regular";
  color: #1d1400;
  line-height: 25px;
  position: relative;
}
.footer-copyright .footer-left span {
  font: 14px "Lato-Bold";
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 991px) {
  #footermap {
    padding-bottom: 20px;
  }
  #footermap iframe {
    height: 300px;
    border-radius: 10px;
  }
  #footer {
    background-position: center center;
  }
  .footer-main {
    padding: 30px 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-infor,
  .footer-terms,
  .footer-fanpage {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .footer-fanpage iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }
  .footer-logo {
    gap: 12px;
  }
  .footer-name h2 {
    font-size: 22px;
    line-height: 36px;
  }
  .title-footer h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .footer-items ul {
    gap: 10px;
  }
  .footer-items li a {
    font-size: 15px;
    line-height: 22px;
  }
  .footer-line {
    margin: 20px 0;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright .footer-left {
    font-size: 13px;
    line-height: 22px;
  }
  .footer-copyright .footer-left span {
    font-size: 13px;
  }
}
.header-mobile {
  display: none;
  background-color: var(--main-color);
  padding: 5px 0;
}
@media screen and (max-width: 991px) {
  .header-mobile {
    display: block;
  }
}
.header-mobile .header-mobile_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile .header-mobile_inner .header-mobile__search {
  flex: 0 0 calc(100% - 50px);
  -ms-flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
}
.header-mobile .header-mobile_inner .header-mobile__search form {
  display: flex;
}
.header-mobile .header-mobile_inner .header-mobile__search form button {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  padding: 0;
  background: transparent;
}
.header-mobile .header-mobile_inner .header-mobile__search form button svg {
  width: 28px;
  height: 28px;
}
.header-mobile .header-mobile_inner .header-mobile__search form input {
  width: calc(100% - 46px);
  max-width: calc(100% - 46px);
  margin-right: 10px;
  max-height: 36px;
}

.contact-top-mobile {
  display: none;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  .contact-top-mobile {
    display: block;
  }
}

.contact-top-mobile_inner marquee {
  display: flex;
  align-items: center;
}

.contact-center-mobile {
  padding: 6px 0;
  display: none;
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  .contact-center-mobile {
    display: block;
  }
}
.contact-center-mobile .contact-center-mobile_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-center-mobile__link a {
  font-size: 15px;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
}
.contact-center-mobile__link a:first-child {
  margin-right: 7px;
  background-color: #da1c20;
}
.contact-center-mobile__link a:last-child {
  background-color: #3281f4;
}
.contact-center-mobile__link a img {
  max-width: 18px;
  max-height: 18px;
  margin-right: 5px;
}

#header.sticky .header-pc,
#header.sticky .header-mobile {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  animation-name: fadeInDown;
  animation-duration: var(--animate-duration);
}
#header.sticky .header-pc {
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .header-pc {
    display: none;
  }
}

/* ========================= HEADER ========================= */
.header-bottom-desktop {
  padding: 5px 0;
  background: #ffffff;
}

.header-logo {
  flex: 0 0 241px;
  -ms-flex: 0 0 241px;
  max-width: 241px;
  transition: all 0.35s ease;
  transform-origin: center left;
}
.sticky .header-logo {
  transform: scale(0.6);
  margin: -15px 0;
}

.header-pc_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-pc_inner .mega-menu > ul {
  display: flex;
  align-items: center;
  gap: 70px;
}
.header-pc_inner .mega-menu > ul > li > a {
  position: relative;
  display: inline-block;
  font: 14px "Lato-Bold";
  text-transform: uppercase;
  line-height: 17px;
  padding: 0;
  color: #1d1400;
  overflow: visible;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1d1400;
  transition: -webkit-text-fill-color 0.35s ease;
}
.header-pc_inner .mega-menu > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #eab11b 0%, #b17802 100%);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.header-pc_inner .mega-menu > ul > li > a:hover, .header-pc_inner .mega-menu > ul > li > a.active {
  -webkit-text-fill-color: transparent;
}
.header-pc_inner .mega-menu > ul > li > a:hover::after, .header-pc_inner .mega-menu > ul > li > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.control-owl button {
  position: absolute;
  z-index: 2;
  top: calc(50% - 18px);
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
.control-owl button.owl-prev {
  left: 0;
}
.control-owl button.owl-next {
  right: 0;
}

.dots-slideshow {
  position: absolute;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dots-slideshow .owl-dot {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
}
.dots-slideshow .owl-dot div {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 10px;
  line-height: 18px;
  color: #fff;
}
.dots-slideshow .owl-dot.active {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.slideshow:hover .control-owl button {
  opacity: 1;
  visibility: visible;
}
.slideshow:hover .control-owl button.owl-prev {
  left: 20px;
}
.slideshow:hover .control-owl button.owl-next {
  right: 20px;
}

/* mmenu */
body.menu-open {
  overflow: hidden;
}

.mmenu-hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.mmenu-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.mmenu-hamburger.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.mmenu-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.mmenu-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mmenu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
  backdrop-filter: blur(2px);
}
.mmenu-overlay.active {
  display: block;
}

.mobile-mmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background: #fff;
  z-index: 999999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  will-change: transform;
}
.mobile-mmenu.no-transition {
  transition: none !important;
}
.mobile-mmenu.active {
  transform: translateX(0);
}
.mobile-mmenu .mmenu-header {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.mobile-mmenu .mmenu-header .mmenu-logo img {
  height: 40px;
  width: auto;
}
.mobile-mmenu .mmenu-header h3 {
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px;
  margin: 0;
}
.mobile-mmenu .mmenu-header .close-btn {
  font-size: 30px;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1;
}
.mobile-mmenu .mmenu-container {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}
.mobile-mmenu .mmenu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-mmenu .mmenu-container ul li + li {
  border-top: 1px solid #f5f5f5;
}
.mobile-mmenu .mmenu-container ul li a {
  display: block;
  padding: 12px 15px;
}
.mobile-mmenu .mmenu-container .mmenu-list,
.mobile-mmenu .mmenu-container .sub-mmenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: transform 0.3s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-mmenu .mmenu-container .mmenu-list.is-hidden,
.mobile-mmenu .mmenu-container .sub-mmenu.is-hidden {
  overflow-y: hidden;
}
.mobile-mmenu .mmenu-container .sub-mmenu {
  transform: translateX(100%);
  z-index: 2;
}
.mobile-mmenu .mmenu-container .sub-mmenu.is-active {
  transform: translateX(0);
}
.mobile-mmenu .mmenu-container .sub-mmenu .back-btn {
  padding: 12px 15px;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: bold;
  color: #555;
}
.mobile-mmenu .mmenu-container .sub-mmenu .back-btn i {
  margin-right: 8px;
}
.mobile-mmenu .mmenu-container .mmenu-item {
  display: flex;
}
.mobile-mmenu .mmenu-container .mmenu-item > a {
  flex-grow: 1;
  max-width: calc(100% - 40px);
}
.mobile-mmenu .mmenu-container .mmenu-item .next-btn {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-left: 1px solid #f5f5f5;
  color: #999;
}
.mobile-mmenu .mmenu-footer {
  flex: 0 0 auto;
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fff;
}
.mobile-mmenu .mmenu-footer .mmenu-footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 13px;
}
.mobile-mmenu .mmenu-footer .mmenu-footer-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.mobile-mmenu .mmenu-footer .mmenu-footer-item svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.mobile-mmenu .mmenu-footer .mmenu-footer-item a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.mega-menu {
  position: relative;
}
.mega-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-menu > ul {
  display: flex;
  -webkit-display: flex;
}
.mega-menu > ul > li.has-level1 {
  opacity: 0;
  visibility: hidden;
}
.mega-menu > ul > li.has-level1.loaded {
  opacity: 1;
  visibility: visible;
}
.mega-menu > ul > li.has-level1 .down_icon {
  -webkit-mask-image: url(data:image/webp;base64,UklGRnwAAABXRUJQVlA4TG8AAAAvH8AHEGDbtpEk9t/1fnfa6C6MYBrZtpP7fxepmUy0FIOjiaxQUOL77hpM2qaz226B7x/eL/SoPgbAgkStMWpoBqC9qJlb9AQ9FFzQ7T3lPol9ltqpe9+9tnhp89jqod3RjhC0z97Y/hs26+i/GAAA);
  width: 12px;
  height: 12px;
  background-color: #000;
  display: inline-block;
  position: relative;
  bottom: -1px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  margin-left: 5px;
}
.mega-menu > ul > li.has-level1:hover .drop-menu-level-1 {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
  display: block;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}
.mega-menu > ul > li > a {
  display: block;
  padding: 7px 15px 7px 15px;
  text-align: center;
}
.mega-menu > ul li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-menu > ul li a:hover {
  background-color: #f2f2f2;
}
.mega-menu .drop-menu {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: absolute;
  border: none;
  width: 250px;
  z-index: 1030;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0px;
  white-space: initial;
  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  text-align: left;
}
.mega-menu .drop-menu.drop-menu-level-1 {
  top: 100%;
  left: auto;
}
.mega-menu .drop-menu.drop-menu-level-child {
  top: 0;
  left: 100%;
  display: none;
}
.mega-menu .drop-menu > li {
  position: relative;
}
.mega-menu .drop-menu > li > a {
  padding: 6px 25px 6px 12px;
  display: block;
  position: relative;
  transition: all 0.2s;
  line-height: 25px;
}
.mega-menu .drop-menu > li > a > .down_icon {
  transform: rotate(-90deg) !important;
  position: absolute !important;
  right: 8px;
  top: calc(50% - 6px);
  transition: all 0.4s;
}
.mega-menu .drop-menu > li.has-level:hover > ul.drop-menu-level-child {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 0;
  margin-top: 0;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}
.mega-menu .drop-menu li a::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  left: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  top: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mega-menu .drop-menu li a:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #666;
}

#contactmap iframe {
  display: block;
  width: 100%;
  height: 710px;
}

.contact-block {
  margin-bottom: 25px;
}
.contact-block .contact-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .contact-block .contact-heading {
    font-size: 17px;
  }
}

.contact-submit-btn {
  color: #fff;
  background: var(--main-color);
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 40px;
}

.contact-info {
  display: flex;
}
.contact-info .contact-info-icon {
  flex: 0 0 36px;
  -ms-flex: 0 0 36px;
  max-width: 36px;
}
.contact-info .contact-info-icon span {
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  color: var(--main-color);
}
.contact-info .contact-info-text {
  flex: 0 0 calc(100% - 36px);
  -ms-flex: 0 0 calc(100% - 36px);
  max-width: calc(100% - 36px);
  padding-left: 14px;
  padding-top: 6px;
}
.contact-info .contact-info-text h4 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.section-category {
  padding: 60px 0;
  position: relative;
}

.row-category {
  margin: -10px;
}

.col-category {
  padding: 10px;
}

.category-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fffcf5;
  border-radius: 12px;
  overflow: hidden;
}
.category-items::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.category-items:hover {
  box-shadow: 0px 0px 10px rgba(29, 20, 0, 0.1);
  background: linear-gradient(rgba(255, 252, 245, 0.45), rgba(255, 252, 245, 0.45)), url("../images/photo/category-items.png") center center/100% 100% no-repeat, #fffcf5;
}
.category-items:hover::before {
  opacity: 1;
}
.category-items:hover .category-detail a {
  color: #fff;
  background: linear-gradient(270deg, #eab11b 0%, #b17802 100%);
}

.category-text {
  flex: 0 0 150px;
  -ms-flex: 0 0 150px;
  max-width: 150px;
  position: relative;
}
.category-text h3 {
  font: 20px "Lato-Bold";
  text-transform: uppercase;
  line-height: 32px;
  color: #1d1400;
  margin-bottom: 20px;
}

.category-detail a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font: 14px "Lato-Regular";
  line-height: 17px;
  color: #1d1400;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.category-images {
  flex: 0 0 166px;
  -ms-flex: 0 0 166px;
  max-width: 166px;
  position: relative;
}

@media (max-width: 991px) {
  .section-category {
    padding: 40px 0;
  }
  .row-category {
    margin: -5px;
  }
  .col-category {
    padding: 5px;
  }
  .category-items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px;
  }
  .category-items .category-images {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    margin-bottom: 15px;
  }
  .category-items .category-images img {
    display: block;
    width: 100%;
    height: auto;
  }
  .category-items .category-text {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .category-items .category-text h3 {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 15px;
    height: 52px;
  }
  .category-detail a {
    padding: 7px 10px;
    font-size: 13px;
    line-height: 16px;
  }
}
.section-about {
  padding: 60px 0;
  background: url("../images/photo/bg-about.png") no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.section-about::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  z-index: -1;
}

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

.about-left {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.about-right {
  flex: 0 0 41%;
  -ms-flex: 0 0 41%;
  max-width: 41%;
  position: relative;
  margin-right: 70px;
}
.about-right h4 {
  font: 20px "Lato-Regular";
  line-height: 24px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.about-right h4 span {
  width: 48px;
  height: 1px;
  background: linear-gradient(270deg, #eab11b 0%, #b17802 100%);
  border-radius: 10px;
}
.about-right h3 {
  font: 38px "Lato-Black";
  text-transform: uppercase;
  line-height: 54px;
  color: #1d1400;
  margin-bottom: 20px;
}

.about-desc {
  font: 16px "Lato-Regular";
  line-height: 30px;
  color: #1d1400;
  margin-bottom: 30px;
}

.about-detail a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 45px;
  background: linear-gradient(270deg, #eab11b 0%, #b17802 100%);
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  font: 14px "Lato-Bold";
  text-transform: uppercase;
  line-height: 17px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.about-detail a i {
  font-size: 18px;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.about-detail a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(177, 120, 2, 0.25);
}
.about-detail a:hover i {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .section-about {
    padding: 40px 15px;
  }
  .section-about::after {
    display: none;
  }
  .about-main {
    flex-direction: column;
    gap: 30px;
  }
  .about-left,
  .about-right {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
  .about-left {
    order: 1;
  }
  .about-right {
    order: 2;
    margin-right: 0;
  }
  .about-right h4 {
    font-size: 17px;
    line-height: 22px;
    gap: 12px;
    margin-bottom: 10px;
  }
  .about-right h4 span {
    width: 35px;
  }
  .about-right h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .about-desc {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .about-detail a {
    padding: 10px 30px;
    font-size: 13px;
    line-height: 16px;
  }
}
.section-product {
  padding: 60px 0;
  position: relative;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product-title h2 {
  position: relative;
  font: 34px "Lato-Black";
  text-transform: uppercase;
  line-height: 41px;
  color: #1d1400;
  padding-bottom: 10px;
}
.product-title h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(to left, #eab11b 0%, #b17802 100%);
}

.product-view a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 30px;
  font: 14px "Lato-Regular";
  color: #1d1400;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.product-view a i {
  font-size: 24px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.product-view a:hover {
  transform: translateY(-3px);
  border-color: #b17802;
  box-shadow: 0 6px 15px rgba(177, 120, 2, 0.18);
}
.product-view a:hover i {
  transform: translateX(3px);
}

.row-product {
  margin: -10px;
}

.col-product {
  padding: 10px;
}

.product-items {
  position: relative;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
}

.product-images a {
  border-radius: 12px;
}

.product-text {
  padding: 10px 0;
}
.product-text h3 {
  font: 16px "Lato-Medium";
  text-transform: capitalize;
  line-height: 19px;
  color: #1d1400;
  margin-bottom: 15px;
}

.product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.product-price .price-sale {
  display: inline-block;
  font: 18px "Lato-Bold";
  line-height: 22px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.product-price .price-regular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-price .price-regular .old-price {
  font: 14px "Lato-Regular";
  line-height: 17px;
  color: #999;
  text-decoration: line-through;
}
.product-price .price-regular .discount {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  font: 12px "Lato-Bold";
  line-height: 15px;
  color: var(--main-color);
  background: #fff5d9;
  border-radius: 4px;
}
.product-price .price-contact a {
  font: 14px "Lato-Bold";
  text-transform: uppercase;
  line-height: 17px;
  text-decoration: none;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.product-detail {
  position: absolute;
  bottom: 8px;
  right: 10px;
}
.product-detail a i {
  font-size: 18px;
  color: #d9d9d9;
}

@media (max-width: 991px) {
  .section-product {
    padding: 40px 0;
  }
  .product-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  .product-title h2 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 8px;
  }
  .product-title h2::after {
    width: 70px;
  }
  .product-view a {
    padding: 7px 24px;
    font-size: 13px;
  }
  .product-view a i {
    font-size: 20px;
  }
  .row-product {
    margin: -5px;
  }
  .col-product {
    padding: 5px;
  }
  .product-items {
    padding: 8px;
    border-radius: 10px;
  }
  .product-images a {
    border-radius: 10px;
  }
  .product-text {
    padding: 8px 0;
  }
  .product-text h3 {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 10px;
  }
  .product-price {
    height: 42px;
    align-items: flex-start;
    gap: 5px;
  }
  .product-price .price-sale {
    font-size: 16px;
    line-height: 20px;
  }
  .product-price .price-regular {
    gap: 5px;
  }
  .product-price .price-regular .old-price {
    font-size: 12px;
    line-height: 15px;
  }
  .product-price .price-regular .discount {
    padding: 2px 5px;
    font-size: 10px;
    line-height: 13px;
  }
  .product-price .price-contact a {
    font-size: 12px;
    line-height: 15px;
  }
  .product-detail {
    bottom: 6px;
    right: 8px;
  }
  .product-detail a i {
    font-size: 16px;
  }
}
.section-video-newsletter {
  padding: 60px 0;
  background: url("../images/photo/bg-video-newsletter.png") no-repeat left bottom;
  background-size: cover;
  position: relative;
}

.video-newsletter-main {
  display: flex;
  justify-content: space-between;
}

.video-main {
  flex: 0 0 52%;
  -ms-flex: 0 0 52%;
  max-width: 52%;
  position: relative;
  margin-bottom: -60px;
}
.video-main .video-box {
  position: relative;
  width: 100%;
}
.video-main .video-box .video-items {
  position: relative;
  width: 100%;
}
.video-main .video-box .video-items .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  pointer-events: none;
  animation: playPulse 1.5s ease-in-out infinite;
}
.video-main .video-box .video-items .icon-play img {
  display: block;
  width: 100%;
  height: 100%;
}
@keyframes playPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12);
  }
}
.video-main .video-nav {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.video-main .video-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-main .video-nav button i {
  font-size: 20px;
  line-height: 1;
}
.video-main .video-nav button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.newsletter-main {
  flex: 0 0 39%;
  -ms-flex: 0 0 39%;
  max-width: 39%;
  position: relative;
  margin-right: 70px;
}

.newsletter-box .newsletter-title h2 {
  position: relative;
  font: 34px "Lato-Black";
  line-height: 41px;
  color: #1d1400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.newsletter-box .newsletter-title h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(to left, #eab11b 0%, #b17802 100%);
}
.newsletter-box .newsletter-desc {
  width: 410px;
  margin-top: 15px;
  margin-bottom: 20px;
  font: 16px "Lato-Regular";
  line-height: 30px;
  color: #666;
}
.newsletter-box .newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.newsletter-box .newsletter-field {
  width: 100%;
}
.newsletter-box .newsletter-field label {
  display: block;
  margin-bottom: 14px;
  font: 15px "Lato-Bold";
  line-height: 18px;
  color: #1d1400;
}
.newsletter-box .newsletter-field .newsletter-input {
  position: relative;
  width: 100%;
  height: 39px;
  border-bottom: 1px solid #d9d9d9;
}
.newsletter-box .newsletter-field .newsletter-input input,
.newsletter-box .newsletter-field .newsletter-input textarea {
  width: 100%;
  height: 100%;
  padding: 10px 35px 10px 0;
  border: 0;
  outline: none;
  background: transparent;
  font: 15px "Lato-Medium";
  line-height: 18px;
  color: #1d1400;
}
.newsletter-box .newsletter-field .newsletter-input input::placeholder,
.newsletter-box .newsletter-field .newsletter-input textarea::placeholder {
  font: 15px "Lato-Italic";
  color: #666;
  opacity: 1;
}
.newsletter-box .newsletter-field .newsletter-input input:focus,
.newsletter-box .newsletter-field .newsletter-input textarea:focus {
  outline: none;
}
.newsletter-box .newsletter-field .newsletter-input i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  opacity: 0.5;
  pointer-events: none;
}
.newsletter-box .newsletter-field-content {
  height: 64px;
}
.newsletter-box .newsletter-field-content .newsletter-input textarea {
  resize: none;
  overflow: hidden;
}
.newsletter-box .newsletter-field-content .newsletter-input i {
  top: 8px;
  transform: none;
}
.newsletter-box .newsletter-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  margin-top: 20px;
  padding: 0 28px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(270deg, #eab11b 0%, #b17802 100%);
  font: 15px "Lato-Black";
  line-height: 18px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-box .newsletter-submit-btn i {
  font-size: 24px;
}
.newsletter-box .newsletter-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(177, 120, 2, 0.25);
}

@media (max-width: 991px) {
  .section-video-newsletter {
    padding: 40px 15px;
    background: url("../images/photo/bg-newsletter.png") no-repeat center center;
    background-size: cover;
  }
  .video-newsletter-main {
    flex-direction: column;
    gap: 40px;
  }
  .video-main {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .video-main .video-box .video-items {
    height: auto;
  }
  .video-main .video-box .video-items > a {
    display: block;
  }
  .video-main .video-box .video-items .icon-play {
    width: 60px;
    height: 60px;
  }
  .video-main .video-nav {
    right: 15px;
    bottom: 15px;
    gap: 8px;
  }
  .video-main .video-nav button {
    width: 38px;
    height: 38px;
  }
  .video-main .video-nav button i {
    font-size: 17px;
  }
  .newsletter-main {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .newsletter-box .newsletter-title h2 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 8px;
  }
  .newsletter-box .newsletter-title h2::after {
    width: 70px;
  }
  .newsletter-box .newsletter-desc {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
  }
  .newsletter-box .newsletter-form {
    gap: 12px;
  }
  .newsletter-box .newsletter-field label {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 17px;
  }
  .newsletter-box .newsletter-field .newsletter-input {
    height: 40px;
  }
  .newsletter-box .newsletter-field .newsletter-input input,
  .newsletter-box .newsletter-field .newsletter-input textarea {
    padding: 10px 30px 10px 0;
    font-size: 14px;
    line-height: 17px;
  }
  .newsletter-box .newsletter-field .newsletter-input input::placeholder,
  .newsletter-box .newsletter-field .newsletter-input textarea::placeholder {
    font-size: 14px;
  }
  .newsletter-box .newsletter-field-content {
    height: 60px;
  }
  .newsletter-box .newsletter-submit-btn {
    width: 100%;
    height: 46px;
    margin-top: 15px;
    font-size: 14px;
  }
  .newsletter-box .newsletter-submit-btn i {
    font-size: 20px;
  }
}
.section-news {
  padding: 60px 0;
  position: relative;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news-title h2 {
  position: relative;
  font: 34px "Lato-Black";
  text-transform: uppercase;
  line-height: 41px;
  color: #1d1400;
  padding-bottom: 10px;
}
.news-title h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(to left, #eab11b 0%, #b17802 100%);
}

.news-view a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 30px;
  font: 14px "Lato-Regular";
  color: #1d1400;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.news-view a i {
  font-size: 24px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.news-view a:hover {
  transform: translateY(-3px);
  border-color: #b17802;
  box-shadow: 0 6px 15px rgba(177, 120, 2, 0.18);
}
.news-view a:hover i {
  transform: translateX(3px);
}

.row-news {
  margin: -10px;
}

.col-news {
  padding: 10px;
}

.news-items {
  position: relative;
}
.news-items .news-images {
  position: relative;
  z-index: 1;
  margin-right: 20px;
}
.news-items .news-images a {
  border-radius: 12px;
}
.news-items .news-text {
  position: relative;
  z-index: 2;
  width: calc(100% - 20px);
  margin: -40px 0 0 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.news-items .news-text .news-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font: 15px "Lato-Regular";
  line-height: 18px;
  color: #666;
}
.news-items .news-text .news-date i {
  font-size: 16px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.news-items .news-text h3 {
  font: 18px "Lato-Bold";
  text-transform: uppercase;
  line-height: 30px;
  color: #1d1400;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.news-items .news-text .news-detail {
  display: flex;
  justify-content: flex-end;
}
.news-items .news-text .news-detail a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 15px "Lato-Medium";
  line-height: 18px;
  color: #666;
  transition: all 0.3s ease;
}
.news-items .news-text .news-detail a i {
  font-size: 18px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.news-items:hover .news-text {
  border-color: transparent;
  box-shadow: 0 0 10px rgba(29, 20, 0, 0.1);
}
.news-items:hover .news-text::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.news-items:hover .news-detail a {
  background: linear-gradient(180deg, #eab11b 0%, #b17802 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 991px) {
  .section-news {
    padding: 40px 0;
  }
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  .news-title h2 {
    font-size: 28px;
    line-height: 34px;
    padding-bottom: 8px;
  }
  .news-title h2::after {
    width: 70px;
  }
  .news-view a {
    padding: 7px 24px;
    font-size: 13px;
  }
  .news-view a i {
    font-size: 20px;
  }
  .row-news {
    margin: -7.5px;
  }
  .col-news {
    width: 50%;
    padding: 7.5px;
  }
  .news-items .news-images {
    margin-right: 10px;
  }
  .news-items .news-images a {
    border-radius: 10px;
  }
  .news-items .news-text {
    width: calc(100% - 10px);
    margin: -25px 0 0 10px;
    padding: 15px;
    border-radius: 10px;
  }
  .news-items .news-text .news-date {
    gap: 7px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 16px;
  }
  .news-items .news-text .news-date i {
    font-size: 14px;
  }
  .news-items .news-text h3 {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 15px;
  }
  .news-items .news-text .news-detail a {
    gap: 7px;
    font-size: 13px;
    line-height: 16px;
  }
  .news-items .news-text .news-detail a i {
    font-size: 16px;
  }
}
.latedNews-box {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.latedNews-box:hover {
  background-color: #f9fafb;
}
.latedNews-box:hover .latedNews-box_photo span {
  transform: scale(1.05);
}
.latedNews-box:hover .latedNews-box_info h3 {
  color: #eab11b;
}

.latedNews-box_photo {
  flex: 0 0 85px;
  -ms-flex: 0 0 85px;
  max-width: 85px;
  border-radius: 8px;
  overflow: hidden;
}
.latedNews-box_photo span {
  display: block;
  transition: transform 0.4s ease;
}
.latedNews-box_photo span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latedNews-box_info {
  flex: 0 0 calc(100% - 85px);
  -ms-flex: 0 0 calc(100% - 85px);
  max-width: calc(100% - 85px);
  padding-left: 10px;
  padding-right: 5px;
}
.latedNews-box_info h3 {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.latedNews-box_info p {
  color: #eab11b;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.related-article {
  margin-top: 40px;
  margin-bottom: 30px;
}
.related-article h4 {
  font-weight: 800;
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
}
.related-article ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-article ul li {
  padding: 12px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.related-article ul li:last-child {
  border-bottom: none;
}

.relatedNews-box {
  position: relative;
  transition: all 0.2s ease;
}
.relatedNews-box h3 {
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0;
  line-height: 1.5;
}
.relatedNews-box h3 i.fa-caret-right {
  color: #eab11b;
  margin-right: 8px;
}
.relatedNews-box h3 span {
  font-size: 13px;
  color: #9ca3af;
  margin-left: 10px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.2s ease;
}
.relatedNews-box:hover {
  transform: translateX(5px);
}
.relatedNews-box:hover h3 {
  color: #eab11b;
}
.relatedNews-box:hover h3 span {
  color: #eab11b;
}

.news-item-info {
  padding-top: 15px;
}

.news-item-info-name {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
  transition: 0.3s;
}

.news-item {
  position: relative;
}
.news-item:hover .news-item-info-name {
  color: var(--hover-color);
}
.news-item:hover .news-item-photo img {
  transform: scale(1.05);
}

.news-item-link-full {
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 9;
}

.news-item-photo {
  overflow: hidden;
}
.news-item-photo img {
  transition: 0.4s;
}

.product-detail-gallery {
  margin-top: 10px;
  position: relative;
}
.product-detail-gallery .product-detail-gallery-owl_item {
  border-radius: 5px;
  border: 1px solid #eee;
  overflow: hidden;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail-gallery .product-detail-gallery-owl_item.hover, .product-detail-gallery .product-detail-gallery-owl_item:hover {
  border-color: #eab11b;
  /* Dùng biến main-color */
}
.product-detail-gallery .product-detail-gallery-owl_item .mz-thumb {
  display: block;
}
.product-detail-gallery .product-detail-gallery-owl_item .mz-thumb img {
  padding-bottom: 0;
  border-bottom-width: 0;
}
.product-detail-gallery .control-product-detail-gallery-owl button {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  z-index: 2;
  color: #ccc;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: calc(50% - 15px);
  transition: 0.4s;
  opacity: 0.5;
}
.product-detail-gallery .control-product-detail-gallery-owl button.owl-prev {
  left: 10px;
}
.product-detail-gallery .control-product-detail-gallery-owl button.owl-next {
  right: 10px;
}
.product-detail-gallery .control-product-detail-gallery-owl button.disabled {
  display: none;
}
.product-detail-gallery:hover .control-product-detail-gallery-owl button {
  opacity: 1;
}

.product-detail-zoom {
  text-align: center;
}
.product-detail-zoom .MagicZoom#Zoom-1 {
  border-radius: 5px;
  border: 1px solid #eee;
  overflow: hidden;
  padding: 5px;
}
.product-detail-zoom .MagicZoom#Zoom-1,
.product-detail-zoom .mz-figure {
  display: inline-block;
}

.product-detail-info-name {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .product-detail-info-name {
    font-size: 18px;
  }
}

.product-detail-info-line {
  padding-bottom: 15px;
  border-bottom: 1px dashed #e5e7eb;
  margin-bottom: 20px;
}
.product-detail-info-line p {
  color: #6b7280;
}
.product-detail-info-line p:not(:last-child) {
  margin-bottom: 6px;
}
.product-detail-info-line p span {
  font-weight: 600;
  color: #eab11b;
}

.product-detail-price {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.product-detail-price strong {
  font-size: 26px;
  font-weight: 800;
  color: #ef4444;
}
.product-detail-price del {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
}
.product-detail-price span {
  color: #fff;
  background: #ef4444;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.25);
}
@media screen and (max-width: 991px) {
  .product-detail-price strong {
    font-size: 20px;
  }
  .product-detail-price del {
    font-size: 14px;
  }
}

.product-detail-order {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-detail-order li {
  margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
  .product-detail-order li {
    margin-bottom: 15px;
  }
}

.product-detail-order-item_btn {
  display: flex;
  gap: 15px;
}
.product-detail-order-item_btn .order-btn-add {
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 54px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.product-detail-order-item_btn .order-btn-add[data-action=add] {
  flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  max-width: 40%;
  font-size: 15px;
  font-weight: 600;
  color: #eab11b;
  background-color: #fff;
  border: 2px solid #eab11b;
  box-shadow: 0 4px 10px rgba(234, 177, 27, 0.08);
}
.product-detail-order-item_btn .order-btn-add[data-action=add] i {
  margin-right: 8px;
  font-size: 18px;
}
.product-detail-order-item_btn .order-btn-add[data-action=add]:hover {
  background-color: #eab11b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(234, 177, 27, 0.25);
}
.product-detail-order-item_btn .order-btn-add[data-action=add]:active {
  transform: translateY(1px);
}
.product-detail-order-item_btn .order-btn-add[data-action=buy] {
  flex: 1;
  background: linear-gradient(135deg, rgb(240.4518072289, 200.9638554217, 97.0481927711) 0%, #eab11b 100%);
  color: #fff;
  flex-direction: column;
  box-shadow: 0 6px 15px rgba(234, 177, 27, 0.35);
}
.product-detail-order-item_btn .order-btn-add[data-action=buy] .title-buy {
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-order-item_btn .order-btn-add[data-action=buy] .sub-buy {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
}
.product-detail-order-item_btn .order-btn-add[data-action=buy]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(234, 177, 27, 0.45);
  filter: brightness(1.05);
}
.product-detail-order-item_btn .order-btn-add[data-action=buy]:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(234, 177, 27, 0.25);
}
@media screen and (max-width: 991px) {
  .product-detail-order-item_btn {
    flex-wrap: wrap;
    gap: 15px;
  }
  .product-detail-order-item_btn .order-btn-add[data-action=add], .product-detail-order-item_btn .order-btn-add[data-action=buy] {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
  }
}

.product-detail-order-item_quantity {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  padding: 6px 8px 6px 20px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
}
.product-detail-order-item_quantity label {
  font-weight: 600;
  color: #4b5563;
  font-size: 15px;
  margin-bottom: 0;
  margin-right: 15px;
}
.product-detail-order-item_quantity .product-detail-order-item__changeqty {
  display: flex;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  height: 38px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.product-detail-order-item_quantity .product-detail-order-item__changeqty input {
  width: 45px;
  border: none;
  border-left: 1px solid #f3f4f6;
  border-right: 1px solid #f3f4f6;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #eab11b;
  outline: none;
  -moz-appearance: textfield;
}
.product-detail-order-item_quantity .product-detail-order-item__changeqty input::-webkit-outer-spin-button, .product-detail-order-item_quantity .product-detail-order-item__changeqty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-detail-order-item_quantity .product-detail-order-item__changeqty button {
  width: 38px;
  border: none;
  background-color: transparent;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-order-item_quantity .product-detail-order-item__changeqty button:hover {
  background-color: rgb(252.9, 247.2, 232.2);
  color: #eab11b;
}

.product-detail-content #productdetailTab {
  background-color: #f3f4f6;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
}
.product-detail-content #productdetailTab .nav-item {
  margin-bottom: 0;
}
.product-detail-content #productdetailTab .nav-item .nav-link {
  margin-bottom: 0;
  color: #6b7280;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}
.product-detail-content #productdetailTab .nav-item .nav-link:hover {
  color: #eab11b;
}
.product-detail-content #productdetailTab .nav-item .nav-link.active {
  background: linear-gradient(135deg, rgb(240.4518072289, 200.9638554217, 97.0481927711) 0%, #eab11b 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(234, 177, 27, 0.35);
}
.product-detail-content #productdetailTabcontent {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}
@media screen and (max-width: 991px) {
  .product-detail-content #productdetailTab .nav-item .nav-link {
    font-size: 14px;
    padding: 9px 20px;
  }
  .product-detail-content #productdetailTabcontent {
    padding: 0;
    border: none;
    box-shadow: none;
  }
}

.product-detail-images,
.product-detail-info,
.product-detail-content {
  margin-bottom: 35px;
}

.product-detail-attribute {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-detail-attribute li.product-detail-attribute-item {
  margin-bottom: 20px;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute-item_label {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #333;
  font-weight: 600;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute-item_label span {
  color: var(--main-color);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio {
  display: inline-block;
  position: relative;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio label {
  display: block;
  transition: all 0.3s ease-in-out;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-text label {
  border-radius: 6px;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background-color: #fff;
  user-select: none;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-text label:hover {
  color: var(--main-color, #000);
  border-color: var(--main-color, #000);
  background-color: rgba(0, 0, 0, 0.02);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-text input:checked ~ label {
  background-color: var(--main-color, #000);
  color: #fff;
  border-color: var(--main-color, #000);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-text input:focus-visible ~ label {
  outline: 2px dashed #000;
  outline-offset: 3px;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.disabled label {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.disabled label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 1.5px;
  background-color: #ff4d4f;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-color label {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bg-color);
  cursor: pointer;
  user-select: none;
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-color label:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-color input:checked ~ label {
  outline: 2px solid var(--main-color, #000);
  outline-offset: 2px;
  transform: scale(1.05);
}
.product-detail-attribute li.product-detail-attribute-item .product-detail-attribute_select .product-detail-attribute_radio.show-color input:focus-visible ~ label {
  outline: 2px dashed #000;
  outline-offset: 3px;
}

.product-item {
  position: relative;
}
.product-item:hover .product-item-price-name {
  color: var(--hover-color);
}
.product-item:hover .product-item-photo img {
  transform: 1.05;
}

.product-item-link-full {
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 9;
}

.product-item-photo {
  overflow: hidden;
}
.product-item-photo img {
  transition: 0.4s;
}

.product-item-info {
  padding-top: 15px;
}

.product-item-price-name {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
  transition: 0.3s;
}

.product-item-price strong {
  color: #cc2c32;
  font-weight: 600;
  font-size: 15px;
}
.product-item-price del {
  color: #aaa;
  font-size: 13px;
}
.product-item-price span {
  background-color: #f00;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  border-radius: 10px;
  padding: 2px 7px;
}

.row-photos {
  margin: -10px;
}

.col-photos {
  padding: 10px;
}

@media (max-width: 991px) {
  .row-photos {
    margin: -5px;
  }
  .col-photos {
    padding: 5px;
  }
}
input.form-control:not([type=file]),
.form-control-plaintext:not(textarea),
.custom-select {
  height: 2.5rem;
}

.text-sm {
  font-size: var(--font-size);
}
@media screen and (max-width: 991px) {
  .text-sm {
    font-size: var(--font-size-sm);
  }
}

.alert {
  --bs-alert-padding-x: .75rem;
  --bs-alert-padding-y: .75rem;
}