/* 1. Inter Regular (Cơ bản) - Weight 400 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-Italic.woff2") format("woff2");
  font-style: italic;
}

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

/* 2. Inter Medium (Vừa) - Weight 500 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* 3. Inter SemiBold (Bán đậm) - Weight 600 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 4. Inter Bold (Đậm) - Weight 700 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 5. Inter ExtraBold (Rất đậm) - Weight 800 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* 6. Inter Black (Siêu đậm) - Weight 900 */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_28pt-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: "Inter";
  /* Colors */
  --color-primary: #ffffff;
  --color-secondary: #1173d4;
  --color-text: #111111;
  /* Màu chữ */
  --color-text-secondary: #333333;
  --color-text-red: #e41b21;
  --color-text-white: #ffffff;
  --color-bg-main: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-btn: #e41b21;

  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px - Đơn vị chuẩn */
  --space-5: 1.5rem;
  /* 24px */
  --space-6: 2rem;
  /* 32px */
  --space-8: 3rem;
  /* 48px */
  --space-10: 4rem;
  /* 64px */

  /* Base size */
  --text-2xs: 0.6875rem;
  /* 11px */
  --text-xs: 0.75rem;
  /* 12px */
  --text-13: 0.8125rem;
  /* 13px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.563rem;
  /* 25px */
  --text-3xl: 1.953rem;
  /* 31px */
  --text-34: 2.125rem;
  /* 34px */
  --text-4xl: 2.441rem;
  /* 39px */
  --text-40: 2.5rem;
  /* 40px */
  --text-5xl: 3.052rem;
  /* 49px */

  /* Border Radius */
  --radius-sm: 4px;
  /* Small - buttons, inputs */
  --radius-md: 10px;
  /* Medium - cards */
  --radius-lg: 12px;
  /* Large - containers */
  --radius-xl: 16px;
  /* Extra large - sections */
  --radius-2xl: 18px;
  /* 2X large - hero cards */
  --radius-3xl: 20px;
  /* 3X large - major sections */
  --radius-pill: 999px;
  /* Pills and circles */
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-main) !important;
  line-height: 1.6;

  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tự động gán size cho các thẻ Heading */
h1 {
  text-transform: uppercase;
  font-size: clamp(50px, 5vw, 72px);
  color: var(--color-text-white) !important;
  line-height: 1.2;
}

h2 {
  font-size: var(--text-4xl);
  color: var(--color-text) !important;
}

h3 {
  font-size: var(--text-3xl);
  color: var(--color-text-secondary) !important;
}

h4 {
  font-size: var(--text-2xl);
  color: var(--color-text-secondary) !important;
}

h5 {
  font-size: var(--text-xl);
  color: var(--color-text-secondary) !important;
}

h6 {
  color: var(--color-text-secondary) !important;
  font-size: var(--text-lg);
}

small,
.text-small {
  font-size: var(--text-sm);
  /* 14px */
}

.btn-common {
  color: var(--color-text-white);
  border-radius: var(--radius-sm);
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 0 1px 0.5px;
}

.desc {
  font-size: clamp(14px, 2vw, 16px);
}

.head-small-text {
  color: var(--color-text-red);
  font-size: var(--text-sm);
  font-weight: bold;
  letter-spacing: 2.8px;
}

/* ---------- HEADER ----------- */
.stuck.header-wrapper {
  backdrop-filter: blur(10px);
  /* Độ mờ kính */
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5) !important;
  /* Màu nền đen mờ 80% */
}

.hero-btn-car {
  background: linear-gradient(90deg, var(--color-text-red) 0%, #c21029 100%) !important;
  border: none !important;
  box-shadow: 0 10px 20px -5px rgba(226, 29, 56, 0.4);
  transition: all 0.3s ease;
}

.hero-btn-car:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(226, 29, 56, 0.6);
  filter: brightness(1.1);
}

.hero h1 {
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Tạo lớp phủ Gradient từ trái sang phải cho Section */
/* .hero .section-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1; 
    pointer-events: none; 
}


.hero .section-content {
    position: relative;
    z-index: 1;
} */
.hero-content-tag {
  margin-bottom: 20px !important;
}

.hero-content-tag p {
  border-radius: var(--radius-3xl);
  padding: 2px 10px;
  color: var(--color-text-white);
  border: 1px solid #ffffffcc;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: clamp(12px, 2%, 14px);
  background-color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 2px;
  gap: 7px;
}

.hero-content-tag p::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--color-text-red);
  display: block;
}

.hero-description {
  margin-top: 24px;
  border-left: 3px solid var(--color-text-red);
  padding-left: 5px;
  margin-bottom: 24px;
  font-size: clamp(14px, 2vw, 20px);
}

.hero-btn-home {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.hero-btn-home:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.header-nav {
  gap: 20px;
}

.header-nav li a {
  color: var(--color-text-white) !important;
  font-size: var(--text-sm);
}

.header-button a {
  color: var(--color-text-white) !important;
  font-size: var(--text-base);
}

.header-nav.header-nav-main {
  justify-content: center;
}

.header-wrapper.stuck .header-main {
  background-color: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-wrapper.stuck .header-button .button {
  background: transparent !important;
  /* Bỏ nền đỏ */
  border: 1px solid var(--color-text-red) !important;
  /* Viền đỏ mảnh */
  color: var(--color-text-red) !important;
  /* Chữ màu đỏ */
  padding: 5px 20px !important;
  /* Làm nút gọn lại */
  box-shadow: none !important;
  /* Bỏ bóng đổ */
}

.header-wrapper.stuck .header-button .button:hover {
  background: var(--color-text-red) !important;
  color: #fff !important;
}

/* HERO FEATURES */
.technical-specs .section-content {
  margin-top: 66px;
}

.technical-specs {
  margin-top: -60px;
  border-radius: 15px;
}

.technical-heading .head-small-text,
.technical-heading h2 {
  margin-bottom: 12px;
}

.car-list-items {
  margin-top: 34px;
}

.car-list-items .col-inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  height: 100%;
  align-items: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 20px 20px 0px 20px !important;
}

.car-list-items .col-inner:hover {
  transform: translateY(-10px);
  /* Bay lên cao 10px */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* Bóng đổ đậm hơn sâu hơn */
  border-color: rgba(226, 29, 56, 0.2);
  /* (Tuỳ chọn) Viền chuyển màu đỏ nhẹ */
}

.car-list-items .box-image img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.car-list-items .box.box-text-bottom {
  flex-grow: 1;
}

.car-list-items h3 {
  font-size: 1.1em;
  letter-spacing: 0.5px;
  min-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
  /* font-size: var(--text-xl); */
  margin-top: 22px;
  display: flex;
  align-items: center;
}

.car-list-items .icon-box.featured-box {
  padding-top: 5px;
}

.car-list-items .icon-box.featured-box p {
  color: #444;
}

.car-list-items a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding-left: 10px !important;
  font-size: var(--text-sm);
}

