:root {
  --color-text-primary: #212529;
  --color-text-on-brand: #ffffff;
  --color-text-nav: #000000;
  --color-text-muted: #6c757d;
  --color-text-inverse: #666666;
  --color-surface-page: #ffffff;
  --color-surface-base: #000000;
  --color-brand: #da251d;
  --font-family-primary: "Roboto", sans-serif;
  --font-size-xs: 12px;
  --font-size-base: 14px;
  --font-size-md: 15px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-3xl: 24px;
  --font-size-display: 35px;
  --font-size-display-md: 30px;
  --font-size-display-sm: 27px;
  --font-weight-base: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --line-height-base: 21px;
  --space-2: 5px;
  --space-4: 8px;
  --space-5: 10px;
  --space-6: 12px;
  --space-8: 20px;
  --radius-xs: 3px;
  --radius-sm: 10px;
  --motion-fast: 300ms;
  --motion-normal: 400ms;
  --layout-max: 1180px;
  --logo-gutter: 170px;
  --head-height: 46px;
  --search-width: 200px;
  --search-control: 35px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background: var(--color-surface-page);
  min-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap-content {
  max-width: var(--layout-max);
  margin: auto;
  width: calc(100% - 30px);
}

/* Top bar — original: white notch for logo, red bar with diagonal cut */
.head {
  background: var(--color-surface-page);
  overflow: hidden;
}

.head .wrap-content {
  position: relative;
}

.head .wrap-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  width: 100%;
  height: var(--head-height);
  background: var(--color-brand);
}

.head-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-on-brand);
  width: calc(100% - var(--logo-gutter));
  margin-left: auto;
  background: var(--color-brand);
  padding: var(--space-2) 0;
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 3% 100%);
}

.name-cty {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 36px;
  text-transform: uppercase;
  padding-left: 40px;
  margin: 0;
}

.head-top address {
  display: flex;
  align-items: center;
  margin: 0;
  font-style: normal;
}

.info-head {
  margin: 0 var(--space-5);
}

.info-head i {
  vertical-align: top;
  margin: 3px var(--space-2) 0 0;
  font-size: var(--font-size-lg);
}

.info-head a:hover,
.info-head a:focus-visible {
  color: var(--color-text-on-brand);
}

.head-top a:focus-visible {
  outline-color: var(--color-text-on-brand);
}

/* Nav — original: logo in menu row, pulled up into the white notch */
.w-menu {
  position: relative;
  z-index: 1;
}

.menu {
  border-bottom: 2px solid var(--color-brand);
  position: relative;
  z-index: 10;
  background: var(--color-surface-page);
}

.menu .wrap-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.menu ul {
  width: 100%;
  padding: 0;
  margin: auto;
  list-style: none;
}

.menu ul.menu-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.menu ul li {
  position: relative;
  z-index: 1;
}

.menu ul li a {
  display: block;
  position: relative;
  font-size: var(--font-size-md);
  color: var(--color-text-nav);
  padding: var(--space-5) var(--space-6);
  font-weight: var(--font-weight-black);
  line-height: 22.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border-radius: var(--radius-sm);
  margin: 0 var(--space-2);
  transition: var(--motion-fast) all;
}

.menu ul li a:hover,
.menu ul li a:active,
.menu ul li a.active {
  color: var(--color-text-on-brand);
  background: var(--color-brand);
}

.menu ul li a:focus-visible {
  color: var(--color-text-on-brand);
  background: var(--color-brand);
}

a.logo-head {
  position: relative;
  top: -30px;
  left: -30px;
  z-index: 2;
  display: block;
  flex: 0 0 auto;
}

a.logo-head img {
  width: 120px;
  height: 100px;
  display: block;
  object-fit: contain;
}

/* Sticky menu — original: only .w-menu sticks, logo sits in the bar */
.w-menu.fix_head {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  animation: stickyMenuFadeIn 0.35s ease;
  background: var(--color-surface-page);
}

@keyframes stickyMenuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.w-menu.fix_head .menu {
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
}

.w-menu.fix_head a.logo-head {
  top: 0;
  left: 0;
}

.w-menu.fix_head a.logo-head img {
  width: 100px;
  height: auto;
}

/* Search — matches live .search */
.search {
  width: var(--search-width);
  background: var(--color-surface-page);
  border: 1px solid var(--color-brand);
}

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

.search input {
  width: calc(100% - var(--search-control));
  height: var(--search-control);
  float: left;
  outline: none;
  padding: 0;
  border: 0;
  background: transparent;
  text-indent: var(--space-5);
  font-size: var(--font-size-xs);
  font-family: inherit;
  color: var(--color-text-nav);
}

.search input::placeholder {
  color: var(--color-text-nav);
}

.search button {
  float: left;
  width: var(--search-control);
  height: var(--search-control);
  line-height: var(--search-control);
  cursor: pointer;
  text-align: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

.search button:hover,
.search button:active {
  color: var(--color-brand);
}

.search input:focus-visible,
.search button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: -2px;
}

/* Mobile bar — matches live .menu-res */
.menu-res {
  z-index: 100;
  background: var(--color-brand);
  position: relative;
  display: none;
}

.menu-bar-res {
  height: 50px;
  padding: 0 15px;
}

#menu:not(.mm-menu) {
  display: none;
}

