/* =========================================================
   FONT SYSTEM
   Nội dung: Mona Sans
   Tiêu đề: FZ Poppins
   ========================================================= */

@font-face {
  font-family: Roboto-Regular;
  src: url("../fonts/Roboto-Regular.woff") format("woff");
  font-display: swap;
}

/* FZ POPPINS - HEADING */
@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Italic - chỉ load khi selector thật sự dùng italic */
@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-ExtraBoldItalic.woff2")
    format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FZ Poppins";
  src: url("../fonts/FZPoppins/FZ Poppins-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/*
 * Mona Sans:
 * Source hiện tại chưa có file Mona Sans thật trong assets/fonts.
 * Khi thêm MonaSans WOFF2, chỉ cần khai báo @font-face "Mona Sans".
 * Trong lúc chưa có, website fallback về Plus Jakarta Text để không vỡ font.
 */

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.col-30 {
  padding-left: 15px;
  padding-right: 15px;
}

.col-20 {
  padding-left: 10px;
  padding-right: 10px;
}

.row-23 {
  margin-left: -11.5px;
  margin-right: -11.5px;
}

.col-23 {
  padding-left: 11.5px;
  padding-right: 11.5px;
}
:root {
  --color-main: #2557ae;
  --color-social: #2557ae;
  --color-hover: #2557ae;
  --color-text: #2557ae;

  --font-body: "Mona Sans", "Plus Jakarta Text", Arial, sans-serif;
  --font-heading: "FZ Poppins", "Plus Jakarta Display", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}
button,
input,
select,
textarea {
  font-family: var(--font-body);
}
.max-width,
.wrap-content {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: auto;
}
.mw-700 {
  max-width: 700px;
}
img {
  max-width: 100%;
  display: inline-block;
}
img.lazy {
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition:
    filter 0.4s,
    -webkit-filter 0.4s;
  transform: unset !important;
}

img:not(.initial) {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

img.error,
img.initial,
img.loaded {
  opacity: 1;
  transition: opacity 0.3s;
  -webkit-filter: blur(0);
  filter: blur(0);
}

img:not([src]) {
  visibility: hidden;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.social-plugin {
  display: flex;
  margin-top: 10px;
}
.scale-img {
  overflow: hidden;
  display: block;
}

.scale-img img {
  transform: scale(1, 1);
}
.scale-img:hover > img {
  transform: scale(1.1, 1.1);
}

.hover_xemthem {
  transition: 0.4s;
}
.hover_xemthem:hover {
  letter-spacing: 2px;
}
.hover-img {
  position: relative;
  overflow: hidden;
  display: block;
}
.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.p-relative {
  position: relative;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-frame .kenit-alo-circle-fill,
.carousel-comment-media .carousel-control a span,
.control-owl button,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.support-online .kenit-alo-circle-fill,
.transition {
  transition: 0.3s all;
}
.gutter-x-20 {
  --bs-gutter-x: 20px;
}
.gutter-x-5 {
  --bs-gutter-x: 5px;
}
/* Figma - top information bar */
.figma-topbar {
  height: 51px;
  background: #ffc704;
  color: #000;
}
.figma-topbar-inner {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.figma-topbar-item {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}
.figma-topbar-item:hover {
  color: #000;
}
.figma-topbar-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  font-size: 16px;
  color: #0f0f0f;
}
.figma-topbar-address {
  width: 582px;
}
.figma-topbar-time {
  width: 186px;
}
.figma-topbar-hotline {
  width: 170px;
}
.header {
  background: #4a90e2;
}
.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  color: #fff;
}
.cart-head:hover {
  color: #fed402;
}
.cart-head i {
  font-size: 20px;
}
.cart-head .count-cart {
  position: absolute;
  z-index: 999;
  color: #fff;
  background: red;
  border-radius: 50%;
  top: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}
.menu-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.menu-head a {
  color: #fff;
}
.menu-head a:hover {
  color: #fed402;
}
.line-head {
  background-color: #72b2fd;
  height: 32px;
  width: 1px;
}
.slideshow {
  position: relative;
}
.search {
  width: 50%;
  max-width: 400px;
  background: #fff;
  position: relative;
  border-radius: 10px;
}
.search input {
  width: calc(100% - 35px);
  font-size: 13px;
  color: #333;
  border-radius: 10px;
  border: none;
}
.search input:focus {
  border: none;
  box-shadow: none;
}
.search label {
  height: 35px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  background: red;
  color: #fff;
  border-radius: 10px;
  margin-right: 3px;
  padding: 5px 10px;
}
.search label i {
  font-weight: 700;
  color: #999;
}
.search p {
  width: 35px;
  height: 35px;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
}
.search p i {
  font-weight: 700;
  color: #999;
}
.box-search {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ds-item-search {
  width: calc(100% - 70px);
}
.ds-item-search a {
  font-size: 14px;
  color: #333;
}
.show-search {
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.box-search .price-product {
  width: 100%;
  margin: 0;
  text-align: left;
}
.box-search .price-product .price-new {
  color: red;
  font-size: 14px;
  font-weight: 700;
}
.box-search .price-product .price-old {
  color: #999;
  text-decoration-line: line-through;
}
.company {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}
.company p {
  margin-bottom: 5px;
  font-size: 13px;
}
.company p span {
  color: #007bff;
}
.head-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.head-menu img {
  max-width: 80px;
}
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: calc(50% - 22.5px);
}
.control-owl button {
  opacity: 0.5;
  top: 0;
  position: absolute;
  outline: 0;
  border: 2px solid #fff;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-size: 25px;
  margin: 0;
  background-color: #00a3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-owl button:hover {
  opacity: 1;
}
.control-owl button.owl-prev {
  left: 20px;
}
.control-owl button.owl-next {
  right: 20px;
}
.item-partner {
  border: 1px solid #f1f1f1;
  display: block;
}
.box-photo-ct {
  border-radius: 20px;
  overflow: hidden;
}
.title-detail {
  position: relative;
  margin: 20px 0;
}
.title-detail h1 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.title-main {
  position: relative;
  text-align: center;
}
.title-main span {
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
}
.tt-week {
  font-size: 25px;
  text-align: center;
  margin: 20px 0;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.title-cat-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.title-cat-main span {
  display: block;
  color: #999;
  background: linear-gradient(64.85deg, #fca600 23.67%, #ffd41d 106.12%);
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.title-cat-main span.active,
.title-cat-main span:hover {
  background: linear-gradient(64.85deg, #ffd41d 23.67%, #fca600 106.12%);
  color: #000;
}
.grid-tintuc {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
}
.news {
  display: block;
  margin-bottom: 20px;
  display: block;
}
.pic-news {
  border-radius: 10px;
  display: block;
  overflow: hidden;
  position: relative;
}
.pic-news img {
  width: 100%;
}
a.views {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  border: solid 1px #ccc;
  padding: 7px 20px;
  border-radius: 20px;
  color: #000;
  font-size: 16px;
}
a.views:hover {
  border: solid 1px #fed402;
  color: #fed402;
}
.name-news {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  max-height: 40px;
  -webkit-line-clamp: 2 !important;
  font-weight: 400;
}
a.name-news.name1 {
  font-size: 25px;
  line-height: 32px;
  max-height: 64px;
}
.name-news:hover {
  color: #fed402;
}
.time-news {
  color: #fed402;
  margin-bottom: 0;
  font-size: 12px;
  margin: 7px 0;
  font-style: italic;
  font-weight: 500;
}
.desc-news {
  color: #333;
  margin: 0;
}
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}
.othernews b {
  margin-bottom: 10px;
}
.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  text-transform: none;
  color: #333;
}
.list-news-other li a:hover {
  color: #fed402;
}

a.mucluc-dropdown-list_button:before {
  content: "\f03a";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  background: #fff;
  color: #006acb !important;
  font-size: 20px;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ddd;
}

.meta-toc.fiedx {
  position: fixed;
  left: 5px;
  top: 200px;
  z-index: 111;
}

.meta-toc .mucluc-dropdown-list_button {
  display: none;
}

.meta-toc.fiedx .mucluc-dropdown-list_button {
  display: block;
}

.meta-toc:not(.fiedx) .box-readmore {
  display: block !important;
}

.box-readmore {
  padding: 10px;
  background-color: #f5f5f5;
  width: 100%;
  margin-top: 2px;
  border: 1px solid #ddd;
  font-size: 13px;
  margin-bottom: 10px;
}

.meta-toc.fiedx .box-readmore {
  width: 350px;
  display: none;
}

.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}

.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}

.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin: 0 0 5px 0;
}

.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}

.box-readmore ul li a {
  color: #000 !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.box-readmore ul li li a {
  font-weight: 400;
}

.box-readmore ul li a:hover {
  color: #767676;
}

.info-partner {
  background: #f8f8f8;
  padding: 15px 0;
}
.info-footer .flex-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
.info-footer {
  background: #4a90e2;
  padding: 30px 0;
}
.title-footer {
  margin-bottom: 0.75rem;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.info-footer .flex-footer .box-footer:nth-child(1) {
  width: 35%;
}
.info-footer .flex-footer .box-footer:nth-child(2) {
  width: 25%;
}
.info-footer .flex-footer .box-footer:nth-child(3) {
  width: 25%;
}
.map-footer {
  position: relative;
  width: 100%;
  height: 200px;
}
.map-footer iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.footer-powered {
  padding: 10px 0;
  background: #125199;
  color: #fff;
}
.flex-powered {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.statistic span {
  position: relative;
  padding: 0 5px;
}
.title-tags {
  position: relative;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #777;
}
.title-tags:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: block;
  height: 3px;
  width: 30px;
}
.flex-tags {
  display: flex;
  gap: 5px;
}
.flex-tags a {
  color: #333;
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  opacity: 0.8;
  padding: 2px 5px;
}
.flex-tags a:hover {
  background-color: red;
  border-color: red;
  color: #fff;
  opacity: 1;
}
.item-criteria a {
  display: flex;
  align-items: center;
  color: #333;
}
.item-criteria a .ds-criteria {
  width: calc(100% - 60px);
  margin-left: 10px;
}
.item-criteria a .ds-criteria h3 {
  -webkit-line-clamp: 2;
  font-size: 16px;
  color: var(--color-main);
}
.item-criteria a .ds-criteria p {
  -webkit-line-clamp: 2;
  margin: 0;
}
.flex-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-about {
  width: 50%;
}
.meta-toc.fiedx {
  position: fixed;
  left: 5px;
  top: 200px;
  z-index: 111;
}
.photo-about {
  width: 48%;
}
.title-about {
  margin-bottom: 20px;
}
.title-about h3 {
  font-size: 30;
  color: #333;
  text-transform: uppercase;
}
.view-about {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  margin: 30px 0 20px;
  color: #333;
  text-align: center;
}
.view-about span {
  position: relative;
  z-index: 1;
}
.view-about span:hover {
  color: red;
}
.view-about span:after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c2d2a7;
  position: absolute;
  z-index: -1;
  left: 4%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.item-service {
  position: relative;
}
.item-service h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  font-size: 17px;
  margin: 0;
}
.flex-video {
  display: flex;
  justify-content: space-between;
}
.wr-video {
  width: 49%;
}
.wr-form {
  width: 49%;
}
.video-main {
  position: relative;
}
.list-video {
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.img-video span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid #ff000066;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  background: #ffffffa8;
  font-size: 27px;
  cursor: pointer;
  transition: all 1s;
}
.item-video:hover span {
  transform: translateX(-50%) translateY(-50%) rotate(360deg);
}
.item-video h3 {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0;
}
.sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0;
  order: 2;
}
.sort-select-main p:has(.check) {
  order: 1;
}
.sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort a.check i::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show::before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}
.filter {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}
.flex-product-main {
  display: flex;
  gap: 20px;
}
.flex-product-main .left-product {
  width: 250px;
  border: 1px solid #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}
.flex-product-main .right-product {
  width: calc(100% - 250px);
}
.wrap-product-sale {
  background-color: #ffa09e;
  border-radius: 10px;
  overflow: hidden;
}
.wr-search p {
  font-weight: 700;
  text-transform: uppercase;
}
.product {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  border: 1px solid #f1f1f1;
}
.product .pic-product {
  background: #fff;
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px transparent;
}
.product:hover .pic-product {
  border: solid 1px #ccc;
}
.product .pic-product img {
  width: 100%;
  -webkit-transform-style: preserve-3d;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.product .pic-product > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
}
.first_img {
  position: absolute;
  top: 0;
  transition: all 0.5s ease;
  height: 100%;
}
.product:hover .first_img {
  transform: scale(0);
}
.second_img {
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  transition: all 0.5s ease;
  height: 100%;
}
.product:hover .second_img {
  right: 0;
  top: 0;
  transition: all 0.5s ease;
}
.product .name-product {
  margin-bottom: 5px;
  font-weight: 400;
}
.product .name-product a {
  font-size: 15px;
  color: #232323;
  font-weight: 500;
}
.product .name-product a:hover {
  color: #ff2e00;
}
.product .name-product .text-split {
  -webkit-line-clamp: 2;
}
.product .price-product {
  margin-bottom: 10px;
  color: #555;
}
.product .price-new {
  font-size: 16px;
  font-weight: 500;
  color: #ff2e00;
  display: inline-block;
  text-transform: uppercase;
}
.product .price-old {
  padding: 0 10px;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #ff2e00;
  text-transform: uppercase;
}
.product .price-per {
  color: #ff2e00;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
}
.box-cat {
  text-align: center;
}
.box-cat h3 {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.box-cat:hover h3 {
  color: red;
}
.cart-product {
  margin: 5px 0 0 0;
}
.cart-product span {
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 0 5px;
  border-radius: 5px;
  display: inline-block;
  line-height: 34px;
  font-size: 13px;
  font-weight: 700;
}
.cart-add {
  margin-left: 10px;
  background-color: #00a5d9;
  width: 155px;
}
.cart-add:hover {
  background-color: #fed402;
}
.cart-buy {
  background-color: #ff2e00;
  width: 93px;
  height: 33px;
}
.cart-buy:hover {
  background-color: #fed402;
}
.grid-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-product > * {
  max-width: 100%;
  min-width: 0;
}
.grid-product .product .product-info {
  margin-top: 10px;
  color: #333;
}
.grid-product .product .product-info h3 {
  font-size: 17px;
  color: #333;
}
.grid-product .product .product-info .price span {
  color: red;
}
.grid-product .product .pic-product {
  border: 1px solid #ddd;
}
.grid-pro-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.grid-pro-detail .left-pro-detail {
  width: 50%;
}
.grid-pro-detail .right-pro-detail {
  width: 45%;
}
.detail-product {
  display: flex;
  justify-content: space-between;
}
.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}
.detail-product .right-pro-detail {
  width: 57%;
}
.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0;
}
.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}
.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}
.detail-product .right-pro-detail ul li .attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0;
}
.detail-product
  .right-pro-detail
  ul
  li
  .attr-content-pro-detail
  .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: red;
}
.tabs-pro-detail .tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
}
.nav-tabs li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: red;
}
.ul-actions {
  display: flex;
  justify-content: center;
  margin: 20px;
  gap: 15px;
  align-items: flex-start;
}
.ul-actions li,
.ul-actions > div {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  text-align: center;
}
.ul-actions .active .box__tabr,
.ul-actions .box__tabr:hover {
  border-color: #fd6e1d;
}
.ul-actions .box__tabr {
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  min-height: 55px;
  padding: 4px;
  height: 60px;
  width: 80px;
}
.icon-action {
  background-image: url(../images/icon_chitiet@2x-min.png);
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-size: 300px 180px;
}
.icon-dnb {
  background-position: 0 0;
  height: 28px;
  width: 28px;
}
.icon-tskt {
  background-position: -105px 0;
  height: 30px;
  width: 30px;
}
.icon-ttsp {
  background-position: -140px 0;
  height: 19px;
  width: 23px;
}
.ul-actions p {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  white-space: normal;
  color: #000;
}
.modal-detail::-webkit-scrollbar {
  width: 10px;
}
.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}
.modal-detail {
  position: fixed;
  z-index: 999;
  background: #000000c4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}
.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
}
.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: 700;
  position: relative;
  border-bottom: 4px solid #fff;
}
.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}
.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.content-modal-detail .tab-content.active {
  display: block;
}
.close-tab {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
}
.btn-closemenu {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  line-height: 21px;
  padding: 7px;
  text-align: right;
  width: 72px;
}
.btn-closemenu::before {
  transform: rotate(45deg);
}
.btn-closemenu::after {
  transform: rotate(-45deg);
}
.btn-closemenu::after,
.btn-closemenu::before {
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}
.cursor-pointer {
  cursor: pointer;
}
.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact-text {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  border-radius: 50px;
  border: solid 1px #e8e8e8;
  padding: 30px 50px;
  color: #7b7b7b;
}
.box-frm {
  position: relative;
}
form.contact-form {
  box-shadow:
    5px 30px 40px rgba(0, 0, 0, 0.1),
    5px 30px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 30px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 65px;
  background: #fff;
}
.contact-input input,
.contact-input textarea {
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px dotted #045b8a;
}
.btn-send {
  margin: auto;
  border-radius: 50px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 25px;
}
.breadCrumbs {
  padding: 10px 0;
  background: #ddd;
}
.breadCrumbs ol {
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li a:hover {
  color: red;
}
.paging-product {
  position: relative;
}
.pagination {
  margin: 20px 0;
}
.pagination li span {
  cursor: pointer;
}
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1182fc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}
.grid-properties {
  display: flex;
  gap: 10px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span.active,
.grid-properties span:hover {
  border: 1px solid red;
  color: red;
}
.grid-properties span.active:after,
.grid-properties span:hover:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
  cursor: pointer;
}
.grecaptcha-badge {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  overflow: hidden;
}
[x-cloak] {
  display: none !important;
}
a.views_dm {
  width: 140px;
  height: 38px;
}
.effect_button {
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform 0.25s;
  position: relative;
  display: inline-flex;
  z-index: 1;
}
.effect_button:after,
.effect_button:before {
  position: absolute;
  content: "xem thÃªm";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid red;
  box-sizing: border-box;
  border-radius: 5px;
  z-index: -1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}