.car-list-items a:hover {
  transform: translateX(5px);
  /* Trượt sang phải */
}

/* Architechture */
.architectural-solutions .section-content {
  padding-top: 60px;
  padding-bottom: 20px;
}

.architectural-solutions h2 {
  margin-bottom: 30px;
}

.bento-grid-row .col-inner {
  position: relative !important;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.bento-grid-row .tag p {
  padding: 1px 7px;
  display: inline-block;
  background-color: #ffffff20;
  margin-top: 20px;
  font-size: var(--text-xs);
  font-weight: bold;
}

.bento-grid-row .col:not(:last-child) .col-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Gradient: Đen đậm ở dưới (0.9) -> Trong suốt ở trên (0) */
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 15%,
      rgba(0, 0, 0, 0) 60%) !important;
  z-index: 5;
  /* Đặt lớp này cao hơn hình ảnh (thường là 1) */
  pointer-events: none;
  /* Để chuột click xuyên qua được vào hình/link */
  border-radius: inherit;
}

.bento-grid-row .col-inner h3,
.bento-grid-row .col-inner p,
.bento-grid-row .col-inner .icon-box,
.bento-grid-row .col-inner .button,
.bento-grid-row .col-inner .text-box>* {
  position: relative;
  z-index: 10;
}

.bento-grid-row .col-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-grid-row h3,
.bento-grid-row .icon-box-text {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  text-transform: uppercase;
}

.bento-grid-row .col-inner:hover h3,
.bento-grid-row .col-inner:hover .icon-box-text {
  transform: translateX(10px);
}

.bento-grid-row .col-inner.bg-red {
  justify-content: center;
  background-color: var(--color-text-red) !important;
}

.bento-grid-row .button {
  margin-top: 15px;
  padding: 10px 15px;
  background: #fff !important;
  color: var(--color-text-red) !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bento-grid-row .button:hover {
  background: #f0f0f0 !important;
  transform: scale(1.05);
}

/* Why choose us */

.why-choose-us .section-content {
  margin-top: 50px;
}

.why-choose-us .head-small-text {
  margin-bottom: 6px;
}

.why-choose-us h2 {
  margin-bottom: 34px;
}

.why-choose-us .list-items .col-inner {
  background: var(--color-bg-main);
  border-radius: var(--radius-lg);
  padding: 30px 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
}

.why-choose-us .list-items .col-inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-choose-us .list-items h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  padding-bottom: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.why-choose-us .list-items p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
  padding: 0 10px;
  /* Ép chữ vào giữa cho gọn */
}

/* ------------- SCIENCE ----------- */
.science .section-content {
  padding-top: 60px;
  padding-bottom: 30px;
}

.science .head-small-text {
  text-transform: uppercase;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.science .head-small-text::before,
.science .head-small-text::after {
  content: "";
  display: block;
  height: 2px;
  width: 32px;
  background-color: var(--color-text-red);
}

.science h2 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.science .desc {
  margin-bottom: 34px;
  color: #333333;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.science .list-items .col-inner {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
}

.science .list-items img {
  border-radius: var(--radius-lg);
}

.science .list-items h3 {
  font-size: var(--text-xl);
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-transform: uppercase;
}

.science .list-items h3::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--color-text-red);
  display: block;
}

.science .list-items .tech {
  font-size: var(--text-sm);
  font-weight: bold;
  color: #333333;
  margin-bottom: 12px;
}

.science .list-items .devied {
  content: "";
  height: 5px;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  color: red;
}

.tech-desc {
  margin-top: 12px;
  font-size: var(--text-sm);
  color: #333333;
}

/* Commit */
.commit .section-content {
  padding-top: 30px;
}

.commit .warranty {
  color: var(--color-text-red);
  font-size: var(--text-4xl);
  font-weight: 800;
}

.commit .year .col-inner {
  display: flex;
  width: 192px;
  height: 192px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid #e41b2180;
  border-radius: 50%;
  background: var(--color-text-white);
  box-shadow: 0 0 20px 5px #e41b2110;
}

.warranty-text {
  color: #111111;
  font-size: var(--text-sm);
  text-transform: uppercase;
  font-weight: bold;
}

.commit .row {
  align-items: center;
}

.commit .head-small-text {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  background-color: var(--color-text-red);
  color: white;
  font-weight: 500;
}

.commit h2 {
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
}

.commit .commit-desc {
  color: #333333;
  font-size: clamp(var(--text-sm), 2vw, var(--text-lg));
  line-height: 2;
  margin-bottom: 16px;
}

.commit .icon-box.featured-box {
  background: #fff;
  padding: 5px 10px;
  width: auto !important;
  border-radius: var(--radius-sm);
}

.commit .icon-box-text {
  display: flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
}

/* --------------------Portfolio---------------------- */
.portfolio .section-content {
  padding-top: 30px;
}

/* CONTACT */
.contact h2 {
  margin-bottom: 14px;
  color: white !important;
}

.contact .desc {
  margin-bottom: 30px;
  color: white;
}

.contact .section-content>.row {
  display: flex;
  align-items: center;
}

.contact .icon-box.featured-box h6 {
  font-size: var(--text-base);
  color: var(--color-text-white) !important;
  opacity: 1 !important;
}

.contact .icon-box.featured-box {
  display: flex;
  align-items: center;
  padding: 5px 0px;
}

.contact .icon-box.featured-box .icon-box-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact .section-content {
  padding-top: 60px;
}

.glass-form-dark h3 {
  color: var(--color-text-white) !important;
}

.contact .icon-box.featured-box p {
  color: #9ca3af;
  font-size: var(--text-base);
}