#hamburger {
  display: block;
  width: 30px;
  height: 23px;
  position: relative;
}

#hamburger:focus-visible {
  outline: 2px solid var(--color-text-on-brand);
  outline-offset: 4px;
}

#hamburger::before,
#hamburger::after,
#hamburger span {
  background: var(--color-text-on-brand);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition-property: transform, top, bottom, left, opacity;
  transition-duration: 0.5s;
}

#hamburger::before {
  top: 0;
}

#hamburger span {
  top: 10px;
}

#hamburger::after {
  top: 20px;
}

html.mm-wrapper--opened #hamburger::before,
html.mm-wrapper_opening #hamburger::before {
  top: 10px;
  transform: rotate(45deg);
}

html.mm-wrapper--opened #hamburger span,
html.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}

html.mm-wrapper--opened #hamburger::after,
html.mm-wrapper_opening #hamburger::after {
  top: 10px;
  transform: rotate(-45deg);
}

.search-res {
  position: relative;
}

.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  color: var(--color-text-on-brand);
  font-size: 17px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.search-res .icon-search.active {
  color: var(--color-brand);
  background: var(--color-surface-page);
  border-radius: 100%;
}

.search-res .icon-search:focus-visible {
  outline: 2px solid var(--color-text-on-brand);
  outline-offset: 2px;
}

.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0;
  width: 0;
  height: 40px;
  overflow: hidden;
  background: var(--color-surface-page);
  border: 1px solid var(--color-brand);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}

.search-res .search-grid button {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 17px;
  display: block;
  color: var(--color-brand);
  line-height: 40px;
  text-align: center;
  background: transparent;
}

.search-res .search-grid input {
  width: calc(100% - 35px);
  height: 38px;
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: var(--color-brand);
  background: transparent;
  text-indent: 12px;
  font-size: var(--font-size-xs);
  font-family: inherit;
}

.search-res .search-grid input::placeholder {
  color: #313131;
}

.mm-listitem a {
  text-transform: capitalize;
}

.mm-menu {
  --mm-color-background: var(--color-surface-page);
  --mm-color-text: var(--color-text-primary);
  --mm-color-button: var(--color-brand);
}

/* Slideshow — matches live .slideshow + Owl + Animate.css */
.slideshow {
  position: relative;
}

.slideshow-item {
  display: block;
  margin: 0;
  cursor: pointer;
}

.slideshow-image {
  display: block;
}

.slideshow img {
  display: block;
  width: 100%;
  height: auto;
}

.slideshow:hover .control-slideshow {
  opacity: 1;
}

.control-slideshow {
  opacity: 0;
}

.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: calc(50% - 45px / 2);
}

.slideshow .control-owl button.owl-prev,
.slideshow .control-owl button.owl-next {
  opacity: 0.5;
  top: 0;
  position: absolute;
  outline: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-on-brand);
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 25px;
  background-color: var(--color-surface-base);
  border-radius: var(--radius-xs);
  transition: var(--motion-fast) all;
}

.slideshow .control-owl button.owl-prev:hover,
.slideshow .control-owl button.owl-next:hover,
.slideshow .control-owl button.owl-prev:active,
.slideshow .control-owl button.owl-next:active {
  opacity: 1;
}

.slideshow .control-owl button.owl-prev:focus-visible,
.slideshow .control-owl button.owl-next:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  opacity: 1;
}

.slideshow .control-owl button.owl-prev {
  left: 20px;
}

.slideshow .control-owl button.owl-next {
  right: 20px;
}

.transition {
  transition: var(--motion-fast) all;
}

/* Intro — matches live .gioi-thieu */
.padding-top-bottom {
  padding: 2.5rem 0;
}

.title-main {
  margin: 0 0 1.5rem;
  text-align: center;
}

.title-main span {
  display: block;
  margin: 0 0 var(--space-5);
  padding: 0 0 30px;
  color: var(--color-brand);
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-black);
  line-height: 1.5;
  text-transform: uppercase;
  background: url("../assets/images/css.png") no-repeat center bottom;
}

.gt-l,
.gt-r {
  width: calc(580 / 1180 * 100%);
  margin: 0;
}

.desc-gt {
  margin: 0 0 30px;
  font-size: 1rem;
      line-height: 1.6;
}

.tieu-chi {
  list-style: none;
  background: url("../assets/images/css1.png") no-repeat;
  padding: 5px 0 5px 200px;
  margin: 0 0 20px;
}

.box-tc {
  margin: 0 0 20px;
  padding: 0 0 0 40px;
  background: url("../assets/images/css2.png") no-repeat;
}