.effect_button:before {
  color: #fff;
  background: red;
  transform: rotateY(0) translateZ(25px);
}
.effect_button:after {
  color: red;
  transform: rotateX(90deg) translateZ(25px);
}
.effect_button:hover {
  transform: translateZ(-25px) rotateX(-90deg);
}
.grid-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.item-news {
  --tw-bg-opacity: 1;
  background-color: #f1f1f1;
  padding: 1rem;
  box-shadow: 0 0 5px rgb(0 0 0 / 19%);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}
.item-news:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0 10px rgb(0 0 0 / 19%);
}
.item-news .ds-news {
  width: 100%;
}
.ds-news span {
  display: block;
  line-height: 25px;
  color: #999;
  font-size: 13px;
  margin: 10px 0 0;
  font-style: italic;
}
.ds-news h3 {
  font-size: 16px;
  margin: 0;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-line-clamp: 2 !important;
}
.ds-news .desc {
  color: #333;
}
.item-news:hover h3 {
  color: red;
}
.item-news-all a {
  display: flex;
  justify-content: space-between;
}
.item-news-all a .ds-news {
  width: calc(100% - 110px);
}
.item-news-all a .ds-news h3 {
  text-transform: capitalize;
  font-size: 15px;
}
.flex-news-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.news-left {
  width: 68%;
}
.news-right {
  position: sticky;
  top: 20px;
  width: 30%;
  background: #f1f1f1cc;
  padding: 20px;
  box-shadow: 0 0 5px #99999978;
}
.policy-detail-sidebar {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.policy-detail-sidebar .title-main {
  margin-bottom: 12px !important;
}
.policy-detail-sidebar .title-main span {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}
.policy-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-detail-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.policy-detail-list li:last-child {
  border-bottom: 0;
}
.policy-detail-list a,
.policy-detail-list span {
  display: block;
  padding: 13px 0;
  color: #1f2933;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}
.policy-detail-list a:hover {
  color: var(--theme-color, #f5b700);
}
a.btn_link {
  position: relative;
  margin: 5px;
  height: 36px;
  width: 140px;
}
.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before {
  content: "facebook";
}
.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before,
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
  content: "google map";
}
div.slick.in-page:not(.slick-initialized) {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}
.attr-pro-detail {
  margin: auto;
  padding: 0;
}
.baonoidung iframe {
  max-width: 100% !important;
}
.baonoidung img {
  height: auto !important;
}
.baonoidung * {
  max-width: 100% !important;
}
.baonoidung table {
  display: block;
  overflow-y: auto;
}
div.desc-pro-detail ul li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
}
div.desc-pro-detail ul li:last-child {
  margin-bottom: 0 !important;
}
div.baonoidung ul li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
}
div.baonoidung ol li {
  margin-bottom: 0.75rem;
  list-style-type: decimal;
}
.price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #ff2e00;
}
.price-old-pro-detail {
  font-weight: 500;
  color: #666;
  text-decoration: line-through;
  padding-left: 10px;
}
.color-pro-detail.active,
.size-pro-detail.active,
.size-pro-detail:hover {
  color: #fff !important;
  background: #232323;
}
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-right: 20px;
  font-weight: 500;
}
.quantity-pro-detail span {
  line-height: 40px;
  padding: 0;
  width: 30px;
  height: 40px;
  color: #000;
  cursor: pointer;
  font-size: 22px;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0;
}
.quantity-pro-detail input {
  height: 40px;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 20px;
  padding: 5px;
  font-weight: 700;
}
.cart-pro-detail {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-pro-detail a {
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 700;
}
.cart-pro-detail a.addnow {
  margin-right: 10px;
  color: #fff;
  border-radius: 5px;
}
.cart-pro-detail a.addnow:hover {
  background-color: red;
  color: #fff;
  border-color: red;
}
.cart-pro-detail a.buynow {
  background-color: #000;
}
.cart-pro-detail a.buynow:hover {
  background-color: red;
  color: #fff;
}
.cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}
.swiper .swiper-wrapper {
  width: inherit;
  height: inherit;
}
.swiper.swiper-initialized .swiper-wrapper {
  margin: 0;
  width: 100%;
  height: 100%;
}
.swiper.swiper-initialized .swiper-slide {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.modal-title {
  font-size: 20px;
}
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.loading {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 5px solid #3498db;
  animation: spin 1s linear infinite;
}
.baonoidung iframe {
  max-width: 100% !important;
}
.baonoidung img {
  height: auto !important;
}
.baonoidung * {
  max-width: 100% !important;
}
.baonoidung table {
  display: block;
  overflow-y: auto;
}
div.desc-pro-detail ul li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
}
div.desc-pro-detail ul li:last-child {
  margin-bottom: 0 !important;
}
div.baonoidung ul li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
}
div.baonoidung ol li {
  margin-bottom: 0.75rem;
  list-style-type: decimal;
}
.he-first {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.he-first:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #fff, transparent);
  content: "";
}
.he-first.heigt-auto {
  max-height: unset;
}
.he-first.heigt-auto:before {
  display: none;
}
/* ===== FIGMA HERO / GROUP 6 ===== */

.figma-hero-slide {
  position: relative;
  overflow: hidden;
}

.figma-hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
}

.figma-hero-content {
  position: relative;
  z-index: 5;
}

.figma-hero-actions {
  position: relative;
  z-index: 6;
}

@media (min-width: 1026px) {
  /*
     * Figma:
     * Topbar: 51px
     * Navigation: 101px
     * Group 6 bắt đầu từ top 51px
     *
     * Hero kéo ngược 101px để background nằm phía sau navigation.
     */
  .figma-navigation {
    position: sticky;
    top: 0;
    z-index: 10010;
    height: 101px;
    background: #fdfdfd;
  }

  .figma-navigation.was-scrolled {
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.1);
  }

  .figma-navigation > .wrap-content,
  .figma-navigation .navigation__main {
    height: 101px;
  }

  .figma-hero {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -101px;
    overflow: hidden;
  }

  /*
     * image 12
     * Figma: 1920 x 946
     */
  .figma-hero .figma-hero-swiper,
  .figma-hero .swiper-wrapper,
  .figma-hero .swiper-slide {
    width: 100%;
  }

  .figma-hero .figma-hero-image {
    display: block;
    width: 100%;
  }

  .figma-hero .figma-hero-image picture {
    display: block;
    width: 100%;
  }

  .figma-hero .figma-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 946;
    object-fit: cover;
    object-position: center top;
  }

  /*
     * Frame 2071857875
     *
     * Group bắt đầu tại Y = 51
     * Text bắt đầu tại Y = 286
     * => 235px bên trong hero
     *
     * 235 / 946 = 24.84%
     */
  .figma-hero-content {
    position: absolute;
    z-index: 5;
    top: 24.84%;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 30px);
    max-width: 1200px;

    pointer-events: none;
  }

  .figma-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 806px;
    max-width: 100%;

    gap: 29px;
  }

  /*
     * Frame 2071857892
     */
  .figma-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 806px;
    max-width: 100%;

    gap: 16px;
  }

  /*
     * Hero heading
     */
  .figma-hero-text h1 {
    width: 806px;
    max-width: 100%;

    margin: 0;
    padding: 0;

    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 800;
    font-size: 54px;
    line-height: 81px;

    text-transform: uppercase;

    color: #6d6d6d;
  }

  /*
     * Description
     */
  .figma-hero-text p {
    width: 488px;
    max-width: 100%;

    margin: 0;
    padding: 0;

    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;

    color: #6d6d6d;
  }

  /*
     * Frame 3
     */
  .figma-hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 404px;
    height: 49px;

    gap: 8px;

    pointer-events: auto;
  }

  .figma-hero-btn {
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 49px;

    padding: 12px 24px;

    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;

    text-transform: capitalize;
    text-decoration: none;

    border-radius: 4px;

    white-space: nowrap;
    transition: all 0.25s ease;
  }

  /*
     * Frame 1
     */
  .figma-hero-btn-primary {
    width: 210px;

    color: #0f0f0f;
    background: #fcc00b;
    border: 2px solid #fcc00b;
  }

  /*
     * Frame 2
     */
  .figma-hero-btn-outline {
    width: 186px;

    color: #fcc00b;
    background: transparent;
    border: 2px solid #fcc00b;
  }

  .figma-hero-btn-primary:hover {
    color: #ffffff;
    background: #0f0f0f;
    border-color: #0f0f0f;
    transform: translateY(-2px);
  }

  .figma-hero-btn-outline:hover {
    color: #0f0f0f;
    background: #fcc00b;
    transform: translateY(-2px);
  }

  /*
     * Figma không có navigation controls trên banner.
     */
  .figma-hero .slide-pagination,
  .figma-hero .slide-prev,
  .figma-hero .slide-next {
    display: none !important;
  }
}
/* ===== FIGMA HOME ABOUT ===== */