.glass-form-dark .col-inner {
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.glass-form-dark input[type="text"],
.glass-form-dark input[type="tel"],
.glass-form-dark input[type="email"],
.glass-form-dark textarea,
.glass-form-dark select {
  background-color: #383838 !important;
  border: 1px solid #555 !important;
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.glass-form-dark ::placeholder {
  color: #888 !important;
  opacity: 1;
}

.flex-row-form {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.col-half {
  width: 50%;
}

.glass-form-dark label {
  font-size: 11px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.glass-form-dark input[type="submit"] {
  width: 100%;
  background-color: var(--color-text-red) !important;
  color: white !important;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  padding: 5px;
  margin-top: 10px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.glass-form-dark input[type="submit"]:hover {
  background-color: #c21029 !important;
  transform: translateY(-2px);
}

/*  */
.standards .section-content {
  padding: 90px 0px;
}

.standards .head {
  align-items: center;
}

.standards h2 {
  text-transform: uppercase;
}

.standards .desc {
  font-size: var(--text-sm);
  font-style: italic;
}

.standred-list-items {
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  background-color: #fff;
}

.standred-list-items h3 {
  font-size: var(--text-xl);
  margin-bottom: 24px;
}

.standred-list-items .icon-box-text p {
  font-size: var(--text-sm);
  margin-bottom: 0;
  color: #4b5563;
}

.standred-list-items .col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.standred-list-items .col {
  padding: 30px;
}

.standred-list-items .col-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.standred-list-items .divider {
  margin-top: auto !important;
  margin-bottom: 25px;
}

.standred-list-items .tag {
  font-size: 12px;
  font-weight: 800;
  color: #9ca3af;
}

.standred-list-items .icon-box.featured-box {
  margin-bottom: 25px;
}

/* Footer */
.absolute-footer .container.clearfix {
  max-width: 100% !important;
}

.absolute-footer .footer-primary {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  gap: 20px;
  width: 100%;
}

.absolute-footer.dark ul {
  border: none;
}

.footer-widgets .footer_custom .head {
  color: var(--color-text-red);
  font-weight: 700;
  letter-spacing: 2px;
}

/* .footer-widgets {
  background: var(--color-bg-light) !important;
}

.footer-widgets .footer_custom .head {
  color: var(--color-text-red);
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-widgets .footer_custom .brand-name {
  font-size: var(--text-lg);
  font-weight: 800;
  font-style: italic;
}

.footer-widgets .footer_custom p {
  padding: 10px 10px;
}

.footer-widgets .footer_custom p:not(:first-child) {
  color: var(--color-text-secondary);
} */
/* ===== Footer custom: Premium 3-column ===== */

.footer_custom {
  background: #0f1115;
  /* nền tối sang */
  color: rgba(255, 255, 255, .78);
}

.footer_custom .section-bg {
  background: radial-gradient(900px 420px at 15% 20%, rgba(255, 255, 255, .06), transparent 60%),
    radial-gradient(700px 360px at 85% 35%, rgba(229, 57, 53, .10), transparent 55%);
}

.footer_custom .section-content {
  max-width: 1100px;
  /* đúng scale site */
  margin: 0 auto;
  padding: 10px 16px;
}

/* Row spacing */
.footer_custom .row {
  row-gap: 22px;
}

/* Cột: thêm padding + vạch ngăn nhẹ */
.footer_custom .col .col-inner {
  padding: 10px 8px;
}



/* Brand name */
.footer_custom .brand-name {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  color: #fff;
}

/* Headings */
.footer_custom .head {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: var(--text-13);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}

/* Paragraphs */
.footer_custom p {
  margin: 0 0 10px;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255, 255, 255, .75);
}

/* Nhấn nhẹ dòng mô tả brand */
.footer_custom .brand-name+p {
  max-width: 34ch;
  opacity: .9;
}

/* Link styling (nếu sau này đổi p thành a/menu thì auto đẹp) */
.footer_custom a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.footer_custom a:hover {
  color: #fff;
  opacity: 1;
}

/* Nếu vẫn dùng <p> làm "link" thì cho hiệu ứng hover nhẹ */
.footer_custom .col:nth-child(2) p:not(.head),
.footer_custom .col:nth-child(3) p:not(.head) {
  cursor: default;
  /* đổi thành pointer nếu mày biến chúng thành link */
}

/* Bottom breathing room */
.footer_custom {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* CONTACT PAGE */
/* .contact-page .col {
  padding: 0px;
} */


/* ================================
   CONTACT LEFT PANEL 
==================================*/
/* .contact-page {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
} */

.contact-page .col-inner {
  height: 100%;
}

.contact-page .col-inner:last-child {
  border-radius: 10px;
  overflow: hidden;
  border: 6px solid #fff;
}

.contact-page .vq-map-embed {
  border-radius: 6px;
}

.contact-page .contact-detail .col-inner {
  background: #1c1c1c !important;
  padding: 56px 52px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .35);
  position: relative;
  overflow: hidden;

  color: var(--color-text-white);
}

.vq-map-embed {
  width: 100%;
  height: 100%;
}

.contact-page .contact-detail .col-inner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: 110px;
  top: 45%;
  transform: translate(50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 60%);
  filter: blur(0px);
  opacity: .55;
  pointer-events: none;
}


.contact-page .contact-detail h2 {
  margin: 0 0 34px;
  color: var(--color-text-white) !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: var(--text-34);

  line-height: 1.1;
  position: relative;
  padding-left: 18px;

}

.contact-page .contact-detail h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 34px;
  background: var(--color-text-red);

  border-radius: 2px;
}

.contact-page .contact-detail .icon-box {
  align-items: flex-start;
  margin: 0 0 26px;
}

.contact-page .contact-detail .icon-box:last-child {
  margin-bottom: 0;
}

/* icon container */
.contact-page .contact-detail .icon-box-img {
  width: 44px !important;
  margin-top: 2px;
  opacity: .92;
}

/* icon size */
.contact-page .contact-detail .icon-box-img img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .9;
}

.contact-page .contact-detail .icon-box-text h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85) !important;
}

/* ===== value text (p) trắng, dễ đọc ===== */
.contact-page .contact-detail .icon-box-text p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.7;
}

/* dòng phụ mờ hơn (vd Closed on...) */
.contact-page .contact-detail .icon-box-text p:last-child {
  color: rgba(255, 255, 255, .60);
  font-size: var(--text-sm);
}