.box-tc h3 {
  margin: 0;
  color: var(--color-text-inverse);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.xemthem {
  text-align: center;
  margin: 0;
}

.xemthem a {
  display: inline-block;
  background: var(--color-brand);
  font-size: var(--font-size-lg);
  color: var(--color-text-on-brand);
  font-weight: var(--font-weight-bold);
  padding: var(--space-5) var(--space-8);
  text-transform: uppercase;
  line-height: normal;
}

.hover_xemthem {
  transition: letter-spacing var(--motion-normal);
}

.hover_xemthem:hover,
.hover_xemthem:active {
  letter-spacing: 2px;
  color: var(--color-text-on-brand);
  background: var(--color-brand);
}

.xemthem a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.scale-img {
  position: relative;
  overflow: hidden;
  display: block;
}

.scale-img img {
  transform: scale(1, 1);
  transition: var(--motion-fast) all;
}

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

.scale-img:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

/* Featured products heading — title only, no live subtitle */
.wrap-product {
  margin-bottom: 50px;
}

.banner-promo {
  margin: 0;
}

.banner-head {
  display: block;
  line-height: 0;
}

.banner-head img {
  display: block;
  width: 100%;
  height: auto;
}

/* EURO FLAT block — from gomdatviet home-collections-grouptwo */
.home-collections-grouptwo {
  --euro-title: #751414;
  --euro-accent: #ed1c24;
  --euro-text: #000000;
  --euro-muted: #333333;
  --euro-border: #dbdbdb;
  --font-family-display: "Merriweather", Arial, sans-serif;
  font-size: 1rem;
  margin: 2.5rem 0 0;
}

.home-collections-grouptwo-container {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 2.5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--euro-border);
}

.home-collections-grouptwo-container > * {
  min-width: 0;
}

.home-collections-grouptwo-products {
  position: relative;
  margin: 0 -1em;
  min-width: 0;
  overflow: hidden;
}

.home-collections-grouptwo-products .owl-carousel {
  width: 100%;
  max-width: 100%;
}

.home-collections-grouptwo-product-item {
  padding: 0 1em;
  box-sizing: border-box;
}

.home-collections-grouptwo .owl-item {
  max-width: 100%;
}

.home-collections-grouptwo .product-item {
  border: none;
  overflow: visible;
  text-align: center;
}

.home-collections-grouptwo .product-img {
  position: relative;
  margin: 0 0 1rem;
  aspect-ratio: 1;
}

.home-collections-grouptwo .product-img a {
  display: block;
}

.home-collections-grouptwo .product-img img {
  width: 100%;
  height: auto;
  display: block;
}

.home-collections-grouptwo .product-item-info {
  border: none;
  box-shadow: none;
  background: transparent;
}

.home-collections-grouptwo .product-title {
  margin: 0 0 0.35rem;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.3;
}

.home-collections-grouptwo .product-title a {
  color: var(--euro-title);
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 700;
}

.home-collections-grouptwo .product-title a:hover,
.home-collections-grouptwo .product-title a:active {
  color: var(--euro-accent);
}

.home-collections-grouptwo .product-price {
  margin: 0;
}

.home-collections-grouptwo .current-price {
  color: var(--euro-muted);
  font-size: 15px;
}

.home-collections-grouptwo-title {
  margin: 0 0 2rem;
  color: var(--euro-title);
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.home-collections-grouptwo-description {
  margin: 0 0 1rem;
  color: var(--euro-text);
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.home-collections-grouptwo-button-wrap {
  margin: 0;
  text-align: left;
}

.home-collections-grouptwo .global_button {
  display: inline-block;
  margin: 2rem 0 1rem;
  padding: 0.75em 1.5em;
  height: auto;
  min-height: 3em;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--euro-accent);
  background: var(--euro-accent);
  color: var(--color-text-on-brand);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.5s;
}

.home-collections-grouptwo .global_button:hover,
.home-collections-grouptwo .global_button:active {
  background: transparent;
  color: var(--euro-accent);
  border-color: var(--euro-accent);
}

.home-collections-grouptwo .global_button:focus-visible {
  outline: 2px solid var(--euro-accent);
  outline-offset: 3px;
}

/* COTTO GRANITE block — from gomdatviet home-collections-groupthree */
.home-collections-groupthree {
  --euro-title: #751414;
  --euro-accent: #ed1c24;
  --euro-text: #000000;
  --euro-muted: #333333;
  --euro-border: #dbdbdb;
  --font-family-display: "Merriweather", Arial, sans-serif;
  font-size: 1rem;
  margin: 2.5rem 0 0;
}

.home-collections-groupthree-container {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: none;
}

.home-collections-groupthree-container > * {
  min-width: 0;
}

.home-collections-groupthree-products {
  position: relative;
  margin: 0 -1em;
  min-width: 0;
  overflow: hidden;
}

.home-collections-groupthree-products .owl-carousel {
  width: 100%;
  max-width: 100%;
}

.home-collections-groupthree-product-item {
  padding: 0 1em;
  box-sizing: border-box;
}

.home-collections-groupthree .owl-item {
  max-width: 100%;
}

.home-collections-groupthree .product-item {
  border: none;
  overflow: visible;
  text-align: center;
}

.home-collections-groupthree .product-img {
  position: relative;
  margin: 0 0 1rem;
  aspect-ratio: 1;
}

.home-collections-groupthree .product-img a {
  display: block;
}

.home-collections-groupthree .product-img img {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    object-fit: contain;
    width: auto;
    max-height: 100%;
    transition: transform 0.4s ease;
}

.home-collections-groupthree .product-item-info {
  border: none;
  box-shadow: none;
  background: transparent;
}

.home-collections-groupthree .product-title {
  margin: 0 0 0.35rem;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.3;
}

.home-collections-groupthree .product-title a {
  color: var(--euro-title);
  font-family: var(--font-family-display);
  font-size: 18px;
  font-weight: 700;
}

.home-collections-groupthree .product-title a:hover,
.home-collections-groupthree .product-title a:active {
  color: var(--euro-accent);
}

.home-collections-groupthree .product-price {
  margin: 0;
}

.home-collections-groupthree .current-price {
  color: var(--euro-muted);
  font-size: 15px;
}

.home-collections-groupthree-title {
  margin: 0 0 2rem;
  color: var(--euro-title);
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.home-collections-groupthree-description {
  margin: 0 0 1rem;
  color: var(--euro-text);
  font-size: 1rem;
  text-align: justify;
  line-height: 1.6;
}

.home-collections-groupthree-button-wrap {
  margin: 0;
  text-align: left;
}

.home-collections-groupthree .global_button {
  display: inline-block;
  margin: 2rem 0 1rem;
  padding: 0.75em 1.5em;
  height: auto;
  min-height: 3em;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--euro-accent);
  background: var(--euro-accent);
  color: var(--color-text-on-brand);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.5s;
}

.home-collections-groupthree .global_button:hover,
.home-collections-groupthree .global_button:active {
  background: transparent;
  color: var(--euro-accent);
  border-color: var(--euro-accent);
}

.home-collections-groupthree .global_button:focus-visible {
  outline: 2px solid var(--euro-accent);
  outline-offset: 3px;
}

/* Projects mashup — hailongtiles du-an-home (no bg-title) */
.duan-head {
  padding: 2.5rem 0 1rem;
}

.duan-head .title-main {
  margin-bottom: 0.75rem;
}

.du-an-home {
  padding: 1.5rem 0 2rem;
  background: #f3f3f3;
}

.du-an-home-cats {
  margin: 0 0 0.5rem;
  text-align: center;
}

.du-an-home-cats-label {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 15px;
  text-transform: uppercase;
}

.du-an-home-cats-caret {
  margin-left: 0.15em;
}

.du-an-home-cats-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.du-an-home-cats-list li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0.85rem;
  border-right: 1px solid #999;
  line-height: 1.35;
}