.home-about-figma {
  padding: 137px 0 91px;
  background: #f7f7f7;
}

.figma-about {
  width: 100%;
  max-width: 1199px;
  min-height: 338px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 590px);
  gap: 19px;
  align-items: center;
}

/* LEFT */
.figma-about__content {
  width: 590px;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.figma-about__heading {
  width: 466px;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.figma-about__heading h2 {
  margin: 0;

  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;

  color: #ffc704;
}

.figma-about__heading h3 {
  margin: 0;

  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;

  color: #6d6d6d;
}

.figma-about__body {
  width: 590px;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.figma-about__desc {
  width: 590px;
  max-width: 100%;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;

  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;

  color: #000000;
}

.figma-about__desc p {
  margin: 0;
}

.figma-about__button {
  box-sizing: border-box;

  width: 158px;
  height: 49px;
  padding: 12px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;

  color: #0f0f0f;
  background: #fcc00b;

  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.figma-about__button:hover {
  color: #0f0f0f;
  transform: translateY(-2px);
}

/* RIGHT - 4 STAT CARDS */
.figma-about__stats {
  width: 590px;
  max-width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 286px);
  grid-template-rows: repeat(2, 138px);
  column-gap: 18px;
  row-gap: 23px;

  align-items: center;
}

.figma-about-stat {
  position: relative;

  width: 286px;
  height: 138px;

  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
}

.figma-about-stat img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: grayscale(1);
  z-index: 0;
}

.figma-about-stat__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1.5px);

  z-index: 1;
}

.figma-about-stat__content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;
  text-align: center;

  color: #fcc00b;
}

.figma-about-stat__content strong {
  display: block;

  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  line-height: 59px;

  color: #fcc00b;
}

.figma-about-stat__content span {
  display: block;

  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;

  color: #fcc00b;
}

/* TABLET + MOBILE */
@media (max-width: 1025px) {
  .home-about-figma {
    padding: 60px 0;
  }

  .figma-about {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .figma-about__content,
  .figma-about__stats {
    margin: 0 auto;
  }
}

@media (max-width: 650px) {
  .home-about-figma {
    padding: 40px 0;
  }

  .figma-about__heading h2 {
    font-size: 28px;
  }

  .figma-about__heading h3 {
    font-size: 38px;
  }

  .figma-about__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .figma-about__stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 12px;
  }

  .figma-about-stat {
    width: 100%;
    height: auto;
    aspect-ratio: 286 / 138;
  }

  .figma-about-stat__content strong {
    font-size: 30px;
    line-height: 40px;
  }

  .figma-about-stat__content span {
    font-size: 13px;
    line-height: 18px;
  }
}

/* ===== FIGMA HOME SERVICES ===== */
.home-services-figma {
  width: 100%;
  padding: 0 0 72px;
  overflow: hidden;
  background: #f7f7f7;
}

.home-services-figma > .wrap-content {
  width: calc(100% - 30px);
  max-width: 1199.87px;
  margin: 0 auto;
}

.home-services-figma__title {
  width: 100%;
  margin: 0 0 54px;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 57px;
  text-align: center;
  text-transform: capitalize;
  color: #ffc704;
}

.home-services-stage {
  position: relative;
  width: 100%;
  max-width: 1199.87px;
  margin: 0 auto;
}

/* Static layout: 1-3 services. */
.home-services-static {
  min-height: 568px;
}

.home-services-static__track {
  width: 100%;
  min-height: 531.67px;
  display: grid;
  grid-template-columns: 356.23px 447.4px 356.23px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.home-services-static__track--count-1 {
  grid-template-columns: 447.4px;
}

.home-services-static__track--count-1 .home-service-slide {
  height: 531.67px;
}

.home-services-static__track--count-1 .home-service-card {
  width: 447.4px;
  height: 531.67px;
  border-radius: 18.06px;
}

.home-services-static__track--count-1 .home-service-card__image {
  height: 357.12px;
}

.home-services-static__track--count-2 {
  grid-template-columns: repeat(2, 356.23px);
}

/* Slider layout: 4+ services. Swiper controls wrapper transform. */
.home-services-swiper {
  min-height: 568px;
  padding: 0 0 36px;
  overflow: visible;
}

.home-services-swiper .swiper-wrapper {
  min-height: 568px;
  align-items: center;
}

.home-service-slide {
  position: relative;
  height: 568px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media (min-width: 1200px) {
  .home-services-swiper .home-service-slide {
    width: 356.23px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  /*
   * style.css có rule global `.swiper.swiper-initialized .swiper-slide { overflow:hidden }`.
   * Rule đó cắt mất phần chiều rộng 447.4px của card active.
   * Riêng slider dịch vụ phải cho card active tràn khỏi box slide 356.23px.
   */
  .home-services-swiper.swiper.swiper-initialized
    .swiper-slide.home-service-slide {
    overflow: visible !important;
  }

  .home-services-swiper .swiper-slide-prev,
  .home-services-swiper .swiper-slide-active,
  .home-services-swiper .swiper-slide-next {
    opacity: 1;
    pointer-events: auto;
  }

  .home-services-swiper .swiper-slide-prev,
  .home-services-swiper .swiper-slide-next {
    z-index: 5;
  }

  .home-services-swiper .swiper-slide-active {
    z-index: 20;
  }
}

.home-service-card {
  position: relative;
  width: 356.23px;
  height: 423.33px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 14.38px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition:
    width 0.8s ease,
    height 0.8s ease,
    border-radius 0.8s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.home-services-static .home-service-slide.is-featured,
.home-services-swiper .swiper-slide-active {
  z-index: 20;
}

.home-services-static .home-service-slide.is-featured .home-service-card,
.home-services-swiper .swiper-slide-active .home-service-card {
  width: 447.4px;
  height: 531.67px;
  border-radius: 18.06px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.home-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.home-service-card__image {
  position: relative;
  display: block;
  width: 100%;
  height: 283.89px;
  overflow: hidden;
  transition: height 0.8s ease;
}

.home-services-static .home-service-slide.is-featured .home-service-card__image,
.home-services-swiper .swiper-slide-active .home-service-card__image {
  height: 357.12px;
}

.home-service-card__image::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
}

.home-service-card__image picture,
.home-service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-service-card__image img {
  object-fit: cover;
  transition: transform 0.25s ease;
}

.home-service-card:hover .home-service-card__image img {
  transform: scale(1.03);
}

.home-service-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 74px 20px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.96) 32%,
    #ffffff 100%
  );
  transition:
    gap 0.8s ease,
    padding 0.8s ease;
}

.home-services-static .home-service-slide.is-featured .home-service-card__body,
.home-services-swiper .swiper-slide-active .home-service-card__body {
  gap: 16px;
  padding: 92px 26px 26px;
}

.home-service-card__title {
  width: 100%;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  color: #000000;
  transition:
    font-size 0.8s ease,
    line-height 0.8s ease;
}

.home-service-card__title a {
  color: inherit;
  text-decoration: none;
}

.home-services-static .home-service-slide.is-featured .home-service-card__title,
.home-services-swiper .swiper-slide-active .home-service-card__title {
  font-size: 28px;
  line-height: 39px;
}

.home-service-card__summary {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.8s ease;
}

.home-services-static
  .home-service-slide.is-featured
  .home-service-card__summary,
.home-services-swiper .swiper-slide-active .home-service-card__summary {
  gap: 16px;
}

.home-service-card__summary p {
  flex: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-family: var(--font-body);
  font-size: 14.377px;
  font-weight: 400;
  line-height: 19px;
  color: #000000;
  transition:
    font-size 0.8s ease,
    line-height 0.8s ease;
}

.home-services-static
  .home-service-slide.is-featured
  .home-service-card__summary
  p,
.home-services-swiper .swiper-slide-active .home-service-card__summary p {
  font-size: 18.056px;
  line-height: 23px;
}

.home-service-card__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 6px;
}