/* khoảng cách chữ so với icon */
.contact-page .contact-detail .icon-box-text {
  padding-left: 8px;
}

/* ===== CF7 form giống mẫu (line-only) ===== */
.contact-page .glass-form-dark .col-inner {
  background: white;
}

/* ================================
   FORM WHITE – EXACT STYLE MATCH
================================ */

/* container */
.vq-form {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
}

/* title */
.vq-form__title {
  margin: 0 0 6px;
  font-size: var(--text-40);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #222;
}

/* subtitle */
.vq-form__sub {
  margin: 0 0 26px;
  font-size: 16px;
  color: #6b7280;
}

/* grid */
.vq-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 46px;
}

/* label */
.vq-field label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111827;
}

/* ===== INPUT LINE STYLE ===== */
.vq-form--line input[type="text"],
.vq-form--line input[type="email"],
.vq-form--line input[type="tel"],
.vq-form--line select {
  width: 100%;
  height: 42px;
  padding: 0;
  border: none;
  border-bottom: 2px solid #d1d5db;
  background: transparent;
  font-size: 16px;
  color: #111;
  outline: none;
  box-shadow: none;
}

/* focus */
.vq-form--line input:focus,
.vq-form--line select:focus {
  border-bottom-color: #9ca3af;
}

/* select arrow clean */
.vq-form--line select {
  appearance: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 18px;
  padding-right: 26px;
}

/* textarea */
.vq-form--line textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  padding: 16px;
  font-size: 16px;
  min-height: 160px;
  resize: none;
  outline: none;
  box-shadow: none;
}

.vq-form--line textarea:focus {
  border-color: #9ca3af;
}

/* full width */
.vq-field--full {
  grid-column: 1 / -1;
}

/* ===== BUTTON EXACT STYLE ===== */
.vq-actions {
  margin-top: 14px;
}

.vq-btn {
  background: var(--color-text-red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .18);
  /* clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%); */
}

/* hover */
.vq-btn:hover {
  background: #c71626;
}



/* ===== Series section ===== */
.vq-series {
  margin: 18px 0 28px;
}

.vq-series__head {
  margin-bottom: 12px;
}

.vq-series__title {
  font-size: clamp(32px, 4vw, var(--text-4xl));
  margin: 0 0 4px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.vq-series__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: -7px;
  background: #ff2b2b;
}

.vq-series__subtitle {
  margin-bottom: 20px;
  opacity: 0.75;
  font-size: var(--text-13);
}

.vq-series__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ===== Card ===== */
.vq-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.vq-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.vq-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vq-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.vq-card__name {
  margin: 0;
  font-size: clamp(--text-sm, 2vw, var(--text-base));
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}

.vq-card__name a {
  color: inherit;
  text-decoration: none;
}

.vq-badge {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.vq-badge--red {
  background: #ff2b2b;
  color: #fff;
  border-color: transparent;
}

.vq-badge--gray {
  background: #f2f2f2;
  color: #111;
}

.vq-badge--black {
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* Specs list */
.vq-card__specs {
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;
  font-size: var(--text-xs);
  line-height: 1.5;
}

.vq-card__specs li {
  display: flex;
  gap: 8px;
  margin: 6px 0;
}

.vq-card__specs .icon-check {
  margin-top: 2px;
}

.vq-card__cta {
  display: inline;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 800;
  font-size: var(--text-13);
  margin-top: auto;
}

/*  */
.vq-solution {
  margin: 26px 0 34px;
  padding: 20px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.vq-solution__head {
  text-align: center;
  margin-bottom: 14px;
}

.vq-solution__title {
  margin: 0 0 4px;
  font-weight: 900;
}

.vq-solution__subtitle {
  margin: 0;
  opacity: 0.7;
  font-size: var(--text-13);
}

.vq-solution__grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

/* scale: nếu nhiều sản phẩm, tự xuống hàng */
.vq-solution__grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vq-solution__grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vq-solution-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 14px;
  background: #fff;
}

.vq-solution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.vq-solution-card__name {
  margin: 0;
  font-weight: 900;
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.vq-solution-card__name a {
  color: inherit;
  text-decoration: none;
}

.vq-solution-card__img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 10px;
}

.vq-solution-card__table .vq-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--text-xs);
}

.vq-row__label {
  opacity: 0.7;
}

.vq-row__value {
  font-weight: 800;
  text-align: right;
}

.vq-row__value.is-highlight {
  color: #ff2b2b;
}

/* Hero o to */
.vq-hero {
  margin: 12px 0 90px;
}

.vq-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.vq-hero__eyebrow {
  color: var(--color-text-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vq-hero__title {
  font-size: clamp(32px, 4vw, var(--text-5xl));
  color: #111111 !important;
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.vq-hero__desc {
  font-size: clamp(12px, 2.5vw, 16px);
  margin: 0;
  opacity: 0.75;
  max-width: 560px;
}

.vq-hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vq-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  background: #111;
  text-decoration: none;
}

.vq-hero-card--large {
  grid-column: 1 / -1;
}

.vq-hero-card img,
.vq-hero-card__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.vq-hero-card--large img,
.vq-hero-card--large .vq-hero-card__ph {
  height: 194px;
}

.vq-hero-card__ph {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02));
}

.vq-hero-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

/* ============ CARD WRAP: box + highlights như 1 card ============ */
/* box */

/* Sort tách riêng, không dính title */
.tax-product_cat.vq-subcat .page-title {
  display: none !important;
}

.vq-cat-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;

  padding: 90px 0 80px;

  filter: saturate(1.05) contrast(1.05);
}

.vq-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 40%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.18) 100%);
}

.vq-cat-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.vq-cat-hero__title {
  color: #fff;
  font-size: var(--text-40);
  line-height: 1.15;
  font-weight: 650;
  margin: 8px 0 12px;
  letter-spacing: -0.4px;
}

.vq-cat-hero__desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  opacity: 0.92;
}

.vq-cat-hero__breadcrumb .woocommerce-breadcrumb {
  font-size: var(--text-13);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.vq-cat-hero__breadcrumb .woocommerce-breadcrumb,
.vq-cat-hero__breadcrumb .woocommerce-breadcrumb .divider,
.vq-cat-hero__breadcrumb a {
  color: #fff;
}

.vq-cat-hero__breadcrumb a:hover {
  text-decoration: underline;
}

body.tax-product_cat .vq-hero {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.category-page-row {
  padding-top: 0px;
}

.vq-subcat {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0) 260px) !important;
}