.du-an-home-cats-list li:last-child {
  border-right: 0;
}

.du-an-home-cats-list a {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.du-an-home-cats-list a:hover,
.du-an-home-cats-list a:active {
  color: var(--color-brand);
}

.du-an-home-name {
  margin: 0.35rem 0 0;
  padding: 0;
  color: #555;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  background: none;
}

.du-an-home-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 25px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.du-an-home-item {
  position: relative;
  margin: 0;
  min-width: 0;
}

.du-an-home-item--featured {
  grid-row: 1 / span 2;
}

.du-an-home-item article {
  position: relative;
  height: 100%;
}

.du-an-home-image {
  display: block;
  overflow: hidden;
  height: 100%;
}

.du-an-home-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.du-an-home-image:hover img,
.du-an-home-image:active img {
  transform: scale(1.3);
}

.du-an-home-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 10px;
  background: rgb(0 0 0 / 80%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.du-an-home-title a {
  color: #fff;
  text-decoration: none;
}

.du-an-home-title a:hover,
.du-an-home-title a:active {
  color: #fff;
  text-decoration: underline;
}

/* NEWS - VIDEOS */
.wrap-intro .wrap-content.padding-top-bottom {
  padding-bottom: 1.25rem;
}

.wrap-intro + .home-contact {
  margin-top: 1.5rem;
}

.home-contact .wrap-partner.padding-top-bottom {
  padding: 1.5rem 0 1rem;
}

.home-contact-map {
  padding: 0;
}

.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.wrap-intro-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
}

.tt-l,
.tt-r {
  width: calc(580 / 1180 * 100%);
}

.newshome-scroll {
  overflow: hidden;
  max-height: 465px;
}

.newshome-scroll-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.newshome-scroll-list > li {
  margin: 0;
}

.news-slick {
  display: flex;
  margin-bottom: 20px;
}

.news-slick h3 {
  margin: 0 0 10px;
  font-size: inherit;
  font-weight: inherit;
  line-height: normal;
}

.news-slick .img {
  flex: 0 0 180px;
  width: 180px;
}

.news-slick .img img {
  display: block;
  width: 180px;
  height: 139px;
  object-fit: cover;
}

.news-slick .info {
  width: calc(100% - 180px);
  padding-left: 15px;
}

.name-newshome {
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

.name-newshome.text-split {
  -webkit-line-clamp: 2;
}

.name-newshome:hover,
.name-newshome:active {
  color: var(--color-brand);
}

.desc-newshome {
  margin: 0;
  color: var(--color-text-inverse);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  text-align: justify;
}

.date-newshome {
  display: block;
  margin: 0 0 6px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.wrap-intro .xemthem {
  margin: 0.75rem 0 0;
}

.pic-video {
  position: relative;
  display: block;
  cursor: pointer;
}

.pic-video::before {
  content: "";
  position: absolute;
  top: calc(50% - 42px);
  left: calc(50% - 42px);
  z-index: 1;
  width: 84px;
  height: 84px;
  background: url("../assets/images/play.png") no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

.pic-video img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pic-video-2 {
  position: relative;
  display: block;
  cursor: pointer;
}

.pic-video-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 42px;
  height: 42px;
  background: url("../assets/images/play.png") no-repeat center center;
  background-size: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pic-video-2 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.owl-video {
  margin-top: 20px;
}

.slick-v-3 .slick-slide {
  outline: none;
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }

  .menu-res {
    display: block;
  }

  .head .wrap-content {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: start;
  }

  .head .wrap-content::before {
    display: none;
  }

  .head-top {
    width: 100%;
    margin-left: 0;
  }

  a.logo-head {
    display: none;
  }

  .control-slideshow {
    opacity: 1;
  }

  .wrap-home {
    overflow: hidden;
  }

  .padding-top-bottom {
    padding: 2rem 0;
  }

  .gt-l,
  .gt-r {
    width: 100%;
  }

  .gt-l {
    margin-bottom: 20px;
  }

  .title-main span {
    font-size: var(--font-size-display-md);
  }

  .home-collections-grouptwo-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .home-collections-grouptwo-content {
    order: -1;
  }

  .home-collections-grouptwo-title {
    font-size: 23px;
    margin-bottom: 0.75rem;
  }

  .home-collections-grouptwo .global_button {
    margin: 0;
  }

  .home-collections-grouptwo-products {
    margin-top: 0.75rem;
  }

  .home-collections-groupthree-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .home-collections-groupthree-title {
    font-size: 23px;
    margin-bottom: 0.75rem;
  }

  .home-collections-groupthree .global_button {
    margin: 0;
  }

  .home-collections-groupthree-products {
    margin-top: 0.75rem;
  }

  .du-an-home-list {
    grid-template-columns: 1fr 1fr;
  }

  .du-an-home-item--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .du-an-home-cats-list a {
    font-size: 15px;
  }

  .wrap-intro-body {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tt-l,
  .tt-r {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .head .wrap-content {
    justify-content: center;
  }

  .head .head-top {
    display: none !important;
  }

  .du-an-home-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .du-an-home-cats-list {
    gap: 0.35rem;
  }

  .du-an-home-cats-list li {
    padding: 0 0.5rem;
    border-right: 0;
  }

  .du-an-home-cats-list a {
    font-size: 14px;
    white-space: normal;
  }

  .news-slick {
    flex-direction: column;
  }

  .news-slick .img,
  .news-slick .img img {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .news-slick .info {
    width: 100%;
    padding: 0.75rem 0 0;
  }
}

@media (max-width: 576px) {
  .title-main span {
    font-size: var(--font-size-display-sm);
  }

  .tieu-chi {
    padding-left: 140px;
    background-size: 35%;
  }
}

/* Home contact — mashup Gốm Đất Việt */
.home-contact {
  --contact-accent: #ed1c24;
  --contact-title: #751414;
  --font-family-display: "Merriweather", Arial, sans-serif;
  font-family: var(--font-family-display);
  font-size: 1rem;
  margin: 2.5rem 0 0;
  padding-bottom: 0;
}

.home-contact .container {
  max-width: 1240px;
}

.home-contact-heading {
  text-align: center;
}

.home-contact-subtitle.global_label {
  background: #f4f4f4;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  color: var(--contact-accent);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.4;
}

.home-contact-subtitle.global_label::before {
  content: "";
  width: 4px;
  aspect-ratio: 1;
  display: block;
  background: currentcolor;
  border-radius: 999px;
}

.home-contact-title.global_title {
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  color: var(--contact-title);
  font-family: var(--font-family-display);
  line-height: 1.25;
}

.home-contact-content {
  margin-top: 2.5em;
}

.home-contact-form-wrap {
  max-width: 1000px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background: #fff;
  padding: 2.5em;
  display: grid;
  grid-template-columns: 65% 1fr;
  gap: 1em;
  border-radius: 1em;
  border: 5px solid var(--contact-accent);
}

.home-contact-form-wrap > * {
  min-width: 0;
}

.home-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.home-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}

.home-contact-form-row > * {
  min-width: 0;
  margin: 0;
}

.home-contact-form-row > :only-child {
  grid-column: 1 / -1;
}

.home-contact-form > label {
  display: block;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: var(--contact-title);
}

.home-contact-form > input[type="text"],
.home-contact-form > input[type="email"],
.home-contact-form > input[type="tel"],
.home-contact-form > input[type="number"],
.home-contact-form > textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1em;
  padding: 0.5em 1em;
  border: 1px solid #e7e7e7;
  border-radius: 0.25em;
  box-sizing: border-box;
}

.home-contact-form > button[type="submit"] {
  display: inline-block;
}

.home-contact-form-field-full {
  grid-column: 1 / -1;
}

.home-contact-form-field label {
  font-weight: 700;
  margin-bottom: 0.5em;
  display: block;
  color: var(--contact-title);
  font-size: 1rem;
}

.home-contact-form-field input,
.home-contact-form-field textarea,
.home-contact-form-field select {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 0.25em;
  margin-bottom: 1em;
  border: 1px solid #e7e7e7;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  appearance: none;
  box-sizing: border-box;
}

.home-contact-form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.home-contact-form-field select {
  background-image: linear-gradient(45deg, transparent 50%, #751414 50%),
    linear-gradient(135deg, #751414 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2em;
}

.home-contact-form-field input:focus,
.home-contact-form-field textarea:focus,
.home-contact-form-field select:focus {
  outline: 2px solid var(--contact-accent);
  outline-offset: 1px;
}

.home-contact-form-submit {
  margin: 0;
}

.home-contact-form-button {
  display: inline-block;
  margin: 2em 0 1em;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  border: 1px solid var(--contact-accent);
  background: var(--contact-accent);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}

.home-contact-form-button:hover {
  background: transparent;
  color: var(--contact-accent);
  border-color: var(--contact-accent);
}

.home-contact-form-banner {
  margin: 0;
}

.home-contact-form-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.25em;
}

.home-contact-map-wrap {
  position: relative;
  width: 100%;
}

.home-contact-map-iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 991px) {
  .home-contact {
    margin-top: 1.25rem;
  }

  .home-contact-form-wrap {
    grid-template-columns: 1fr;
    padding: 1.5em;
  }

  .home-contact-form-row {
    grid-template-columns: 1fr;
  }

  .home-contact-map-iframe {
    height: 270px;
  }
}

/* Partner logos — live .wrap-partner */
.wrap-partner .wrap-content {
  position: relative;
}

.wrap-partner figure {
  margin: 0;
}

.partner {
  display: block;
  border: 2px solid #ccc;
  background: #fff;
}

.partner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Footer — mashup Gốm Đất Việt */
.site-footer {
  background-color: #ed3237;
  color: #fff;
  padding: 2.5rem 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer__col--logo img {
  display: block;
  max-width: 140px;
  height: auto;
      background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.footer__intro {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}

.footer__heading {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  color: #fff;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__col--info address {
  font-style: normal;
}

.footer__col--info a {
  color: #fff;
  text-decoration: none;
}

.footer__col--info a:hover,
.footer__col--info a:active {
  text-decoration: underline;
}

.footer__col--info ul li i {
  margin-right: 8px;
}

.footer__sub {
  margin: 8px 0 0;
  font-size: 13px;
}

.footer__sub a,
.footer__hotline a {
  color: #fff;
  text-decoration: none;
}

.footer__hotline {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer__hotline p {
  margin: 0 0 4px;
}

.footer__hotline a:hover,
.footer__hotline a:focus-visible {
  text-decoration: underline;
}

.footer__col--menu a {
  color: #fff;
  text-decoration: none;
}

.footer__col--menu a:hover,
.footer__col--menu a:active {
  text-decoration: underline;
}

.footer__bottom {
  position: relative;
  z-index: 99;
  background: #d32f2f;
  padding: 15px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

.footer-back-top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 48px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: #ed3237;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}

.footer-back-top i {
  font-size: 18px;
  line-height: 1;
}

.footer-back-top:hover,
.footer-back-top:active {
  opacity: 0.85;
}

/* Fixed back-to-top + contact widgets — mashup Gốm Đất Việt */
.back-to-top-fixed {
  position: fixed;
  right: 25px;
  bottom: 310px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ed3237;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.back-to-top-fixed[hidden] {
  display: none;
}

.back-to-top-fixed i {
  font-size: 22px;
  line-height: 1;
}

.back-to-top-fixed:hover,
.back-to-top-fixed:active {
  opacity: 0.9;
  transform: scale(1.05);
}

.contact-box-bottom {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 50px;
}

.contact-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.contact-box-wrapper:hover,
.contact-box-wrapper:active {
  transform: scale(1.05);
}

.contact-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0;
}

.contact-icon-box img {
  display: block;
  width: 40px;
  height: 40px;
}

.nut-goi-hotline .contact-icon-box img {
  width: 30px;
  height: 30px;
}

.contact-info {
  display: none;
  flex-direction: column;
}

.contact-info b {
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-info span {
  color: #666;
  font-size: 12px;
}

@media (max-width: 768px) {
  .back-to-top-fixed {
    right: 21px;
    bottom: 250px;
    width: 40px;
    height: 40px;
  }

  .contact-box-bottom {
    right: 16px;
    bottom: 60px;
    width: 50px;
  }

  .contact-box-wrapper {
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .contact-icon-box {
    width: auto;
    height: auto;
    margin-right: 0;
  }

  .contact-icon-box img {
    width: 32px;
    height: 32px;
  }

  .nut-goi-hotline .contact-icon-box img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 991px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer__col--logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Inner pages — breadcrumbs & article content */
.breadCrumbs {
  background-color: #eee;
}

.breadCrumbs .wrap-content {
  padding: 0.75rem 0;
}

.breadCrumbs .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}

.breadCrumbs .breadcrumb-item a {
  color: #212529;
  text-decoration: none;
}

.breadCrumbs .breadcrumb-item a:hover {
  color: var(--color-brand);
}

.breadCrumbs .breadcrumb-item.active {
  color: #6c757d;
}

.page-about {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.content-main {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5;
}

.content-main h2,
.content-main h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  margin: 0 0 1rem;
}

.content-main ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.content-main li {
  margin-bottom: 0.5rem;
}

.content-main figure {
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.content-main figure img {
  max-width: 100%;
  height: auto;
}

.content-main a {
  color: inherit;
}

.content-main a:hover {
  color: var(--color-brand);
}

/* Share block — inner pages */
.share {
  padding: 17px 15px 10px;
  margin-top: 15px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  border-radius: 5px;
}

.share p {
  margin: 0 0 5px;
}

.social-plugin {
  line-height: 0;
}

.social-plugin .a2a_kit {
  display: inline-block;
  line-height: normal;
}

/* Product listing — matches live .box-product */
.page-products {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-grid > li {
  min-width: 0;
  display: flex;
}

.box-product {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid #e6e6e6;
  text-align: center;
}

.pic-product {
  position: relative;
  overflow: hidden;
  margin: 0 0 1rem;
  background: #fff;
  aspect-ratio: 1;
}

.pic-product .scale-img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.pic-product img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.name-product {
  margin: 0 0 10px;
  min-height: 2.6em;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.name-product a {
  color: var(--color-text-primary, #212529);
  text-decoration: none;
}

.name-product a:hover,
.name-product a:focus-visible {
  color: var(--color-brand);
}

.name-product.text-split {
  -webkit-line-clamp: 2;
}

.price-product {
  margin: auto 0 0;
}

.price-new {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-brand);
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .name-product {
    font-size: 16px;
  }
}

/* Product detail — matches live .grid-pro-detail */
.page-product-detail {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.grid-pro-detail .share--compact {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}
.grid-pro-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 40px;
  margin-bottom: 3rem;
}

.left-pro-detail {
  position: relative;
  width: calc(45% - 110px);
  margin: 0;
  text-align: center;
}

.left-pro-detail .MagicZoom {
  display: block;
  padding: 7px;
  border: 1px solid #eee;
  border-radius: 5px;
  background: #fff;
}

.left-pro-detail .MagicZoom img {
  width: 100%;
  height: auto;
  display: block;
}

/* Expanded product zoom — white backdrop instead of blurred image */
.mz-expand {
  background-color: #fff !important;
}

.mz-expand .mz-expand-bg {
  display: none !important;
}

.mz-expand button.mz-button {
  color: #444 !important;
}

.mz-expand button.mz-button:hover,
.mz-expand button.mz-button:active {
  color: #111 !important;
}

.right-pro-detail {
  width: calc(55% - 40px - 110px);
  min-width: 280px;
  flex: 1 1 320px;
}

.title-pro-detail {
  margin: 0 0 0.5rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.share--compact {
  margin-top: 0;
  padding: 10px 12px 8px;
}

.attr-pro-detail {
  margin: 0 0 1rem;
  padding: 0;
}

.attr-pro-detail div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.attr-pro-detail dt {
  margin: 0 5px 0 0;
  font-weight: 400;
}

.attr-pro-detail dd {
  margin: 0;
}

.price-new-pro-detail {
  font-size: 23px;
  font-weight: 700;
  color: var(--color-text-primary, #212529);
}

.mangxahoi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.mangxahoi a {
  display: block;
  padding: 7px;
  background: var(--color-brand);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mangxahoi a:last-child {
  background: #2196f3;
}

.mangxahoi a:hover,
.mangxahoi a:focus-visible {
  opacity: 0.92;
  color: #fff;
}

.desc-pro-detail {
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.5;
}

.desc-pro-detail hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

.desc-pro-detail ul {
  margin: 0;
  padding-left: 1.5rem;
}

.tieu-chi-sp {
  width: 220px;
  flex-shrink: 0;
}

.tieu-chi-sp .tieu-chi {
  padding-left: 0;
  background: none;
}

.tieu-chi-sp .box-tc h3 {
  margin: 0;
  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.page-product-detail .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tabs-pro-detail {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
  border-top-width: 3px;
  font-size: 13px;
  color: #333;
  text-transform: uppercase;
  font-weight: 500;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #555;
}
@media (max-width: 991px) {
  .left-pro-detail,
  .right-pro-detail,
  .tieu-chi-sp {
    width: 100%;
  }

  .tieu-chi-sp .tieu-chi {
    padding-left: 200px;
    background: url("../assets/images/css1.png") no-repeat;
  }

  .page-product-detail .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Projects listing — matches live .row-news */
.page-projects,
.page-news,
.page-videos {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.bota_video_page_list {
  max-width: var(--layout-max);
  margin-inline: auto;
  width: calc(100% - 30px);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.wrap-content > .bota_video_page_list,
.page-videos .bota_video_page_list {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-videos .bota_video_list.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.bota_video_item {
  height: 100%;
}

.bota_video_item_img {
  position: relative;
  overflow: hidden;
  margin: 0 0 0.75rem;
  aspect-ratio: 16 / 9;
  background: #111;
}

.bota_video_item_img a {
  display: block;
  height: 100%;
}

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

.bota_video_item_content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.bota_video_item_content a:hover,
.bota_video_item_content a:focus-visible {
  color: var(--color-brand);
}

.row-news {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 0;
  list-style: none;
}

.row-news > li {
  width: 50%;
  padding: 0 15px 1rem;
}

.row-news .news {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: 100%;
}

.pic-news {
  position: relative;
  display: block;
  width: 210px;
  aspect-ratio: 1;
  flex-shrink: 0;
  overflow: hidden;
}

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

.info-news {
  width: calc(100% - 210px);
  padding-left: 20px;
}

.name-news {
  margin: 0 0 0.35rem;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
}

.name-news a {
  color: #252525;
  text-decoration: none;
}

.name-news a:hover,
.name-news a:focus-visible {
  color: var(--color-brand);
}

.name-news.text-split {
  -webkit-line-clamp: 2;
}

.desc-news {
  margin: 5px 0 0;
  color: #676767;
  font-size: 14px;
  line-height: 22px;
}

.desc-news.text-split {
  -webkit-line-clamp: 4;
}

.pagination-home {
  width: 100%;
  margin-top: 1rem;
}

.pagination-home .pagination .page-item .page-link {
  color: #555;
  font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
  color: #fff;
  background-color: #555;
  border-color: #555;
}

@media (max-width: 991px) {
  .row-news > li {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .row-news .news {
    flex-direction: column;
  }

  .pic-news,
  .info-news {
    width: 100%;
  }

  .info-news {
    padding: 0.75rem 0 0;
  }
}

/* Project detail — matches live article + sidebar */
.page-project-detail,
.page-news-detail {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.project-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project-detail-main {
  flex: 1 1 0;
  min-width: min(100%, 640px);
}

.project-detail-sidebar {
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
}

.title-detail-main {
  margin: 0 0 1.5rem;
  color: #252525;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
}

.time-main {
  margin: 0 0 0.75rem;
  color: #999;
  font-size: 14px;
}

.time-main i {
  vertical-align: top;
  margin: 3px 7px 0 0;
}

.time-main time,
.time-main span {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.75rem;
}

.page-project-detail .content-main figure,
.page-news-detail .content-main figure {
  margin: 1rem 0 0;
  text-align: center;
}

.page-project-detail .content-main figure img,
.page-news-detail .content-main figure img {
  max-width: 100%;
  height: auto;
}

/* Project gallery — keep tiles the same size when photos have mixed ratios */
.bota_album_details_body {
  margin: 1.5rem 0 0;
}

.bota_album_details_body .row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 16px;
  align-items: stretch;
}

.bota_album_details_img {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: #f4f4f4;
}

.bota_album_details_img a {
  display: block;
  height: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bota_album_details_img img,
.bota_album_details_img .img_cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bota_album_details_img a:hover img,
.bota_album_details_img a:focus-visible img {
  transform: scale(1.03);
}

.bota_album_details_img img {
  transition: transform 0.3s ease;
}

.othernews {
  position: sticky;
  top: 90px;
  z-index: 11;
  padding: 17px 15px 10px;
  background: rgba(128, 128, 128, 0.15);
  border-radius: 5px;
}

.othernews h2 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.related-projects {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-other {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 15px;
}

.pic-news-other {
  display: block;
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
}

.pic-news-other img {
  width: 100%;
  height: auto;
  display: block;
}

.name-news-other {
  width: 60%;
  margin: 0;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.name-news-other a {
  color: #252525;
  text-decoration: none;
}

.name-news-other a:hover,
.name-news-other a:focus-visible {
  color: var(--color-brand);
}

@media (max-width: 991px) {
  .project-detail-sidebar {
    max-width: none;
  }

  .othernews {
    position: static;
  }
}

/* Table of contents — matches live .meta-toc */
.meta-toc {
  margin-bottom: 1rem;
}

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

.mucluc-dropdown-list_button {
  text-decoration: none;
  cursor: pointer;
}

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;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.meta-toc.fiedx .box-readmore {
  display: none;
  width: 350px;
  max-width: calc(100vw - 20px);
}

.box-readmore .toc-list {
  list-style: none;
  counter-reset: item;
  margin: 8px 0 0;
  padding: 0;
}

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

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

.box-readmore .toc-list ul {
  list-style: none;
  counter-reset: item;
  margin: 8px 0 0;
  padding-left: 0;
}

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

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

.box-readmore .toc-list a {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

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

.box-readmore .toc-list a:hover,
.box-readmore .toc-list a:focus-visible {
  color: #767676;
}

/* Price list — matches live bang-gia table */
.page-price-list {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #212529;
  font-size: 10.5pt;
}

.price-table th,
.price-table td {
  padding: 8px;
  border: 1px solid #212529;
  text-align: center;
  vertical-align: middle;
}

.price-table thead th {
  background: var(--color-brand);
  color: #fff;
  font-weight: 400;
  line-height: 1.35;
}

.price-table tbody td a {
  color: inherit;
  text-decoration: none;
}

.price-table tbody td a:hover,
.price-table tbody td a:focus-visible {
  color: var(--color-brand);
}

.price-table figure {
  margin: 0;
}

.price-table figure img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Contact page — matches live lien-he */
.page-contact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.contact-article {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-text {
  flex: 1 1 280px;
  min-width: min(100%, 320px);
}

.contact-text h2 {
  margin: 0 0 1rem;
  color: var(--color-brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-text address {
  font-style: normal;
}

.contact-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-text li {
  margin-bottom: 0.5rem;
  font-size: 18px;
  line-height: 2;
}

.contact-text a {
  color: inherit;
}

.contact-text a:hover,
.contact-text a:focus-visible {
  color: var(--color-brand);
}

.contact-form {
  flex: 1 1 320px;
  min-width: min(100%, 360px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.contact-input {
  position: relative;
  margin: 0 0 20px;
}

.contact-input p {
  margin: 0;
}

.form-floating.form-floating-cus > input,
.form-floating.form-floating-cus > textarea {
  height: 45px;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.form-floating.form-floating-cus > textarea {
  height: 150px;
  resize: none;
}

.form-floating.form-floating-cus > label {
  padding: 10px;
  color: #6c757d;
}

.contact-input input:focus,
.contact-input textarea:focus {
  box-shadow: none;
  outline: none;
}

.contact-form-actions {
  margin: 0;
}

.contact-form-actions .btn {
  margin-right: 0.5rem;
}

.contact-map {
  position: relative;
  height: 500px;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 576px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
.loadding_form,.form_1title_ {
    display: none;
}