.home-service-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-service-card__more {
  align-self: center;
  min-width: 139px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 19px;
  font-family: var(--font-body);
  font-size: 14.377px;
  font-weight: 500;
  line-height: 20px;
  color: #0f0f0f;
  background: #fcc00b;
  border-radius: 4px;
  text-decoration: none;
  transition:
    min-width 0.8s ease,
    height 0.8s ease,
    padding 0.8s ease,
    font-size 0.8s ease,
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.home-services-static .home-service-slide.is-featured .home-service-card__more,
.home-services-swiper .swiper-slide-active .home-service-card__more {
  min-width: 175px;
  height: 49px;
  padding: 12px 24px;
  font-size: 18.056px;
}

.home-service-card__more:hover {
  color: #fcc00b;
  background: #0f0f0f;
  transform: translateY(-3px);
}

/*
 * Desktop exact Figma size lock.
 * Card hai bên: 356.23 x 423.33
 * Card active giữa: 447.4 x 531.67
 * Dùng !important ở đúng 4 kích thước này để tránh CSS global/Swiper ép width.
 */
@media (min-width: 1200px) {
  .home-services-swiper .home-service-slide .home-service-card {
    width: 356.23px !important;
    height: 423.33px !important;
  }

  .home-services-swiper
    .swiper-slide-active.home-service-slide
    .home-service-card {
    width: 447.4px !important;
    height: 531.67px !important;
  }
}

/* Tablet/mobile: one clean card per view, no desktop size morphing. */
@media (max-width: 1199px) {
  .home-services-static,
  .home-services-swiper,
  .home-services-swiper .swiper-wrapper,
  .home-service-slide {
    min-height: 0;
    height: auto;
  }

  .home-services-static__track {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-services-swiper {
    overflow: hidden;
  }

  .home-services-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .home-service-slide,
  .home-services-static .home-service-slide.is-featured,
  .home-services-swiper .swiper-slide-active {
    width: 100%;
  }

  .home-service-card,
  .home-services-static .home-service-slide.is-featured .home-service-card,
  .home-services-swiper .swiper-slide-active .home-service-card {
    width: 100%;
    max-width: 447.4px;
    height: auto;
    min-height: 423.33px;
    margin: 0 auto;
    border-radius: 14.38px;
  }

  .home-service-card__image,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__image,
  .home-services-swiper .swiper-slide-active .home-service-card__image {
    height: 283.89px;
  }

  .home-service-card__body,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__body,
  .home-services-swiper .swiper-slide-active .home-service-card__body {
    gap: 12px;
    padding: 74px 20px 20px;
  }

  .home-service-card__title,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__title,
  .home-services-swiper .swiper-slide-active .home-service-card__title {
    font-size: 22px;
    line-height: 31px;
  }

  .home-service-card__summary,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__summary,
  .home-services-swiper .swiper-slide-active .home-service-card__summary {
    gap: 12px;
  }

  .home-service-card__summary p,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__summary
    p,
  .home-services-swiper .swiper-slide-active .home-service-card__summary p {
    font-size: 14.377px;
    line-height: 19px;
  }

  .home-service-card__more,
  .home-services-static
    .home-service-slide.is-featured
    .home-service-card__more,
  .home-services-swiper .swiper-slide-active .home-service-card__more {
    min-width: 139px;
    height: 39px;
    padding: 9px 19px;
    font-size: 14.377px;
  }
}

@media (max-width: 767px) {
  .home-services-figma > .wrap-content {
    width: calc(100% - 24px);
  }

  .home-services-figma__title {
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 1.25;
  }
}

/* ==================================================
   FIGMA - QUY TRÌNH LÀM VIỆC
   ================================================== */

.home-process-figma {
  position: relative;
  width: 100%;
  min-height: 597px;

  overflow: hidden;
  isolation: isolate;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Ảnh nền */
.home-process-figma::before {
  content: "";

  position: absolute;
  z-index: -3;
  inset: 0;

  background-image: var(--process-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  filter: grayscale(1) brightness(0.62);
  transform: scale(1.01);
}

/* overlay tối + blur giống Figma */
.home-process-figma::after {
  content: "";

  position: absolute;
  z-index: -2;
  inset: 0;

  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  pointer-events: none;
}

.home-process-figma__inner {
  position: relative;
  z-index: 2;

  width: calc(100% - 30px);
  max-width: 1200px;

  padding-top: 58px;
  padding-bottom: 58px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== TITLE ===== */

.home-process-figma__title {
  width: 100%;

  margin: 0 0 36px;

  font-family: var(--font-heading);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 57px;

  text-align: center;
  text-transform: capitalize;

  color: #ffc704;
}

/* ===== GLASS BOX ===== */

.home-process-figma__box {
  position: relative;

  width: 100%;
  height: 370px;

  padding: 46px 38px 50px 40px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);

  box-shadow:
    -27px 66px 29px rgba(145, 145, 145, 0.01),
    -15px 37px 24px rgba(145, 145, 145, 0.03),
    -7px 17px 18px rgba(145, 145, 145, 0.04),
    -2px 4px 10px rgba(145, 145, 145, 0.05),
    inset 0 -3px 4px rgba(255, 255, 255, 0.15),
    inset 0 3px 4px rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
}

/* ===== 5 BƯỚC ===== */

.home-process-figma__steps {
  position: relative;

  width: 1122px;
  max-width: 100%;
  height: 278px;

  display: grid;
  grid-template-columns: repeat(5, 150px);
  column-gap: 93px;

  justify-content: center;
  align-items: flex-start;
}

/* ===== STEP ===== */

.home-process-step {
  position: relative;
  z-index: 2;

  width: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 23px;

  text-align: center;
}

/* circle 85x85 */
.home-process-step__number {
  position: relative;
  z-index: 5;

  width: 85px;
  height: 85px;

  flex: 0 0 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fcc00b;

  font-family: var(--font-body);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;

  color: #000;
}

/* ===== DÒNG CONG NỐI STEP ===== */

.home-process-step:not(:last-child)::after {
  content: "";

  position: absolute;
  z-index: 1;

  top: 41px;
  left: calc(50% + 37px);

  width: 169px;
  height: 43px;

  border-bottom: 2px dashed #fcc00b;
  border-radius: 0 0 50% 50%;

  pointer-events: none;
}

/* 02 -> 03 và 04 -> 05 cong lên */
.home-process-step:nth-child(even):not(:last-child)::after {
  top: 0;

  border-bottom: 0;
  border-top: 2px dashed #fcc00b;

  border-radius: 50% 50% 0 0;
}

/* ===== TEXT ===== */

.home-process-step__content {
  width: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;
}

.home-process-step__content h3 {
  width: 150px;

  margin: 0;

  font-family: var(--font-body);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;

  text-align: center;

  color: #fff;
}

.home-process-step__content p {
  width: 150px;

  margin: 0;

  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;

  text-align: center;

  color: #fff;
}

/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1200px) {
  .home-process-figma__box {
    padding-left: 25px;
    padding-right: 25px;
  }

  .home-process-figma__steps {
    grid-template-columns: repeat(5, 130px);
    column-gap: 45px;
  }

  .home-process-step,
  .home-process-step__content,
  .home-process-step__content h3,
  .home-process-step__content p {
    width: 130px;
  }

  .home-process-step:not(:last-child)::after {
    width: 112px;
  }
}

/* ==================================================
   MOBILE / TABLET NHỎ
   giữ dạng quy trình ngang và cho kéo
   ================================================== */

@media (max-width: 991px) {
  .home-process-figma {
    min-height: auto;
  }

  .home-process-figma__inner {
    padding: 40px 0;
  }

  .home-process-figma__title {
    margin-bottom: 28px;

    font-size: 30px;
    line-height: 42px;
  }

  .home-process-figma__box {
    width: 100%;
    height: auto;

    padding: 35px 20px;

    overflow-x: auto;
    overflow-y: hidden;

    justify-content: flex-start;
  }

  .home-process-figma__steps {
    min-width: 1000px;

    grid-template-columns: repeat(5, 150px);
    column-gap: 62px;

    justify-content: flex-start;

    padding: 0 25px;
  }

  .home-process-step,
  .home-process-step__content,
  .home-process-step__content h3,
  .home-process-step__content p {
    width: 150px;
  }

  .home-process-step:not(:last-child)::after {
    width: 139px;
  }
}

@media (max-width: 575px) {
  .home-process-figma__title {
    font-size: 26px;
    line-height: 36px;
  }

  .home-process-step__number {
    width: 70px;
    height: 70px;

    flex-basis: 70px;

    font-size: 25px;
    line-height: 35px;
  }

  .home-process-step__content h3 {
    font-size: 18px;
    line-height: 25px;
  }

  .home-process-step__content p {
    font-size: 14px;
    line-height: 20px;
  }
}
/* FIX: card dịch vụ active không bị flex ép co chiều rộng */
@media (min-width: 1200px) {
  .home-services-swiper .home-service-card {
    flex: 0 0 auto;
    flex-shrink: 0;
  }
}
/* ==================================================
   HOME - CÂU HỎI THƯỜNG GẶP
   Dashboard:
   - cau-hoi-thuong-gap: câu hỏi + câu trả lời
   - cau-hoi-thuong-gap-image: ảnh 692x505
   ================================================== */
.home-faq-figma {
  width: 100%;
  padding: 72px 0 84px;
  background: #fff;
}

.home-faq-figma__grid {
  display: grid;
  grid-template-columns: 488px 692px;
  gap: 20px;
  align-items: start;
}

.home-faq-figma__grid.is-without-image {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.home-faq-figma__content {
  width: 100%;
  min-width: 0;
}

.home-faq-figma__title {
  margin: 0 0 24px;
  color: #ffc704;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq-item {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.06);
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.home-faq-item__question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 0;
  background: #fff;
  color: #161616;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.home-faq-item__question span {
  min-width: 0;
}

.home-faq-item__question i {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #151515;
  font-size: 18px;
  line-height: 1;
}

.home-faq-item.is-open .home-faq-item__question {
  color: #f2b900;
}

.home-faq-item__answer {
  padding: 0 18px 18px;
  color: #5c5c5c;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.home-faq-item__answer p {
  margin: 0;
}

.home-faq-more {
  margin: 16px auto 0;
  min-width: 126px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid #ffc704;
  border-radius: 7px;
  background: #ffc704;
  color: #111;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.home-faq-more i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.home-faq-more.is-open i {
  transform: rotate(180deg);
}

.home-faq-figma__image {
  width: 692px;
  height: 505px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.home-faq-figma__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1199px) {
  .home-faq-figma__grid {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 18px;
  }

  .home-faq-figma__image {
    width: 100%;
    height: auto;
    aspect-ratio: 692 / 505;
  }
}

@media (max-width: 767px) {
  .home-faq-figma {
    padding: 44px 0 52px;
  }

  .home-faq-figma__grid,
  .home-faq-figma__grid.is-without-image {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-faq-figma__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .home-faq-item__question {
    min-height: 54px;
    padding: 14px 15px;
    font-size: 15px;
  }

  .home-faq-item__answer {
    padding: 0 15px 16px;
    font-size: 14px;
  }

  .home-faq-figma__image {
    order: 2;
  }
}

/* =========================================================
   PROCESS LINE MOTION V5 - SOFT / SMOOTH
   - 01 -> 05 luôn hiện đầy đủ
   - Giữ line gốc đúng thiết kế
   - Vệt sáng lướt mềm theo đường cong
   - Glow vòng tròn nhẹ, không scale/ẩn
   ========================================================= */

/* Luôn giữ đủ 5 vòng tròn */
.home-process-figma .home-process-step__number {
  opacity: 1 !important;
  transform: none !important;
}

/* Line gốc luôn hiện */
.home-process-figma .home-process-step:not(:last-child)::after {
  opacity: 1 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  animation: none !important;
  filter: none !important;
}

/*
 * Vệt sáng phủ lên line gốc.
 * Mask gradient giúp đầu/đuôi vệt sáng tan mềm, không bị cắt cứng.
 */
.home-process-figma .home-process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 3;

  top: 41px;
  left: calc(50% + 37px);

  width: 169px;
  height: 43px;

  border-bottom: 3px solid #fff4a8;
  border-radius: 0 0 50% 50%;

  opacity: 0;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 18%,
    rgba(0, 0, 0, 0.75) 38%,
    #000 50%,
    rgba(0, 0, 0, 0.75) 62%,
    rgba(0, 0, 0, 0.08) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 18%,
    rgba(0, 0, 0, 0.75) 38%,
    #000 50%,
    rgba(0, 0, 0, 0.75) 62%,
    rgba(0, 0, 0, 0.08) 82%,
    transparent 100%
  );

  -webkit-mask-size: 260% 100%;
  mask-size: 260% 100%;
  -webkit-mask-position: 135% 0;
  mask-position: 135% 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  filter: drop-shadow(0 0 4px rgba(255, 245, 180, 0.95))
    drop-shadow(0 0 9px rgba(252, 192, 11, 0.8))
    drop-shadow(0 0 15px rgba(252, 192, 11, 0.35));

  pointer-events: none;
  will-change:
    opacity,
    mask-position,
    -webkit-mask-position;

  animation: processLineFlowV5 7.4s cubic-bezier(0.45, 0, 0.22, 1) infinite !important;
}

/* 02 -> 03 và 04 -> 05 cong lên giống line gốc */
.home-process-figma
  .home-process-step:nth-child(even):not(:last-child)::before {
  top: 0;
  border-bottom: 0;
  border-top: 3px solid #fff4a8;
  border-radius: 50% 50% 0 0;
}

/* Lệch thời gian để ánh sáng chạy 01 -> 02 -> 03 -> 04 -> 05 */
.home-process-figma .home-process-step:nth-child(1)::before {
  animation-delay: 0s !important;
}

.home-process-figma .home-process-step:nth-child(2)::before {
  animation-delay: 1.7s !important;
}

.home-process-figma .home-process-step:nth-child(3)::before {
  animation-delay: 3.4s !important;
}

.home-process-figma .home-process-step:nth-child(4)::before {
  animation-delay: 5.1s !important;
}

@keyframes processLineFlowV5 {
  0% {
    opacity: 0;
    -webkit-mask-position: 135% 0;
    mask-position: 135% 0;
  }

  4% {
    opacity: 0.5;
  }

  8% {
    opacity: 1;
  }

  18% {
    opacity: 1;
    -webkit-mask-position: -15% 0;
    mask-position: -15% 0;
  }

  24% {
    opacity: 0.8;
    -webkit-mask-position: -70% 0;
    mask-position: -70% 0;
  }

  29% {
    opacity: 0;
    -webkit-mask-position: -110% 0;
    mask-position: -110% 0;
  }

  30%,
  100% {
    opacity: 0;
    -webkit-mask-position: 135% 0;
    mask-position: 135% 0;
  }
}
/* ==================================================
   PULSE VÒNG TRÒN GIỐNG ICON HOTLINE
   chạy đồng bộ theo line 01 -> 05
   ================================================== */

/* thời gian từng bước */
.home-process-step:nth-child(1) {
  --process-pulse-delay: 0s;
}

.home-process-step:nth-child(2) {
  --process-pulse-delay: 1.35s;
}

.home-process-step:nth-child(3) {
  --process-pulse-delay: 3.05s;
}

.home-process-step:nth-child(4) {
  --process-pulse-delay: 4.75s;
}

.home-process-step:nth-child(5) {
  --process-pulse-delay: 6.45s;
}

/* vòng tròn chính giữ nguyên */
.home-process-figma .home-process-step__number {
  position: relative;
  z-index: 5;

  opacity: 1 !important;
  transform: none !important;

  animation: none !important;
}

/* 2 vòng sóng bên ngoài */
.home-process-figma .home-process-step__number::before,
.home-process-figma .home-process-step__number::after {
  content: "";

  position: absolute;
  z-index: -1;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0.92);

  pointer-events: none;

  opacity: 0;
}

/* vòng ngoài nét */
.home-process-figma .home-process-step__number::before {
  border: 2px solid rgba(252, 192, 11, 0.85);

  animation: processHotlineRing 7.4s ease-out infinite;

  animation-delay: var(--process-pulse-delay);
}

/* vòng fill mờ giống hotline */
.home-process-figma .home-process-step__number::after {
  background: rgba(252, 192, 11, 0.22);

  animation: processHotlineFill 7.4s ease-out infinite;

  animation-delay: calc(var(--process-pulse-delay) + 0.18s);
}

/* vòng viền bung ra */
@keyframes processHotlineRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  2% {
    opacity: 0.85;
  }

  8% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.22);
  }

  13% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.48);
  }

  14%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.48);
  }
}

/* lớp vàng mờ bung nhẹ phía sau */
@keyframes processHotlineFill {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  2% {
    opacity: 0.42;
  }

  7% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(1.15);
  }

  12% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.38);
  }

  13%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.38);
  }
}
@keyframes processNodeGlowV5 {
  0%,
  14%,
  100% {
    box-shadow: 0 0 0 rgba(252, 192, 11, 0);
    filter: brightness(1);
  }

  4% {
    box-shadow:
      0 0 0 4px rgba(252, 192, 11, 0.07),
      0 0 15px rgba(252, 192, 11, 0.24);
    filter: brightness(1.02);
  }

  8% {
    box-shadow:
      0 0 0 6px rgba(252, 192, 11, 0.04),
      0 0 19px rgba(252, 192, 11, 0.14);
    filter: brightness(1.01);
  }
}