.vq-subcat .shop-page-title {
  color: var(--color-text-secondary) !important;
  font-size: var(--text-34);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 10px !important;
  margin-bottom: 6px !important;
}

.vq-subcat .term-description p {
  display: none;
}

.woocommerce-notices-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vq-subcat .woocommerce-notices-wrapper:before {

  content: "DANH SÁCH SẢN PHẨM";
  color: var(--color-text-secondary) !important;
  display: block;
  margin: 0 0 14px;
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 60px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e41b2140;
}

/* --------------------------- */


.vq-subcat .product-small .col-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vq-subcat .product-small .col-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.14);
}

.vq-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;

  margin-top: auto;
  background: rgba(214, 31, 38, 0.08);

  border-top: 1px solid rgba(214, 31, 38, 0.35);
  color: #d61f26 !important;

  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.2px;
  line-height: 1;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.vq-cta-btn:hover {
  background: rgba(214, 31, 38, 0.14);
  border-color: rgba(214, 31, 38, 0.55);
  transform: translateY(1px);
}

.vq-cta-btn:active {
  transform: translateY(0);
}

/* ảnh */
.vq-subcat .product-small .product-small.box .box-image {
  overflow: hidden;
}

.vq-subcat .product-small .product-small.box .box-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vq-subcat .product-small:hover .product-small.box .box-image img {
  transform: scale(1.03);
}

/* ============ BOX TEXT: title + price cùng hàng ============ */
.vq-subcat .product-small .box-text.box-text-products {
  padding: 16px 18px 14px;
}

/* title-wrapper thành flex row */
.vq-subcat .product-small .box-text {
  align-items: center !important;
}

.vq-subcat .product-small .box-text .product-cat {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--color-text-red);
}

/* title */
.vq-subcat .product-small .box-text .name {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: var(--text-base);
  min-width: 0;
}

.vq-subcat .product-small .box-text .name a {
  color: inherit;
  text-decoration: none;
}

.vq-subcat .product-small .box-text .price-wrapper {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 110px;
}

.vq-subcat .product-small .box-text .price {
  margin: 0 !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.price .woocommerce-Price-currencySymbol {
  font-weight: 600;
  opacity: 0.85;
}

.vq-subcat .product-small .box-text .price-wrapper:empty {
  height: 20px;
}

/* divider giữa header và highlights (nhẹ, premium) */
.vq-subcat .product-small .box-text.box-text-products {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============ HIGHLIGHTS: nằm ngoài box nhưng nhìn như trong card ============ */
.vq-subcat .product-small .vq-loop-highlights {
  margin: 0;

  padding: 14px 0px;

  list-style: none;
  display: grid;
  gap: 10px;
  font-size: var(--text-13);
  line-height: 1.35;
  background: #fff;
  border-radius: 0 0 18px 18px;

}

/* mỗi dòng */
.vq-subcat .product-small .vq-loop-highlights li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

/* icon check: nhỏ + bớt gắt */
.vq-subcat .product-small .vq-loop-highlights .icon-check {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-pill);
  background: rgba(225, 17, 17, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vq-subcat .product-small .vq-loop-highlights .icon-check:before {
  content: "✓";
  color: var(--color-text-red);
  font-weight: 900;
  font-size: 10px;
  line-height: 1;
}


/* -------------  BLOG --------------- */

.box-blog-post {
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}


.box-blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.box-blog-post .box-image {
  overflow: hidden;
}

.box-blog-post .box-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.box-blog-post:hover .box-image img {
  transform: scale(1.1);
}


.box-blog-post .box-text {
  padding: 20px 25px 25px 25px;
  background-color: #fff;
}

.box-blog-post .post-title {
  margin-bottom: 10px;
  margin-top: 5px;
}

.box-blog-post .post-title a {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.box-blog-post:hover .post-title a {
  color: var(--color-text-red)
}

.box-blog-post .is-divider {
  display: none;
}

.box-blog-post .from_the_blog_excerpt {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box-blog-post .box-text-inner:after {
  content: "Xem chi tiết →";
  display: inline-block;
  font-size: var(--text-13);
  font-weight: 600;
  text-transform: uppercase;
  color: #d26e4b;
  margin-top: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.box-blog-post:hover .box-text-inner:after {
  padding-left: 5px;
}

/* Card cao tối thiểu để nhìn bớt nhảy */
.blog-archive .col.post-item .col-inner {
  height: 100%;
}

/* -------------  CATEGORY NHÀ Ở --------------- */
.term-nha-o .shop-page-title {
  display: none;
}

/* Page */
.res-landing {
  padding-bottom: 64px;
}

/* HERO */
.res-hero {
  margin-bottom: 18px;
}

footer_custom .res-hero__background {
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.res-hero__overlay {
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 46px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .60), rgba(0, 0, 0, .18));
}

.res-hero__eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
  margin-bottom: 10px;
  color: #fff;
}

.res-hero__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -.015em;
}

.res-hero__subtitle {
  color: rgba(255, 255, 255, .9);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.res-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.res-hero__actions .button {
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

/* QUICK NAV */
.res-quick-nav {
  margin: 18px 0 22px;
}

.res-quick-nav__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.res-quick-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  color: #111827;
  font-weight: 700;
  font-size: var(--text-13);
  line-height: 1.2;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.res-quick-nav__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .09);
  border-color: rgba(15, 23, 42, .14);
}

/* SECTIONS wrapper */
.res-sections {
  margin-top: 10px;
}

/* Section card */
.res-section {
  border-radius: var(--radius-3xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  padding: 22px 22px 18px;
  margin-bottom: 18px;
}

/* Section header */
.res-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  margin-bottom: 14px;
}

.res-section__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: #0f172a;
}

.res-section__description {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(15, 23, 42, .65);
  max-width: 760px;
}

/* Header CTA link */
.res-section__header-cta {
  flex: 0 0 auto;
  padding-top: 2px;
}

.res-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: var(--text-13);
  text-decoration: none;
  color: var(--color-text-red);
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .02);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.res-link:hover {
  transform: translateY(-1px);
  color: var(--color-text-white);
  background: var(--color-text-red);
  border-color: rgba(15, 23, 42, .16);
}


/* .res-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
} */

/* Empty */
.res-empty-state,
.res-empty-products {
  padding: 14px 16px;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, .04);
  border: 1px dashed rgba(15, 23, 42, .16);
}

/* SINGLE PRODUCT */
.single-product .variations_button .single_add_to_cart_button,
.single-product .woocommerce-variation-add-to-cart,
.single-product .variations_button .quantity {
  display: none !important;
}


.vq-pdp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.vq-pdp__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.vq-pdp__title {
  color: var(--color-text) !important;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 10px;
}

.vq-pdp__excerpt {
  margin: 10px 0 14px !important;
  color: rgba(15, 23, 42, .75);
  line-height: 1.7;
  font-size: 15px;
}

.vq-pdp__price {
  margin: 10px 0;
  font-size: 20px;
}

.vq-pdp__variations {
  margin: 14px 0;
}

.vq-pdp__actions {
  margin-top: 10px;
}

/* 1) Tổng thể: giảm cảm giác "cũ" */
.single-product .product-main,
.single-product .product-summary,
.single-product .summary {
  font-size: 15px;
  line-height: 1.65;
}

/* 2) Breadcrumb: gọn hơn */
.single-product .woocommerce-breadcrumb,
.single-product .breadcrumb {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 14px;
}

/* 4) Meta (SKU/cat/brand): bỏ đường kẻ rườm rà, gọn lại */
.single-product .product_meta,
.single-product .product_meta>span {
  border: 0 !important;
}

.single-product .product_meta {
  border: 0 !important;
  padding: 0 !important;
  margin: 8px 0 14px !important;
  display: grid;
  gap: 6px;
  font-size: var(--text-13);
  color: rgba(15, 23, 42, .70);
}

.single-product .summary .product_meta>span {
  border: 0 !important;
  padding: 0 !important;
}

.single-product .product_meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(15, 23, 42, .25);
}

.single-product .product_meta a:hover {
  border-bottom-style: solid;
}

/* 5) Price: nổi bật, hiện đại */
.single-product .summary .price {
  font-size: 24px;
  font-weight: 800;
  margin: 8px 0 12px !important;
  color: #0f172a;
}

.single-product .summary .price del {
  opacity: .45;
  font-weight: 600;
}

.single-product .summary .price ins {
  text-decoration: none;
}

.single-product .summary form.variations_form {
  margin: 12px 0 14px !important;
  padding: 14px !important;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .02);
}

.single-product .summary table.variations {
  margin: 0 !important;
}

/* Dropdown sạch */
.single-product .variations select {
  height: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  padding: 0 12px;
  font-weight: 600;
}

.single-product .summary table.variations th,
.single-product .summary table.variations td {
  padding: 6px 0 !important;
  border: 0 !important;
  vertical-align: middle;
}

.single-product .summary table.variations th {
  width: 36%;
  font-size: var(--text-13);
  font-weight: 700;
  color: rgba(15, 23, 42, .75);
}

/* Link "Xóa" (reset variations): nhỏ, tinh tế */
.single-product .reset_variations {
  font-size: 12px !important;
  opacity: .65;
  text-decoration: none;
  border-bottom: 1px dotted rgba(15, 23, 42, .28);
}

.single-product .reset_variations:hover {
  opacity: 1;
  border-bottom-style: solid;
}

/* 8) CTA "Tư vấn & Báo giá": pro button */
.single-product .vq-pdp__actions,
.single-product .summary .vq-pdp__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-product .vq-pdp__btn {
  border-radius: 8px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

/* Nếu button primary của theme không đẹp, ép lại */
.single-product .vq-pdp__btn.button.primary {
  background: var(--color-text-red) !important;
  border-color: var(--color-text-red) !important;
  color: #fff !important;
}


.single-product .woocommerce-product-gallery__image img {
  border-radius: 18px !important;
  overflow: hidden;
}

.woocommerce-variation-description p {
  font-size: var(--text-sm);
}

.single-product .product-thumbnails.thumbnails {
  margin-top: 10px !important;
}

/* Đè inline height của Flickity viewport (đang 135px) */
.single-product .product-thumbnails.thumbnails .flickity-viewport {
  height: 76px !important;

}

/* Mỗi item thumb nhỏ lại (đang auto 25% vì small-columns-4) */
.single-product .product-thumbnails.thumbnails .col {
  width: 72px !important;
  max-width: 72px !important;
  padding: 0 6px !important;

}

/* Ảnh thumb: kích thước + bo góc + tinh tế */
.single-product .product-thumbnails.thumbnails img.attachment-woocommerce_thumbnail {
  width: 72px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, .12);
  opacity: .65;
  transition: all .2s ease;
}

/* Active/Hover */
.single-product .product-thumbnails.thumbnails .is-nav-selected img,
.single-product .product-thumbnails.thumbnails img:hover {
  opacity: 1;
  border-color: rgba(15, 23, 42, .45);
}

/* Tuỳ chọn: giảm độ “lộ” của nút prev/next trong thumbs */
.single-product .product-thumbnails.thumbnails .flickity-prev-next-button {
  width: 28px;
  height: 28px;
  opacity: .55;
}

.single-product .product-thumbnails.thumbnails .flickity-prev-next-button:hover {
  opacity: .9;
}

.single-product .product-thumbnails.thumbnails {
  margin-top: 10px !important;
}

/* Đè inline height của Flickity viewport (đang 135px) */
.single-product .product-thumbnails.thumbnails .flickity-viewport {
  height: 84px !important;

}


.single-product .product-thumbnails.thumbnails .col {
  width: 72px !important;
  max-width: 72px !important;
  padding: 0 6px !important;

}


.single-product .product-thumbnails.thumbnails img.attachment-woocommerce_thumbnail {
  width: 72px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, .12);
  opacity: .65;
  transition: all .2s ease;
}

.single-product .product-thumbnails.thumbnails .is-nav-selected img,
.single-product .product-thumbnails.thumbnails img:hover {
  opacity: 1;
  border-color: rgba(15, 23, 42, .45);
}


.single-product .product-thumbnails.thumbnails .flickity-prev-next-button {
  width: 28px;
  height: 28px;
  opacity: .55;
}

.single-product .product-thumbnails.thumbnails .flickity-prev-next-button:hover {
  opacity: .9;
}

.woocommerce-variation-price {
  display: none;
}

.woocommerce-tabs {
  margin: 60px 0px !important;
  padding: 0px;
  color: var(--color-text) !important;
}