/* Responsive: bám chiều dài line đang có trong source */
@media (max-width: 1200px) {
  .home-process-figma .home-process-step:not(:last-child)::before {
    width: 112px;
  }
}

@media (max-width: 991px) {
  .home-process-figma .home-process-step:not(:last-child)::before {
    width: 139px;
  }
}

/* =========================================================
   HOME - ĐĂNG KÝ SỬA CHỮA NHANH
   Figma desktop: 1200x539, ảnh 529x493, form 555x464.
   ========================================================= */
.home-quick-repair {
  padding: 72px 0 76px;
  background: #fff;
}

.home-quick-repair__card {
  width: 100%;
  max-width: 1200px;
  min-height: 539px;
  margin: 0 auto;
  padding: 23px 22px 23px 23px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.home-quick-repair__inner {
  min-height: 493px;
  display: flex;
  align-items: center;
  gap: 61px;
}

.home-quick-repair__image {
  flex: 0 0 529px;
  width: 529px;
  height: 493px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.home-quick-repair__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-quick-repair__content {
  flex: 0 0 555px;
  width: 555px;
  min-width: 0;
}

.home-quick-repair__title {
  width: 100%;
  margin: 0 0 36px;
  color: #ffc704;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: capitalize;
}

.home-quick-repair__form {
  width: 100%;
  margin: 0;
}

.home-quick-repair__fields {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.home-quick-repair__field {
  width: 100%;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.home-quick-repair__field label {
  margin: 0;
  color: #777;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}

.home-quick-repair__field input {
  width: 100%;
  height: 27px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #c9c9c9;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  box-shadow: none;
}

.home-quick-repair__field input::placeholder {
  color: #c9c9c9;
  opacity: 1;
}

.home-quick-repair__field input:focus {
  border-bottom-color: #ffc704;
  box-shadow: none;
}

.home-quick-repair__field .invalid-feedback {
  margin-top: 2px;
  font-size: 12px;
  line-height: 16px;
}

.home-quick-repair__submit {
  width: 100%;
  min-height: 49px;
  margin-top: 44px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: #fcc00b;
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-transform: capitalize;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.home-quick-repair__submit:hover {
  opacity: 0.92;
}

.home-quick-repair__submit:active {
  transform: translateY(1px);
}

@media (max-width: 1199px) {
  .home-quick-repair__card {
    min-height: auto;
    padding: 20px;
  }

  .home-quick-repair__inner {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }

  .home-quick-repair__image,
  .home-quick-repair__content {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .home-quick-repair__image {
    height: auto;
    aspect-ratio: 529 / 493;
  }

  .home-quick-repair__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .home-quick-repair {
    padding: 44px 0 52px;
  }

  .home-quick-repair__card {
    padding: 14px;
    border-radius: 12px;
  }

  .home-quick-repair__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-quick-repair__image {
    aspect-ratio: 529 / 493;
  }

  .home-quick-repair__title {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.25;
  }

  .home-quick-repair__fields {
    gap: 20px;
  }

  .home-quick-repair__field label {
    font-size: 15px;
  }

  .home-quick-repair__submit {
    margin-top: 30px;
    min-height: 46px;
    font-size: 16px;
  }
}

/* =========================================================
   HOME - LINH KIỆN BÁN KÈM
   DESKTOP: 10 sản phẩm = 2 hàng x 5
   Card 224 x 260 / gap 20px
========================================================= */
.home-accessories {
  width: 100%;
  margin: 0 0 64px;
  padding: 0;
  background: #fff;
}

.home-accessories__inner {
  width: 100%;
  min-height: 766px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.home-accessories__title {
  width: 100%;
  height: 27px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc704;
  font-family: var(--font-heading);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 57px;
  text-align: center;
  text-transform: capitalize;
}

.home-accessories__body {
  width: 1200px;
  max-width: 100%;
  min-height: 655px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}

.home-accessories__tabs {
  width: auto;
  max-width: 100%;
  min-height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-accessories__tabs::-webkit-scrollbar {
  display: none;
}

.home-accessories__tab {
  min-width: 77px;
  height: 36px;
  margin: 0;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 4px;
  background: #d9d9d9;
  color: #9d9d9d;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.home-accessories__tab:hover,
.home-accessories__tab.is-active {
  background: #fcc00b;
  color: #0f0f0f;
}

.home-accessories__results {
  width: 1200px;
  max-width: 100%;
  min-height: 540px;
  transition: opacity 0.2s ease;
}

.home-accessories.is-loading .home-accessories__results {
  opacity: 0.45;
  pointer-events: none;
}

.home-accessories__grid {
  width: 1200px;
  max-width: 100%;
  min-height: 540px;
  display: grid;
  grid-template-columns: repeat(5, 224px);
  grid-auto-rows: 260px;
  column-gap: 20px;
  row-gap: 20px;
  align-items: start;
  justify-content: start;
}

.home-accessory-card {
  width: 224px;
  height: 260px;
  padding: 40px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46.63px;
  overflow: hidden;
  background: #fff;
  border-radius: 6.3634px;
  box-shadow: 0 5.37893px 18.8263px rgba(0, 0, 0, 0.1);
}

.home-accessory-card__image {
  width: 182.88px;
  height: 83.37px;
  flex: 0 0 83.37px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6.3634px;
  background: #fff;
}

.home-accessory-card__image picture {
  width: 100%;
  height: 100%;
  display: block;
}

.home-accessory-card__img,
.home-accessory-card__image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: contain;
  object-position: center;
}

.home-accessory-card__content {
  width: 196px;
  height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0;
}

.home-accessory-card__info {
  width: 196px;
  height: 52px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.home-accessory-card__name {
  width: 196px;
  height: 32px;
  margin: 0 0 3px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: none;
}

.home-accessory-card__name a {
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-accessory-card__price {
  width: 196px;
  height: 17px;
  margin: 0;
  color: #000;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  white-space: nowrap;
}

.home-accessory-card__price strong {
  font-weight: 400;
}

.home-accessory-card__more {
  min-width: 89.42px;
  height: 17.48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1px;
  color: #fcc00b;
  font-family: var(--font-body);
  font-size: 12.1026px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  text-transform: capitalize;
  white-space: nowrap;
}

.home-accessory-card__more:hover {
  color: #e4aa00;
}

.home-accessory-card__more i {
  width: 16.42px;
  height: 17.48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.home-accessories__pagination {
  width: 82px;
  height: 6px;
  margin: 38px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.home-accessories__page {
  width: 20px;
  height: 6px;
  padding: 0;
  flex: 1 1 auto;
  border: 0;
  border-radius: 999px;
  background: #d9d9d9;
  cursor: pointer;
  transition:
    flex-basis 0.2s ease,
    background-color 0.2s ease;
}

.home-accessories__page.is-active {
  flex: 0 0 20px;
  width: 20px;
  background: #fcc00b;
}

.home-accessories__empty {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 1199px) {
  .home-accessories {
    margin-bottom: 52px;
  }

  .home-accessories__inner {
    min-height: 0;
    gap: 48px;
  }

  .home-accessories__title {
    height: auto;
    font-size: 34px;
    line-height: 1.3;
  }

  .home-accessories__body,
  .home-accessories__results {
    width: 100%;
    min-height: 0;
  }

  .home-accessories__grid {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .home-accessory-card {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .home-accessories__body {
    gap: 26px;
  }

  .home-accessories__tabs {
    width: 100%;
    gap: 10px;
  }

  .home-accessories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-accessory-card {
    height: 260px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-accessory-card__content,
  .home-accessory-card__info,
  .home-accessory-card__name,
  .home-accessory-card__price {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .home-accessories {
    margin-bottom: 42px;
  }

  .home-accessories__inner {
    gap: 34px;
  }

  .home-accessories__title {
    font-size: 28px;
  }

  .home-accessories__tab {
    min-width: auto;
    height: 34px;
    padding: 7px 13px;
    font-size: 13px;
  }

  .home-accessories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-accessory-card {
    height: 238px;
    padding: 24px 10px 10px;
    gap: 30px;
  }

  .home-accessory-card__image {
    width: 100%;
    height: 82px;
    flex-basis: 82px;
  }

  .home-accessory-card__content {
    height: 82px;
  }

  .home-accessory-card__name {
    height: 36px;
    font-size: 13px;
    line-height: 18px;
  }

  .home-accessory-card__price,
  .home-accessory-card__more {
    font-size: 11px;
  }

  .home-accessories__pagination {
    margin-top: 26px;
  }
}

/* =========================================================
   INNER PAGES - SERVICES
========================================================= */
.inner-service-page {
  --service-primary: #ffc107;
  --service-text: #111;
  --service-muted: #666;
  --service-border: #e8e8e8;
  --service-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}

.inner-service-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.inner-service-layout > .inner-service-main:only-child {
  grid-column: 1 / -1;
}

.inner-service-sidebar {
  position: sticky;
  top: 20px;
  min-width: 0;
  border: 1px solid var(--service-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.045);
  overflow: hidden;
}

.inner-service-sidebar__title {
  padding: 16px 18px;
  border-bottom: 1px solid var(--service-border);
  color: var(--service-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.inner-service-sidebar__menu {
  padding: 8px 14px 14px;
}

.inner-service-menu-group {
  border-bottom: 1px dashed #d8d8d8;
}

.inner-service-menu-group:last-child {
  border-bottom: 0;
}

.inner-service-menu-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.inner-service-menu-group summary::-webkit-details-marker {
  display: none;
}

.inner-service-menu-group summary a {
  min-width: 0;
  color: var(--service-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.inner-service-menu-group summary i {
  flex: 0 0 auto;
  color: #999;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.inner-service-menu-group[open] summary i {
  transform: rotate(180deg);
}

.inner-service-menu-group ul {
  margin: -2px 0 10px;
  padding: 0 0 0 12px;
  list-style: none;
}

.inner-service-menu-group li a {
  display: block;
  padding: 8px 0;
  color: var(--service-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.inner-service-menu-group.is-active summary a,
.inner-service-menu-group li.is-active a,
.inner-service-menu-group a:hover {
  color: #b98512;
}

.inner-service-heading h1 {
  margin: 0 0 26px;
  color: var(--service-text);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.inner-service-posts {
  display: grid;
  gap: 20px;
}

.inner-service-post {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--service-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.inner-service-post:hover {
  transform: translateY(-3px);
  box-shadow: var(--service-shadow);
}

.inner-service-post__photo {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.inner-service-post__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-service-post__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 4px 4px 0;
}

.inner-service-post__meta,
.inner-service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #888;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.inner-service-post__meta span,
.inner-service-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inner-service-post__title {
  margin: 10px 0 9px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.inner-service-post__title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--service-text);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.inner-service-post__title a:hover {
  color: #b98512;
}

.inner-service-post__desc {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  color: var(--service-muted);
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.inner-service-post__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-top: auto;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--service-primary);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.inner-service-post__more:hover {
  color: #111;
  background: #e6ad00;
}

.inner-service-article {
  min-width: 0;
}

.inner-service-detail-meta {
  margin: -12px 0 20px;
}

.inner-service-detail-photo {
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
}

.inner-service-detail-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.inner-service-detail-desc,
.inner-service-detail-content {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.inner-service-detail-desc {
  margin-bottom: 18px;
}

.inner-service-detail-desc img,
.inner-service-detail-desc iframe,
.inner-service-detail-desc table,
.inner-service-detail-content img,
.inner-service-detail-content iframe,
.inner-service-detail-content table {
  max-width: 100%;
}

.inner-service-detail-desc img,
.inner-service-detail-content img {
  height: auto !important;
}

.inner-service-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.inner-service-detail-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.inner-service-detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-service-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--service-border);
}

.inner-service-related {
  margin-top: 34px;
}

.inner-service-related__title {
  margin-bottom: 18px;
  color: var(--service-text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.inner-service-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.inner-service-related__card {
  min-width: 0;
}

.inner-service-related__photo {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.inner-service-related__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-service-related__card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.inner-service-related__card h3 a {
  color: var(--service-text);
}

.inner-service-related__card h3 a:hover {
  color: #b98512;
}

@media (max-width: 1199px) {
  .inner-service-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
  }

  .inner-service-post {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .inner-service-layout {
    grid-template-columns: 1fr;
  }

  .inner-service-sidebar {
    position: static;
  }

  .inner-service-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .inner-service-heading h1 {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
  }

  .inner-service-post {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .inner-service-post__body {
    padding: 0;
  }

  .inner-service-post__title {
    font-size: 20px;
  }

  .inner-service-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .inner-service-related__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME - ĐỐI TÁC CỦA CHÚNG TÔI
   FIGMA:
   - section gap title -> logos: 41px
   - border line viewport: ~1920px
   - logo card: 285x90px
   - gap card: 20px
   - > 6 logo: slider
========================================================= */

.home-partners {
  width: 100%;
  margin: 64px 0 72px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.home-partners__container {
  width: 100%;
  margin: 0 auto;
}

.home-partners__title {
  width: 100%;
  margin: 0 0 41px;
  padding: 0;

  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 57px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;

  color: #ffc704;
}

/*
 * Figma: 2 đường line dài khoảng 1920px.
 * Không cho dính sát mép viewport.
 */
.home-partners__stage {
  box-sizing: border-box;
  width: min(1920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 23px 0;

  overflow: hidden;

  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}

/*
 * Vùng thực tế chứa đúng 6 card desktop:
 * 6 x 285 + 5 x 20 = 1810px
 */
.home-partners__static,
.home-partners__swiper {
  width: min(1810px, calc(100% - 40px));
  margin: 0 auto;
}

/* <= 6 logo: đứng yên + căn giữa */
.home-partners__static {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-partners__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;

  width: max-content;
  max-width: 100%;
  margin: 0 auto;

  gap: 20px;
}

/* > 6 logo: Swiper */
.home-partners__swiper {
  overflow: hidden;
}

.home-partners__swiper .swiper-wrapper {
  align-items: center;
}

.home-partners__swiper .swiper-slide {
  width: 285px !important;
  height: 90px !important;
  flex: 0 0 285px !important;
  overflow: visible;
}

/* Card đúng Figma */
.home-partner-card {
  box-sizing: border-box;

  width: 285px !important;
  height: 90px !important;
  min-width: 285px;
  flex: 0 0 285px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  overflow: hidden;

  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

/*
 * Chỉ cố định vùng logo.
 * Ảnh gốc bên trong giữ nguyên tỉ lệ, KHÔNG stretch 285x90.
 */
.home-partner-card__logo {
  width: 182px;
  height: 65px;
  flex: 0 0 182px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.home-partner-card__logo img {
  display: block !important;

  width: auto !important;
  height: auto !important;

  max-width: 182px !important;
  max-height: 65px !important;

  min-width: 0 !important;
  min-height: 0 !important;

  margin: 0 auto !important;

  object-fit: contain !important;
  object-position: center !important;

  transform: none !important;
  filter: none !important;
}

/* Không cho các selector scale-img/global làm méo logo */
.home-partner-card:hover .home-partner-card__logo img,
.home-partner-card__logo:hover img {
  transform: none !important;
}

/* Không dùng arrow/pagination cho partner */
.home-partners .swiper-button-prev,
.home-partners .swiper-button-next,
.home-partners .swiper-pagination {
  display: none !important;
}

@media (max-width: 1199px) {
  .home-partners {
    margin: 50px 0 56px;
  }

  .home-partners__title {
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 1.3;
  }

  .home-partners__stage {
    width: calc(100% - 30px);
    padding: 18px 0;
  }

  .home-partners__static,
  .home-partners__swiper {
    width: calc(100% - 30px);
  }

  .home-partners__static .home-partners__track {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .home-partners {
    margin: 36px 0 42px;
  }

  .home-partners__title {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.25;
  }

  .home-partners__stage {
    width: calc(100% - 20px);
    padding: 14px 0;
  }

  .home-partners__static,
  .home-partners__swiper {
    width: calc(100% - 20px);
  }

  .home-partners__static .home-partners__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .home-partners__static .home-partner-card {
    width: 100% !important;
    min-width: 0;
    flex-basis: auto;
  }

  .home-partners__swiper .swiper-slide,
  .home-partner-card {
    width: 180px !important;
    min-width: 180px;
    height: 76px !important;
    flex-basis: 180px !important;
  }

  .home-partner-card__logo {
    width: 145px;
    height: 54px;
    flex-basis: 145px;
  }

  .home-partner-card__logo img {
    max-width: 145px !important;
    max-height: 54px !important;
  }
}

/* =========================================================
   MOBILE HEADER - STICKY + WHITE
   Additive override: giữ nguyên toàn bộ CSS hiện có.
   ========================================================= */
@media (max-width: 1025px) {
  .above-nav {
    position: relative;
    z-index: 1000;
  }

  .above-nav .header {
    position: relative;
    z-index: 10020;
    width: 100%;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    transition:
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }

  body.mobile-header-sticky .above-nav {
    padding-bottom: var(--mobile-header-sticky-height, 0px);
  }

  body.mobile-header-sticky .above-nav .header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 10020;
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.1);
  }

  .above-nav .header .header-menu-mobile-btn,
  .above-nav .header .mobile-header-search-toggle {
    background: transparent !important;
    color: #111111 !important;
  }

  .above-nav .header .header-menu-mobile-btn span,
  .above-nav .header .menu-mobile-btn span {
    background: #111111 !important;
  }

  .above-nav .header .mobile-header-search-toggle i {
    color: #111111 !important;
  }

  .above-nav .header .cart-head {
    color: #111111;
    border-color: rgba(15, 15, 15, 0.14);
  }

  .above-nav .header .cart-head:hover {
    color: #111111;
  }

  .above-nav .header .logo-header {
    position: relative;
    z-index: 2;
  }

  .opacity-menu {
    z-index: 10030;
  }

  .header-left-fixwidth {
    z-index: 10040;
  }
}

@media (min-width: 1026px) {
  body.mobile-header-sticky .above-nav {
    padding-bottom: 0;
  }
}

/* =========================================================
   HOME - KHÁCH HÀNG NÓI GÌ VỀ CHÚNG TÔI
   FIGMA desktop:
   - tổng: 1200 x 455
   - ảnh trái: 488 x 455
   - gap: 20px
   - cột phải: 692 x 405
   - card giữa: 382.53 x 318.15
   - card hai bên: 248.34 x 206.11
   - > 3 đánh giá: JS tự chạy 5 giây/lần
========================================================= */

.home-testimonials {
  width: 100%;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #fff;
}

.home-testimonials__layout {
  width: 1200px;
  max-width: 100%;
  min-height: 455px;

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

.home-testimonials__image {
  width: 488px;
  height: 455px;
  flex: 0 0 488px;

  margin: 0;
  overflow: hidden;

  border-radius: 22.6357px;
  background: #f5f5f5;
}

.home-testimonials__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-testimonials__content {
  width: 692px;
  height: 405px;
  flex: 0 0 692px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  gap: 50px;
}

.home-testimonials__title {
  width: 692px;
  margin: 0;

  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 57px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;

  color: #ffc704;
}

.home-testimonials__carousel {
  width: 692px;
  height: 356px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  gap: 31px;
}

.home-testimonials__cards {
  position: relative;

  width: 692px;
  height: 318.15px;
  flex: 0 0 318.15px;
}

/* Mỗi slide được JS đổi class vị trí. */
.home-testimonial-slide {
  position: absolute;
  top: 63.75px;
  left: 221.5px;

  width: 248.34px;
  height: 206.11px;

  opacity: 0;
  z-index: 0;
  pointer-events: none;

  transition:
    left 0.85s ease,
    top 0.85s ease,
    width 0.85s ease,
    height 0.85s ease,
    opacity 0.55s ease;
}

.home-testimonial-slide.is-prev {
  left: 0.5px;
  top: 63.75px;
  opacity: 1;
  z-index: 1;
}

.home-testimonial-slide.is-active {
  left: 154.73px;
  top: 0;

  width: 382.53px;
  height: 318.15px;

  opacity: 1;
  z-index: 3;
}

.home-testimonial-slide.is-next {
  left: 443.16px;
  top: 65.5px;
  opacity: 1;
  z-index: 1;
}

.home-testimonial-slide.is-hidden {
  left: 221.5px;
  top: 63.75px;
  opacity: 0;
  z-index: 0;
}

/* Base = card hai bên trong Figma */
.home-testimonial-card {
  box-sizing: border-box;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  padding: 15.7202px;
  gap: 21.83px;

  background: #fff;
  box-shadow: 0 3.49337px 6.98674px 2.62003px rgba(0, 0, 0, 0.08);
  border-radius: 17.4669px;

  overflow: hidden;

  transition:
    padding 0.85s ease,
    gap 0.85s ease,
    border-radius 0.85s ease,
    box-shadow 0.85s ease;
}

.home-testimonial-card__top {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 19.21px;
}

.home-testimonial-card__quote {
  display: block;

  width: 23.58px;
  height: 20.96px;

  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 34px;
  font-weight: 700;

  color: #d9d9d9;

  overflow: hidden;

  transition:
    width 0.85s ease,
    height 0.85s ease,
    font-size 0.85s ease,
    line-height 0.85s ease;
}

.home-testimonial-card__body {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 9.61px;
}

.home-testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 3.49px;

  font-size: 17.47px;
  line-height: 17.47px;

  transition:
    gap 0.85s ease,
    font-size 0.85s ease,
    line-height 0.85s ease;
}

.home-testimonial-card__stars span {
  color: #d9d9d9;
}

.home-testimonial-card__stars span.is-filled {
  color: #fcc00b;
}

.home-testimonial-card__review {
  width: 100%;
  margin: 0;

  font-family: var(--font-body);
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;

  color: #000;

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

  transition:
    font-size 0.85s ease,
    line-height 0.85s ease;
}

.home-testimonial-card__customer {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 8.73px;

  transition: gap 0.85s ease;
}

.home-testimonial-card__avatar {
  width: 36.68px;
  height: 36.68px;
  flex: 0 0 36.68px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #fcc00b;
  border-radius: 999px;

  transition:
    width 0.85s ease,
    height 0.85s ease,
    flex-basis 0.85s ease;
}

.home-testimonial-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.home-testimonial-card__initials {
  /* width: 100%; */
  /* height: 100%; */

  align-items: center;
  justify-content: center;

  font-family: var(--font-body);
  font-size: 13.9735px;
  line-height: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;

  color: #000;

  transition:
    font-size 0.85s ease,
    line-height 0.85s ease;
}

.home-testimonial-card__identity {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 1.75px;

  transition: gap 0.85s ease;
}

.home-testimonial-card__identity strong {
  max-width: 100%;

  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;

  color: #000;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition:
    font-size 0.85s ease,
    line-height 0.85s ease;
}

.home-testimonial-card__identity small {
  max-width: 100%;

  font-family: var(--font-body);
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;

  color: #000;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition:
    font-size 0.85s ease,
    line-height 0.85s ease;
}

/* Active = card lớn giữa, đúng tỷ lệ Figma */
.home-testimonial-slide.is-active .home-testimonial-card {
  padding: 24.2146px;
  gap: 33.63px;

  box-shadow: 0 5.38102px 10.762px 4.03576px rgba(0, 0, 0, 0.08);
  border-radius: 26.9051px;
}

.home-testimonial-slide.is-active .home-testimonial-card__top {
  gap: 29.6px;
}

.home-testimonial-slide.is-active .home-testimonial-card__quote {
  width: 36.32px;
  height: 32.29px;

  font-size: 64px;
  line-height: 52px;
}

.home-testimonial-slide.is-active .home-testimonial-card__body {
  gap: 14.8px;
}

.home-testimonial-slide.is-active .home-testimonial-card__stars {
  gap: 5.38px;
  font-size: 26.91px;
  line-height: 26.91px;
}

.home-testimonial-slide.is-active .home-testimonial-card__review {
  font-size: 14px;
  line-height: 20px;
}

.home-testimonial-slide.is-active .home-testimonial-card__customer {
  gap: 13.45px;
}

.home-testimonial-slide.is-active .home-testimonial-card__avatar {
  width: 56.5px;
  height: 56.5px;
  flex-basis: 56.5px;
}

.home-testimonial-slide.is-active .home-testimonial-card__initials {
  font-size: 21.5241px;
  line-height: 26px;
}

.home-testimonial-slide.is-active .home-testimonial-card__identity {
  gap: 2.69px;
}

.home-testimonial-slide.is-active .home-testimonial-card__identity strong {
  font-size: 20px;
  line-height: 28px;
}

.home-testimonial-slide.is-active .home-testimonial-card__identity small {
  font-size: 16px;
  line-height: 23px;
}

/* Figma progress: 82 x 6 */
.home-testimonials__progress {
  position: relative;

  width: 82px;
  height: 6px;
  flex: 0 0 6px;

  overflow: hidden;

  border-radius: 999px;
  background: #d9d9d9;
}

.home-testimonials__progress-track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #d9d9d9;
}

.home-testimonials__progress-active {
  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 6px;

  border-radius: 999px;
  background: #fcc00b;

  transition: transform 0.85s ease;
}

/* Tablet */
@media (max-width: 1199px) {
  .home-testimonials {
    padding: 48px 0 54px;
  }

  .home-testimonials__layout {
    min-height: 0;
    gap: 18px;
  }

  .home-testimonials__image {
    width: 40%;
    height: auto;
    aspect-ratio: 488 / 455;
    flex: 0 0 40%;
  }

  .home-testimonials__content {
    width: calc(60% - 18px);
    height: auto;
    flex: 0 0 calc(60% - 18px);
  }

  .home-testimonials__title,
  .home-testimonials__carousel,
  .home-testimonials__cards {
    width: 100%;
  }

  .home-testimonials__title {
    font-size: 32px;
  }

  /*
   * Giữ tỷ lệ bố cục 692px bằng scale container trên tablet,
   * tránh card tràn ngang.
   */
  .home-testimonials__cards {
    transform-origin: top left;
  }
}

/* Mobile: ảnh trên, testimonial dưới; card active ưu tiên đọc rõ */
@media (max-width: 767px) {
  .home-testimonials {
    padding: 36px 0 42px;
  }

  .home-testimonials__layout {
    flex-direction: column;
    gap: 28px;
  }

  .home-testimonials__image {
    width: 100%;
    max-width: 488px;
    flex: none;
  }

  .home-testimonials__content {
    width: 100%;
    height: auto;
    flex: none;
    gap: 26px;
  }

  .home-testimonials__title {
    width: 100%;
    font-size: 28px;
    line-height: 1.3;
  }

  .home-testimonials__carousel {
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .home-testimonials__cards {
    width: 100%;
    height: 300px;
  }

  .home-testimonial-slide,
  .home-testimonial-slide.is-prev,
  .home-testimonial-slide.is-next,
  .home-testimonial-slide.is-hidden {
    left: 50%;
    top: 48px;

    width: 210px;
    height: 190px;

    opacity: 0.22;

    transform: translateX(-50%) scale(0.88);
  }

  .home-testimonial-slide.is-prev {
    left: 8%;
    transform: translateX(-50%) scale(0.82);
  }

  .home-testimonial-slide.is-next {
    left: 92%;
    transform: translateX(-50%) scale(0.82);
  }

  .home-testimonial-slide.is-active {
    left: 50%;
    top: 0;

    width: min(340px, calc(100vw - 40px));
    height: 285px;

    opacity: 1;

    transform: translateX(-50%);
  }

  .home-testimonial-slide.is-active .home-testimonial-card {
    padding: 20px;
  }

  .home-testimonial-slide.is-active .home-testimonial-card__stars {
    font-size: 22px;
    line-height: 22px;
  }

  .home-testimonial-slide.is-active .home-testimonial-card__review {
    font-size: 13px;
    line-height: 19px;
  }

  .home-testimonial-slide.is-active .home-testimonial-card__identity strong {
    font-size: 17px;
    line-height: 23px;
  }

  .home-testimonial-slide.is-active .home-testimonial-card__identity small {
    font-size: 13px;
    line-height: 18px;
  }
}

/* =========================================================
   HOME - KIẾN THỨC CẦN BIẾT
   Figma:
   - section 1200 x 901
   - title gap 53px
   - top grid 1200 x 562
   - main card 692 x 562
   - side column 486 x 562, gap 20px
   - see all 1200 x 239
========================================================= */

.home-knowledge {
  width: 100%;
  padding: 58px 0 70px;
  overflow: hidden;
  background: #fff;
}

.home-knowledge__title {
  width: 100%;
  margin: 0 0 53px;
  padding: 0;

  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 57px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;

  color: #ffc704;
}

.home-knowledge__content {
  width: 1200px;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 20px;
}

.home-knowledge__grid {
  width: 1200px;
  max-width: 100%;
  height: 562px;

  display: grid;
  grid-template-columns: 692px 486px;
  align-items: stretch;

  gap: 22px;
}

.home-knowledge__grid.is-one {
  grid-template-columns: 1fr;
}

.home-knowledge__grid.is-one .home-knowledge-card--main {
  width: 100%;
}

.home-knowledge__grid.is-two {
  grid-template-columns: 692px 486px;
}

.home-knowledge__side {
  width: 486px;
  height: 562px;

  display: flex;
  flex-direction: column;

  gap: 20px;
}

.home-knowledge-card {
  position: relative;

  overflow: hidden;

  background: #f3f3f3;
}

.home-knowledge-card--main {
  width: 692px;
  height: 562px;

  border-radius: 20.9415px;
}

.home-knowledge-card--side {
  width: 486px;
  height: 271px;

  border-radius: 14.8361px;
}

.home-knowledge-card__link {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 23.2683px;

  color: #000;
}

.home-knowledge-card--side .home-knowledge-card__link {
  padding: 16.4845px;
}

.home-knowledge-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover;
  object-position: center;

  transition: transform 0.45s ease;
}

.home-knowledge-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0f0f0f 100%);
}

.home-knowledge-card__panel {
  position: relative;
  z-index: 2;

  box-sizing: border-box;

  width: 638.71px;
  min-height: 180.62px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 27.35px;
  gap: 11.63px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  border-radius: 22.7917px;
}

.home-knowledge-card--side .home-knowledge-card__panel {
  width: 452.5px;
  min-height: 104.67px;

  padding: 19.3762px;
  gap: 8.24px;

  border-radius: 16.1469px;
}

.home-knowledge-card__date {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 5px;

  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;

  color: #000;
}

.home-knowledge-card--side .home-knowledge-card__date {
  font-size: 10px;
  line-height: 14px;
}

.home-knowledge-card__name {
  width: 100%;

  margin: 0;

  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 35px;
  font-weight: 900;
  text-transform: uppercase;

  color: #000;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}

.home-knowledge-card--side .home-knowledge-card__name {
  font-size: 17.7616px;
  line-height: 25px;
}

.home-knowledge-card__footer {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.home-knowledge-card__author,
.home-knowledge-card__stats,
.home-knowledge-card__stats > span {
  display: flex;
  align-items: center;
}

.home-knowledge-card__author {
  min-width: 0;

  gap: 4.65px;

  font-family: var(--font-body);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;

  color: #231b00;
}

.home-knowledge-card__author-avatar {
  width: 19.69px;
  height: 19.69px;
  flex: 0 0 19.69px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  font-size: 9px;
  line-height: 1;
  font-weight: 700;

  background: #fcc00b;
  border-radius: 999px;

  color: #231b00;
}

.home-knowledge-card__stats {
  gap: 11.48px;

  font-family: var(--font-body);
  font-size: 13.4617px;
  line-height: 19px;

  color: #000;
}

.home-knowledge-card__stats > span {
  gap: 3.53px;
}

.home-knowledge-card__stats i {
  font-size: 15.89px;
  line-height: 1;
}

.home-knowledge-card--side .home-knowledge-card__author {
  gap: 3.3px;

  font-size: 9px;
  line-height: 13px;
}

.home-knowledge-card--side .home-knowledge-card__author-avatar {
  width: 13.95px;
  height: 13.95px;
  flex-basis: 13.95px;

  font-size: 7px;
}

.home-knowledge-card--side .home-knowledge-card__stats {
  gap: 8.13px;

  font-size: 10px;
  line-height: 14px;
}

.home-knowledge-card--side .home-knowledge-card__stats > span {
  gap: 2.5px;
}

.home-knowledge-card--side .home-knowledge-card__stats i {
  font-size: 11.26px;
}

.home-knowledge-card:hover .home-knowledge-card__image {
  transform: scale(1.035);
}

/* XEM TẤT CẢ - 1200 x 239 */
.home-knowledge__all {
  position: relative;

  width: 1200px;
  max-width: 100%;
  height: 239px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 20px;

  color: #fafafa;
}

.home-knowledge__all-bg,
.home-knowledge__all-overlay {
  position: absolute;
  inset: 0;
}

.home-knowledge__all-bg {
  z-index: 0;

  background-image: var(--knowledge-more-bg);
  background-size: cover;
  background-position: center;

  filter: grayscale(1);
  transform: scale(1.02);

  transition: transform 0.45s ease;
}

.home-knowledge__all-overlay {
  z-index: 1;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.home-knowledge__all-label {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 54px;
  font-weight: 900;

  color: #fafafa;
}

.home-knowledge__all-label i {
  width: 45.44px;
  height: 45.44px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 33px;
  line-height: 1;
}

.home-knowledge__all:hover {
  color: #fafafa;
}

.home-knowledge__all:hover .home-knowledge__all-bg {
  transform: scale(1.06);
}

/* Laptop / tablet */
@media (max-width: 1199px) {
  .home-knowledge {
    padding: 50px 0 58px;
  }

  .home-knowledge__title {
    margin-bottom: 38px;
    font-size: 34px;
    line-height: 1.3;
  }

  .home-knowledge__grid {
    width: 100%;
    height: auto;

    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);

    gap: 16px;
  }

  .home-knowledge-card--main,
  .home-knowledge__side,
  .home-knowledge-card--side {
    width: 100%;
  }

  .home-knowledge-card--main {
    height: auto;
    aspect-ratio: 692 / 562;
  }

  .home-knowledge__side {
    height: auto;
    gap: 16px;
  }

  .home-knowledge-card--side {
    height: auto;
    aspect-ratio: 486 / 271;
  }

  .home-knowledge-card__panel,
  .home-knowledge-card--side .home-knowledge-card__panel {
    width: 100%;
  }

  .home-knowledge-card__name {
    font-size: 21px;
    line-height: 29px;
  }

  .home-knowledge-card--side .home-knowledge-card__name {
    font-size: 15px;
    line-height: 21px;
  }

  .home-knowledge__all {
    height: auto;
    aspect-ratio: 1200 / 239;
  }

  .home-knowledge__all-label {
    font-size: 32px;
    line-height: 1.3;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-knowledge {
    padding: 36px 0 44px;
  }

  .home-knowledge__title {
    margin-bottom: 26px;
    font-size: 28px;
    line-height: 1.3;
  }

  .home-knowledge__grid,
  .home-knowledge__grid.is-two {
    display: flex;
    flex-direction: column;

    height: auto;

    gap: 12px;
  }

  .home-knowledge-card--main {
    aspect-ratio: 1 / 0.82;
    min-height: 330px;

    border-radius: 16px;
  }

  .home-knowledge__side {
    display: grid;
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .home-knowledge-card--side {
    min-height: 235px;

    aspect-ratio: 1.55 / 1;

    border-radius: 14px;
  }

  .home-knowledge-card__link,
  .home-knowledge-card--side .home-knowledge-card__link {
    padding: 12px;
  }

  .home-knowledge-card__panel,
  .home-knowledge-card--side .home-knowledge-card__panel {
    min-height: 0;

    padding: 15px;
    gap: 8px;

    border-radius: 14px;
  }

  .home-knowledge-card__date,
  .home-knowledge-card--side .home-knowledge-card__date {
    font-size: 10px;
    line-height: 14px;
  }

  .home-knowledge-card__name,
  .home-knowledge-card--side .home-knowledge-card__name {
    font-size: 18px;
    line-height: 24px;
  }

  .home-knowledge-card__author,
  .home-knowledge-card--side .home-knowledge-card__author {
    font-size: 10px;
    line-height: 14px;
  }

  .home-knowledge-card__stats,
  .home-knowledge-card--side .home-knowledge-card__stats {
    font-size: 10px;
    line-height: 14px;
  }

  .home-knowledge__all {
    min-height: 120px;

    aspect-ratio: auto;

    border-radius: 14px;
  }

  .home-knowledge__all-label {
    font-size: 24px;
    line-height: 1.3;
  }

  .home-knowledge__all-label i {
    width: 32px;
    height: 32px;

    font-size: 24px;
  }
}

/* =========================================================
   HOME - TÌM CHÚNG TÔI QUA
   Figma:
   - full width: 1920 x 578
   - inner: 1198.26 x 451.74
   - top: 1198.26 x 91.74
   - title: 373px / 38px
   - social: 3 x 255.42 x 91.74, gap 13px
   - map: 1198.26 x 325
   - map button: 269 x 49
========================================================= */

.home-find-us {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 578px;

  padding: 63px 0;

  overflow: hidden;

  background: #111;
}

.home-find-us__background,
.home-find-us__black,
.home-find-us__blur {
  position: absolute;
  inset: 0;
}

.home-find-us__background {
  z-index: 0;

  background-image: var(--find-us-bg);
  background-size: cover;
  background-position: center;

  filter: grayscale(1);
  transform: scale(1.02);
}

.home-find-us__black {
  z-index: 1;

  background: rgba(0, 0, 0, 0.68);
  mix-blend-mode: hue;
}

.home-find-us__blur {
  z-index: 2;

  background: rgba(0, 0, 0, 0.1);

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.home-find-us__inner {
  position: relative;
  z-index: 3;

  width: calc(100% - 20px);
  max-width: 1200px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 35px;
}

.home-find-us__top {
  width: 100%;
  height: 91.74px;

  display: grid;
  grid-template-columns: 373px minmax(0, 1fr);
  align-items: center;

  gap: 35px;
}

.home-find-us__title {
  width: 373px;

  margin: 0;
  padding: 0;

  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 57px;
  font-weight: 700;
  text-transform: capitalize;

  color: #ffc704;
}

.home-find-us__socials {
  min-width: 0;
  height: 91.74px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 13px;
}

.home-find-us-social {
  width: 100%;
  height: 91.74px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  padding: 18px 22px;

  overflow: hidden;

  background: #fff;
  border-radius: 11.88px;

  color: #0f0f0f;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

a.home-find-us-social:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.home-find-us-social i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  line-height: 1;
}

.home-find-us-social strong {
  display: block;

  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.home-find-us-social--youtube i {
  color: #ff0000;
}

.home-find-us-social--youtube strong {
  color: #282828;
}

.home-find-us-social--facebook i,
.home-find-us-social--facebook strong {
  color: #1877f2;
}

.home-find-us-social--tiktok i,
.home-find-us-social--tiktok strong {
  color: #0f0f0f;
}

.home-find-us__map {
  position: relative;

  width: 100%;
  height: 325px;

  overflow: hidden;

  background: #fff;
  border-radius: 18px;
}

.home-find-us__map-frame {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: #e9e9e9;
}

.home-find-us__map-frame iframe {
  display: block;

  width: 100% !important;
  max-width: none !important;
  height: 100% !important;

  margin: 0 !important;
  border: 0 !important;
}

.home-find-us__map-empty {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  font-family: var(--font-body);
  font-size: 16px;

  color: #777;
}

.home-find-us__map-empty i {
  font-size: 34px;
}

.home-find-us__map-button {
  position: absolute;
  z-index: 2;

  right: 19px;
  bottom: 17px;

  width: 280px;
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
  padding: 12px 24px;

  background: #fcc00b;
  border-radius: 4px;

  font-family: var(--font-body);
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;

  color: #0f0f0f;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.home-find-us__map-button:hover {
  color: #0f0f0f;
  background: #ffc704;

  transform: translateY(-2px);
}

.home-find-us__map-button i {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
  line-height: 1;
}

/* Laptop / tablet */
@media (max-width: 1199px) {
  .home-find-us {
    min-height: auto;
    padding: 52px 0;
  }

  .home-find-us__top {
    height: auto;

    grid-template-columns: 300px minmax(0, 1fr);

    gap: 24px;
  }

  .home-find-us__title {
    width: auto;

    font-size: 34px;
    line-height: 1.3;
  }

  .home-find-us__socials {
    height: 80px;

    gap: 10px;
  }

  .home-find-us-social {
    height: 80px;

    padding: 15px 16px;
  }

  .home-find-us-social i {
    font-size: 28px;
  }

  .home-find-us-social strong {
    font-size: 20px;
  }

  .home-find-us__map {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-find-us {
    padding: 36px 0;
  }

  .home-find-us__inner {
    gap: 24px;
  }

  .home-find-us__top {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 20px;
  }

  .home-find-us__title {
    width: 100%;

    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .home-find-us__socials {
    width: 100%;
    height: auto;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 8px;
  }

  .home-find-us-social {
    height: 68px;

    flex-direction: column;

    gap: 5px;
    padding: 8px 6px;

    border-radius: 9px;
  }

  .home-find-us-social i {
    font-size: 22px;
  }

  .home-find-us-social strong {
    max-width: 100%;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 13px;
  }

  .home-find-us__map {
    height: 280px;

    border-radius: 14px;
  }

  .home-find-us__map-button {
    right: 12px;
    bottom: 12px;

    width: auto;
    max-width: calc(100% - 24px);
    height: 44px;

    padding: 9px 14px;

    font-size: 14px;
    line-height: 20px;
  }

  .home-find-us__map-button i {
    width: 20px;
    height: 20px;

    font-size: 18px;
  }
}

/* =========================================================
   FOOTER - FIGMA TUỆ MẪN
   Desktop:
   - vùng đen: cao 610px
   - card trắng: 1200 x 479px
   - main content: 1091 x 279.22px
   - brand: 423px
   - policy/contact: 569px, gap 92px
========================================================= */

.footer-figma {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 610px;

  padding: 80px 0;

  overflow: hidden;

  background-color: #0f0f0f;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*
 * Nếu khách upload BG thì vẫn giữ tone tối đúng Figma,
 * đồng thời giúp card trắng và nội dung nổi rõ.
 */
.footer-figma::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 0;

  background: rgba(15, 15, 15, 0.72);
}

.footer-figma__wrap {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
}

.footer-figma__card {
  width: 1200px;
  max-width: 100%;
  min-height: 479px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 61px 3px 24px;

  background: #fdfdfd;
  border-radius: 18px;
}

.footer-figma__content {
  width: 1195px;
  max-width: 100%;
  min-height: 365px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  gap: 94px;
}

.footer-figma__main {
  width: 1091px;
  max-width: calc(100% - 104px);
  min-height: 279.22px;

  display: flex;
  align-items: center;

  gap: 99px;
}

.footer-figma__brand {
  width: 423px;
  min-height: 279.22px;
  flex: 0 0 423px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  gap: 7px;
}

.footer-figma__logo {
  width: 96px;
  height: 87px;
  flex: 0 0 87px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
}

.footer-figma__logo img {
  display: block;

  width: 96px;
  height: 87px;

  object-fit: contain;
  object-position: left center;
}

.footer-figma__brand-copy {
  width: 423px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 4px;
}

.footer-figma__brand-copy h2 {
  width: 100%;

  margin: 0;

  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;

  color: #000;
}

.footer-figma__brand-copy p {
  width: 100%;

  margin: 0;

  font-family: var(--font-body);
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;

  color: #000;
}

.footer-figma__socials {
  width: auto;
  height: auto;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;
}

.footer-figma__socials a,
.footer-figma__socials span {
  width: 41px;
  height: 41px;
  flex: 0 0 41px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #0f0f0f;
  border-radius: 999px;

  color: #0f0f0f;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-figma__socials a:hover {
  color: #fff;
  background: #0f0f0f;

  transform: translateY(-2px);
}

.footer-figma__social--facebook i {
  color: #1877f2;
}

.footer-figma__social--youtube i {
  color: #ff0000;
}

.footer-figma__social--tiktok i {
  color: #0f0f0f;
}

.footer-figma__social--instagram i {
  color: #e4405f;
}

.footer-figma__social--maps i {
  color: #fbbc04;
}

.footer-figma__socials a:hover i {
  color: #fff;
}

.footer-figma__socials i {
  font-size: 17px;
  line-height: 1;
}

.footer-figma__right {
  width: 569px;
  min-height: 194px;
  flex: 0 0 569px;

  display: flex;
  align-items: flex-start;

  gap: 92px;
}

.footer-figma__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 20px;
}

.footer-figma__column--policy {
  width: 158px;
  flex: 0 0 158px;
}

.footer-figma__column--contact {
  width: 321px;
  flex: 0 0 321px;
}

.footer-figma__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

.footer-figma__heading h3 {
  margin: 0;

  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;

  white-space: nowrap;

  color: #fcc00b;
}

.footer-figma__column--contact .footer-figma__heading h3 {
  line-height: 29px;
}

.footer-figma__heading > span {
  width: 40px;
  height: 2px;

  display: block;

  background: #0f0f0f;
}

.footer-figma__policies {
  width: 100%;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-figma__policies li {
  width: 100%;

  padding: 0 0 12px;
}

.footer-figma__policies li:last-child {
  padding-bottom: 0;
}

.footer-figma__policies a,
.footer-figma__policies span {
  display: inline-flex;
  align-items: center;

  max-width: 100%;

  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;

  color: #000;
}

.footer-figma__policies a:hover {
  color: #fcc00b;
}

.footer-figma__contact-list {
  width: 321px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

.footer-figma__contact-item {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 16px;

  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;

  color: #000;
}

.footer-figma__contact-item--address {
  align-items: flex-start;
}

.footer-figma__contact-item i {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  line-height: 1;

  color: #000;
}

.footer-figma__contact-item span,
.footer-figma__contact-item a {
  min-width: 0;

  color: #000;

  overflow-wrap: anywhere;
}

.footer-figma__contact-item a:hover {
  color: #fcc00b;
}

.footer-figma__copyright {
  width: 100%;

  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;

  color: #000;
}

/* Laptop / tablet */
@media (max-width: 1199px) {
  .footer-figma {
    min-height: auto;

    padding: 60px 0;
  }

  .footer-figma__card {
    min-height: auto;

    padding: 48px 32px 24px;
  }

  .footer-figma__content {
    min-height: 0;

    gap: 60px;
  }

  .footer-figma__main {
    width: 100%;
    max-width: 100%;
    min-height: 0;

    align-items: flex-start;

    gap: 50px;
  }

  .footer-figma__brand {
    width: 40%;
    min-height: 0;
    flex: 0 0 40%;
  }

  .footer-figma__brand-copy {
    width: 100%;
  }

  .footer-figma__right {
    width: calc(60% - 50px);
    min-height: 0;
    flex: 0 0 calc(60% - 50px);

    justify-content: space-between;

    gap: 32px;
  }

  .footer-figma__column--contact {
    width: min(321px, 62%);
    flex-basis: min(321px, 62%);
  }

  .footer-figma__contact-list {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-figma {
    padding: 36px 0;
  }

  .footer-figma__card {
    width: 100%;

    padding: 32px 20px 22px;

    border-radius: 14px;
  }

  .footer-figma__content {
    width: 100%;

    gap: 36px;
  }

  .footer-figma__main {
    flex-direction: column;

    gap: 36px;
  }

  .footer-figma__brand {
    width: 100%;
    flex: none;

    align-items: center;
  }

  .footer-figma__logo {
    justify-content: center;
  }

  .footer-figma__logo img {
    object-position: center;
  }

  .footer-figma__brand-copy {
    text-align: center;
    align-items: center;
  }

  .footer-figma__brand-copy h2 {
    font-size: 19px;
    line-height: 27px;
  }

  .footer-figma__brand-copy p {
    font-size: 13px;
    line-height: 19px;
  }

  .footer-figma__socials {
    justify-content: center;
  }

  .footer-figma__right {
    width: 100%;
    flex: none;

    display: grid;
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .footer-figma__column--policy,
  .footer-figma__column--contact {
    width: 100%;
    flex: none;
  }

  .footer-figma__heading {
    width: 100%;

    align-items: center;
  }

  .footer-figma__heading h3 {
    font-size: 22px;
    line-height: 31px;
  }

  .footer-figma__policies {
    text-align: center;
  }

  .footer-figma__policies a,
  .footer-figma__policies span {
    justify-content: center;

    width: 100%;
  }

  .footer-figma__contact-list {
    width: 100%;

    gap: 14px;
  }

  .footer-figma__contact-item {
    font-size: 13px;
    line-height: 19px;
  }

  .footer-figma__copyright {
    font-size: 12px;
    line-height: 18px;
  }
}

/* =========================================================
   TYPOGRAPHY NORMALIZATION - FIGMA
   Body/UI: Mona Sans
   Heading thật: FZ Poppins
   Không ép mọi h1-h6 thành FZ để tránh card/product bị quá nặng.
   ========================================================= */

/* UI / nội dung */
body,
button,
input,
select,
textarea,
.breadCrumbs,
.figma-topbar,
.figma-navigation,
.inner-service-menu-group,
.inner-service-post__meta,
.inner-service-post__desc,
.inner-service-post__more,
.product,
.ds-news,
.home-accessory-card,
.footer-figma__brand-copy,
.footer-figma__policies,
.footer-figma__contact-item {
  font-family: var(--font-body);
}

/* Tiêu đề cấp section/page theo Figma */
.figma-hero-text h1,
.figma-about__heading h2,
.figma-about__heading h3,
.home-services-figma__title,
.home-process-figma__title,
.home-faq-figma__title,
.home-quick-repair__title,
.home-accessories__title,
.home-partners__title,
.home-testimonials__title,
.home-knowledge__title,
.home-find-us__title,
.footer-figma__heading h3,
.inner-service-sidebar__title,
.inner-service-heading h1,
.inner-service-related__title,
.title-detail h1,
.title-main,
.title-product {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Service card title là heading thật, nhưng không dùng 800 */
.inner-service-post__title {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Card nhỏ / nội dung: Mona Sans */
.inner-service-related__card h3,
.product .name-product,
.product .name-product a,
.ds-news h3,
.home-accessory-card__name,
.home-accessory-card__name a {
  font-family: var(--font-body);
}

/* Giảm độ đậm để danh sách không bị "đen cục" */
.product .name-product a {
  font-weight: 600;
}

.ds-news h3 {
  font-weight: 600;
}

.inner-service-related__card h3 {
  font-weight: 600;
}

.home-accessory-card__name {
  font-weight: 600;
}

/* Service sidebar/menu là UI, không phải heading */
.inner-service-menu-group summary a,
.inner-service-menu-group li a {
  font-family: var(--font-body);
  font-weight: 600;
}

/* Meta + mô tả nhẹ, dễ đọc */
.inner-service-post__meta,
.inner-service-post__desc {
  font-weight: 400;
}

.inner-service-post__more {
  font-weight: 600;
}
/* =========================================================
   FIX FOOTER - TIÊU ĐỀ DÀI TỰ XUỐNG HÀNG
   ========================================================= */

.footer-figma__right,
.footer-figma__column,
.footer-figma__column--contact,
.footer-figma__heading {
    min-width: 0 !important;
    max-width: 100%;
}

.footer-figma__heading h3 {
    width: 100%;
    max-width: 100%;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}