.single-product .woocommerce-tabs {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  padding: 14px 16px 6px;
}

.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 18px;
  border: 0 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 10px 2px !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 2px solid transparent;
}

/* Active */
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li.is-active a {
  color: var(--color-text-red) !important;
  border-bottom-color: var(--color-text-red);
}

/* Panel padding */
.single-product .woocommerce-tabs .panel {
  padding: 12px 2px 16px !important;
  margin: 0 !important;
}

/* ===== Fix typography "to đùng" trong mô tả ===== */
.single-product .woocommerce-tabs #tab-description h1,
.single-product .woocommerce-tabs #tab-description h2 {
  color: var(--color-text) !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}

.single-product .woocommerce-tabs #tab-description h3 {
  color: var(--color-text) !important;
  font-size: 18px !important;
  margin: 18px 0 10px !important;
}

.single-product .woocommerce-tabs #tab-description p,
.single-product .woocommerce-tabs #tab-description li {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: rgba(15, 23, 42, .85);
}

.single-product .woocommerce-tabs #tab-description p {
  margin: 0 0 12px !important;
}

/* Ảnh trong mô tả */
.single-product .woocommerce-tabs #tab-description img {
  border-radius: var(--radius-xl);
}

.single-product .product-tabs li.active>a:before,
.single-product .product-tabs li:hover>a:before {
  display: none
}

/* Related */
.vq-related {
  margin-top: 26px;
}

.vq-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.vq-related__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
}

.vq-related__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 2px;
  background: var(--color-text-red);
}

.vq-related__nav {
  display: flex;
  gap: 8px;
}

.vq-related__btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.vq-related__btn:hover {
  border-color: rgba(15, 23, 42, .25);
}

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

.pdp-techspec table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pdp-techspec th,
.pdp-techspec td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid #eef1f4;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.pdp-techspec th {
  background: #f8fafc;
  font-weight: 700;
  white-space: nowrap
}

.pdp-techspec tr:last-child td,
.pdp-techspec tr:last-child th {
  border-bottom: 0
}

.pdp-techspec td:nth-child(2) {
  font-weight: 700;
  white-space: nowrap
}

.pdp-techspec td:nth-child(3) {
  color: #444
}



/* SHOP */
.shop-hub {
  padding: 48px 0
}

.shop-hub__head {
  max-width: 880px;
  margin: 0 auto 22px;
  text-align: center
}

.shop-hub__title {
  margin: 0 0 10px;
  font-size: var(--text-34);
  letter-spacing: -.02em
}

.shop-hub__sub {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7
}

.shop-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.shop-hub-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid #eef1f4;
  background: #fff;
  box-shadow: 0 16px 50px rgba(16, 24, 40, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.shop-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(16, 24, 40, .12);
  border-color: #e3e7ec;
}

.shop-hub-card__link {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 160px;
  text-decoration: none !important;
  color: inherit;
}

.shop-hub-card__media {
  position: relative;
  background-size: cover;
  background-position: center;
}

.shop-hub-card__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, .10), rgba(16, 24, 40, 0));
}

/* 2 theme ảnh (tạm thời dùng gradient – bước 3 tao sẽ nối ACF hero_image) */
.shop-hub-card--auto .shop-hub-card__media {
  background-image:
    radial-gradient(80% 120% at 10% 20%, rgba(240, 60, 60, .25), rgba(240, 60, 60, 0) 55%),
    linear-gradient(135deg, #0b1220, #111827);
}

.shop-hub-card--home .shop-hub-card__media {
  background-image:
    radial-gradient(80% 120% at 10% 20%, rgba(56, 189, 248, .22), rgba(56, 189, 248, 0) 55%),
    linear-gradient(135deg, #0b1220, #111827);
}

.shop-hub-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.shop-hub-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #475467;
  background: #f8fafc;
  border: 1px solid #eef1f4;
  border-radius: var(--radius-pill);
  padding: 6px 10px;
}

.shop-hub-card__title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.01em;
}

.shop-hub-card__desc {
  margin: 0;
  color: #475467;
  line-height: 1.65;
  font-size: var(--text-sm);
  max-width: 520px;
}

.shop-hub-card__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-text-red);

}

.shop-hub-card__arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(225, 29, 72, .10);
  transition: transform .18s ease, background .18s ease;
}

.shop-hub-card:hover .shop-hub-card__arrow {
  transform: translateX(2px);
  background: rgba(225, 29, 72, .16);
}

.shop-hub-card__media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0b1220;

}

.shop-hub-card__media:not([style*="background-image"]) {
  background-image:
    radial-gradient(80% 120% at 10% 20%, rgba(225, 29, 72, .18), rgba(225, 29, 72, 0) 55%),
    linear-gradient(135deg, #0b1220, #111827);
}

/* Custom Single Blog */


.vq-post-hero {
  padding: 48px 0 28px;
  background: #fafafa;
}

.vq-post-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP cluster */
.vq-post-hero__breadcrumb {
  font-size: 12px;
  opacity: .5;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vq-post-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.vq-post-hero__eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  opacity: .8;
  padding-left: 12px;
  position: relative;
}

.vq-post-hero__eyebrow::before {
  content: "";
  width: 3px;
  height: 14px;
  background: var(--color-text-red);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.vq-post-hero__meta {
  font-size: 12px;
  opacity: .65;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.vq-post-hero__title {
  color: var(--color-text) !important;
  max-width: 860px;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(28px, 3.1vw, 44px);
}

.vq-post-hero__excerpt {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  opacity: .88;
}

/* Media */
.vq-post-hero__media {
  max-width: 1080px;
  margin: 18px auto 0;
  padding: 0 16px;
}

.vq-post-hero__img {

  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  display: block;
  box-shadow: 0 26px 56px rgba(0, 0, 0, .14);
}


.vq-post-body {
  padding: 40px 16px 0;
}

.vq-post-content {
  max-width: 840px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  padding-top: 28px;
}

.vq-post-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
}

.vq-post-content>p:first-of-type {
  font-size: 18px;
  line-height: 1.8;
  opacity: .9;
}

.vq-post-content h2::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 6px;
  width: 4px;
  height: 24px;
  background: var(--color-text-red);
}

.vq-post-content h3 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 600;
}

.vq-post-content p {
  margin-bottom: 1.2em;
}

.vq-post-content ul {
  padding-left: 18px;
  margin: 20px 0;
}

.vq-post-content ul li {
  margin-bottom: 8px;
}

.vq-post-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: #f7f7f7;
  border-left: 4px solid var(--color-text-red);
  font-style: italic;
}

/* AUTHOR */
.vq-post-author {
  margin: 80px 0 0;
  padding: 32px 0;
  border-top: 1px solid #eee;
}

.vq-post-author__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 20px;
}

.vq-post-author__avatar img {
  border-radius: 50%;
}

.vq-post-author__name {
  margin: 0 0 6px;
}

.vq-post-author__bio {
  margin: 0 0 8px;
  opacity: .85;
}

.vq-post-author__link {
  font-size: var(--text-sm);
  text-decoration: none;
}


/* POST REALTED */
.vq-post-related {
  margin: 80px 0 0;
  background: #fafafa;
  padding: 56px 0;
}

.vq-post-related__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.vq-post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vq-post-related__item img {
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
}

/* SINGLE POST CTA */
.vq-post-cta {
  margin: 80px 0 0;
  padding: 64px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.vq-post-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.vq-post-cta__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--color-text-red);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}


/* ABout uS PAGE */

.about-page-head h1 {
  color: var(--color-text) !important;
  margin-bottom: 32px;
}

.about-page-head .desc {

  margin-bottom: 16px;
}

.about-page-head .highlight {
  color: var(--color-text-red) !important;
}

.heritage-list {
  margin-top: 64px;
}

.heritage-list .col-inner {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-lg);
  height: 100%;
  border: 1px solid #F3F4F6;
}

.heritage h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #6B7280 !important;
  margin-bottom: 16px;
  text-transform: uppercase;

}

.heritage .section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heritage .row:first-child {
  align-items: center;
}

.heritage .text-big {
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.vision .section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.vision h2 {
  color: var(--color-text-white) !important;
  font-size: var(--text-lg);
  letter-spacing: 7.2px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.vision .desc {
  color: #FCE8E9 !important;
  font-size: var(--text-lg);
}

.ecosystem h2 {
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, var(--text-5xl));
  font-weight: 800;
  margin-bottom: 32px;
}

.ecosystem .section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ecosystem .head-small-text {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ecosystem .box.has-hover {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.ecosystem .card-eyebrow {
  color: #e53935;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.ecosystem .card-title {
  color: #fff !important;
  font-weight: 800;
}

.ecosystem .items .box {
  margin-bottom: 30px;
}

.ecosystem .icon-box {
  background: #F9FAFB;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 16px;
  border-left: 3px solid #e53935;
}

.ecosystem .items .col-inner {
  cursor: pointer;
  height: 100%;
}

.ecosystem .icon-box .icon-box-text h4 {
  font-size: var(--text-lg) !important;
}

.ecosystem .icon-box .icon-box-text p {
  font-size: var(--text-13) !important;
  color: #4B5563;
}

.ecosystem .architechture-item .icon-box {
  border-left: 3px solid #D1D5DB;
}

.qualitywarranty {
  color: #9CA3AF;
}

.qualitywarranty .section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.qualitywarranty .row {
  align-items: center;
  background-color: rgba(17, 24, 39, 0.4);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
}

.qualitywarranty h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--color-text-white) !important;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 20px;
}

.qualitywarranty .desc {
  color: #9CA3AF !important;
  font-size: var(--text-lg);
  margin-top: 20px;
  margin-bottom: 10px;
}

.qualitywarranty .icon-box {
  display: flex;
  justify-content: center;
  align-items: center;

}

.qualitywarranty .icon-box h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  color: #D1D5DB !important;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES - FLATSOME STANDARD
   3 Breakpoints: Desktop (≥850px), Tablet (550-849px), Mobile (≤549px)
======================================== */

/* ===== Desktop: min-width 850px ===== */
@media (min-width: 850px) {

  /* Footer: Multi-column layout */
  .footer_custom .col:not(:last-child) .col-inner {
    border-right: 1px solid rgba(255, 255, 255, .08);
    padding-right: 22px;
  }

  .footer_custom .col:not(:first-child) .col-inner {
    padding-left: 22px;
  }
}

/* ===== Tablet: 550px - 849px ===== */
@media (min-width: 550px) and (max-width: 849px) {

  /* Product Detail Page */
  .vq-pdp__top {
    grid-template-columns: 1fr;
  }

  /* VQ Form */
  .vq-form__title {
    font-size: 30px;
  }

  .vq-form__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Shop Hub */
  .shop-hub {
    padding: 32px 0;
  }

  .shop-hub__title {
    font-size: 26px;
  }

  .shop-hub__grid {
    grid-template-columns: 1fr;
  }

  .shop-hub-card__link {
    grid-template-columns: 120px 1fr;
  }

  /* VQ Hero */
  .vq-hero__inner {
    grid-template-columns: 1fr;
  }

  .vq-hero__cards {
    grid-template-columns: 1fr;
  }

  .vq-hero-card--large {
    grid-column: auto;
  }

  /* VQ Solution */
  .vq-solution__grid.cols-2,
  .vq-solution__grid.cols-3 {
    grid-template-columns: 1fr;
  }

  /* Architecture Hero */
  .architechture-hero {
    min-height: 420px;
    padding: 64px 0 56px;
  }

  .architechture-hero__title {
    font-size: 32px;
    max-width: 92%;
  }

  .architechture-hero__desc {
    max-width: 92%;
  }

  .architechture-hero__line {
    height: 42px;
  }

  /* Residential Quick Nav */
  .res-quick-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* VQ Series Grid: 2 columns on tablet */
  .vq-series__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* ===== Mobile: max-width 549px ===== */
@media (max-width: 549px) {

  /* Hero Section */
  .hero h1 {
    text-align: center;
  }

  .hero-content-tag {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .section-bg {
    height: 600px;
  }

  .hero-description {
    margin-bottom: 30px;
  }

  .hero a.button {
    display: block;
    margin-top: 10px;
  }

  /* Technical Specs */
  .technical-specs {
    margin-top: -120px;
  }

  /* Science Section */
  .science .desc {
    margin-bottom: 34px;
    color: #333333;
    max-width: 100%;
    text-align: left;
  }

  /* VQ Series Grid: 1 column on mobile */
  .vq-series__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
  }
}