/* ============================================================
   Kanghome Clean - PbootCMS Template Stylesheet
   100% Style Reproduction from https://www.kanghomeclean.com/
   Original Platform: Lifisher SAAS v1.5.10
   ============================================================ */

/* ===== CSS Variables (Design Tokens) ===== */
:root {
  --rgb-color: 224, 0, 29;
  --main-color: rgb(var(--rgb-color));       /* #E0001D */
  --container-width: 1366px;
  --header-bg: rgba(255, 255, 255, 1);
  --header-bg-fixed: rgba(255, 255, 255, 1);
  --font-fixed: rgba(16, 16, 16, 1);

  /* Colors */
  --color-dark: rgba(16, 16, 16, 1);
  --color-text: rgba(51, 51, 51, 0.8);
  --color-secondary: rgba(31, 31, 31, 1);
  --color-muted: rgba(102, 102, 102, 1);
  --color-light-gray: rgba(242, 246, 250, 1);
  --color-white: rgba(255, 255, 255, 1);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-link: rgba(44, 109, 245, 1);
  --color-border: rgba(138, 135, 159, 0.22);
  --color-footer-hover: var(--main-color);
  --color-social-twitter: #17d5ff;

  /* Spacing */
  --section-padding: 10vw 0;
  --section-padding-xl: 5vw 0;
  --module-margin-xl: 24px;

  /* Form */
  --form-x: 15px;
  --form-y: 12px;

  /* Border Radius */
  --radius-btn: 25px;
  --radius-form: 20px;
  --radius-card: 20px;
  --radius-section: 30px;

  /* Shadow */
  --shadow-card: 0px 6px 20px 0px rgba(0, 0, 0, 0.03);
  --shadow-dropdown: 0 0 20px rgba(0, 0, 0, 0.1);
  --shadow-btn-focus: 0 0 0 0.2rem rgba(var(--rgb-color), 0.5);

  /* Transition */
  --transition: all 0.3s ease;
}

/* ===== Font Faces ===== */
@font-face {
  font-family: 'Proxima Nova Regular';
  src: url('../fonts/en/Proxima-Nova-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Light';
  src: url('../fonts/en/Proxima-Nova-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins SemiBold';
  src: url('../fonts/en/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins Regular';
  src: url('../fonts/en/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AkzidenzGrotesk Regular';
  src: url('../fonts/en/AkzidenzGrotesk-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont/icon.woff2') format('woff2'),
       url('../fonts/iconfont/icon.woff') format('woff'),
       url('../fonts/iconfont/icon.ttf') format('truetype');
  font-display: swap;
}

/* ===== Iconfont Base ===== */
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Reset & Base (Bootstrap 4.5.0 compatible) ===== */
*, ::after, ::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
  color: #212529;
  text-align: left;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Proxima Nova Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--main-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Poppins SemiBold", sans-serif;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1366px) and (max-width: 1520px) {
  .container {
    padding: 0 8%;
  }
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ===== Row & Grid ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.no-gutters {
  margin: 0;
}

.no-gutters > [class*="col-"] {
  padding: 0;
}

.col { flex: 1; }

.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-5 { flex: 0 0 41.667%; max-width: 41.667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-md-8 { flex: 0 0 66.667%; max-width: 66.667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-2 { flex: 0 0 16.667%; max-width: 16.667%; }
  .col-xl-2_4 { flex: 0 0 20%; max-width: 20%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-xl-5 { flex: 0 0 41.667%; max-width: 41.667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-xl-8 { flex: 0 0 66.667%; max-width: 66.667%; }
  .col-xl-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--main-color);
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  color: var(--color-white);
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: "Proxima Nova Regular", sans-serif;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
}

.btn:hover {
  color: var(--color-white);
  background-color: rgba(var(--rgb-color), 0.85);
  text-decoration: none;
}

.btn:focus {
  box-shadow: var(--shadow-btn-focus);
}

/* Hero Slide Button */
.btn-hero {
  padding: 12px 36px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.btn-hero:hover {
  color: var(--color-white);
  background-color: rgba(var(--rgb-color), 0.85);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--main-color);
}

.btn-dark-outline {
  background-color: transparent;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
}

.btn-dark-outline:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: var(--color-white);
}

@media (min-width: 1200px) {
  .btn {
    padding: 12px 40px;
  }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header.scrolled .header-topbar {
  border-bottom: 1px solid #eee;
}

.site-header.scrolled .header-nav-link {
  color: var(--color-dark);
}

.site-header.scrolled .header-topbar-text {
  color: var(--color-muted);
}

/* Header Top Bar */
.header-topbar {
  display: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-dark);
  font-family: "Proxima Nova Regular", sans-serif;
}

@media (min-width: 1200px) {
  .header-topbar {
    display: block !important;
  }
}

.header-topbar .row {
  align-items: center;
}

.header-topbar-text {
  font-size: 14px;
  color: var(--color-muted);
}

.header-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-search {
  position: relative;
  cursor: pointer;
}

.header-search input {
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 5px 0;
  font-size: 14px;
  width: 0;
  transition: width 0.3s ease;
  outline: none;
  font-family: "Proxima Nova Regular", sans-serif;
}

.header-search.active input {
  width: 200px;
}

.header-search .iconfont {
  font-size: 18px;
  color: var(--color-dark);
}

.site-header.scrolled .header-search .iconfont {
  color: var(--color-dark);
}
}

/* Language Switcher */
.header-language {
  position: relative;
}

.header-language-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Proxima Nova Regular", sans-serif;
  color: var(--color-dark);
}

.header-language-toggle .iconfont {
  font-size: 12px;
}

.header-language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-dropdown);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 140px;
  display: none;
  z-index: 1001;
}

.header-language.open .header-language-dropdown {
  display: block;
}

.header-language-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--color-dark);
  white-space: nowrap;
}

.header-language-dropdown a:hover {
  color: var(--main-color);
  background: var(--color-light-gray);
}

.header-language-dropdown a.active {
  color: var(--main-color);
}

/* Header Nav Row */
.header-nav-row {
  display: none;
  background-color: transparent;
  padding: 0;
  align-items: stretch;
}

@media (min-width: 1200px) {
  .header-nav-row {
    display: flex !important;
  }
  
  .header-nav-row .container {
    width: 100%;
    max-width: 1366px;
  }
  
  .header-nav-row .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .header-nav-row .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .header-nav-row .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

.header-logo {
  padding: 10px 0;
}

.header-logo img {
  height: 50px;
  width: auto;
}

/* Desktop Navigation */
.header-nav {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.header-nav .header-nav-item {
  display: flex;
  align-items: center;
}

.header-nav-item {
  position: relative;
}

.header-nav-link {
  display: flex;
  align-items: center;
  padding: 25px 18px;
  font-size: 16px;
  font-family: "Proxima Nova Regular", sans-serif;
  color: var(--color-dark);
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.active .header-nav-link{
  color: var(--main-color)!important;
}
.header-nav-link.active {
  font-weight: 700;
  position: relative;
}
.header-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--main-color);
  border-radius: 2px;
}

.site-header.scrolled .header-nav-link {
  color: var(--color-dark);
}

/* Dropdown arrow for nav items with sub-menus */
.has-dropdown > .header-nav-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: var(--transition);
}

.has-dropdown:hover > .header-nav-link::after {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.header-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: var(--shadow-dropdown);
  border-top: 2px solid var(--main-color);
  padding: 10px 0;
  display: none;
  z-index: 1002;
}

.header-nav-item:hover > .header-nav-dropdown {
  display: block;
}

.header-nav-dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--color-dark);
  font-family: "Proxima Nova Regular", sans-serif;
  white-space: nowrap;
}

.header-nav-dropdown a:hover {
  color: var(--main-color);
  background: var(--color-light-gray);
}

/* Sub-dropdown */
.header-nav-subdropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 180px;
  background: #fff;
  box-shadow: var(--shadow-dropdown);
  padding: 10px 0;
  display: none;
  z-index: 1003;
}

.header-nav-subdropdown:empty {
  display: none !important;
}

/* Hide subdropdown if it only contains whitespace (no actual links) */
.header-nav-subdropdown:not(:has(a)) {
  display: none !important;
}

.header-nav-dropdown .dropdown-item:hover > .header-nav-subdropdown {
  display: block;
}

/* Dropdown Item */
.header-nav-dropdown .dropdown-item {
  position: relative;
}

.header-nav-dropdown .dropdown-item:hover > .header-nav-subdropdown {
  display: block;
}

/* Override: don't show empty subdropdown on hover */
.header-nav-dropdown .dropdown-item:hover > .header-nav-subdropdown:not(:has(a)) {
  display: none !important;
}

.header-nav-dropdown .dropdown-item > a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--color-dark);
  font-family: "Proxima Nova Regular", sans-serif;
  white-space: nowrap;
}

.header-nav-dropdown .dropdown-item > a:hover {
  color: var(--main-color);
  background: var(--color-light-gray);
}

/* Arrow for items with sub-menu (only when subdropdown has actual links) */
.header-nav-dropdown .dropdown-item:has(.header-nav-subdropdown a) > a::after {
  content: '\e65c';
  font-family: 'iconfont';
  font-size: 12px;
  margin-left: 8px;
  float: right;
}

/* Mobile Header */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

@media (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
}

.header-mobile-logo img {
  height: 40px;
}

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-mobile-actions .iconfont {
  font-size: 22px;
  color: var(--color-dark);
}

.site-header.scrolled .header-mobile-actions .iconfont {
  color: var(--color-dark);
}
  cursor: pointer;
}

/* Mobile Menu Drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  max-width: 350px;
  height: 100%;
  background: #fff;
  z-index: 10000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-header img {
  height: 35px;
}

.mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--color-dark);
}

.mobile-menu-search {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-menu-search input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
  font-family: "Proxima Nova Regular", sans-serif;
}

.mobile-menu-nav {
  padding: 10px 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--color-dark);
  font-family: "Proxima Nova Regular", sans-serif;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-nav a:hover {
  color: var(--main-color);
}

.mobile-menu-nav .sub-menu {
  padding-left: 20px;
}

.mobile-menu-nav .sub-menu a {
  font-size: 14px;
  padding: 8px 20px;
}

.mobile-menu-lang {
  padding: 15px 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-menu-lang a {
  font-size: 14px;
  color: var(--color-muted);
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.mobile-menu-lang a.active,
.mobile-menu-lang a:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

/* ===== Banner / Hero Slider ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px;
  object-fit: cover;
}

.hero-slide-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding-top: 28vh;
}

.hero-slide-subtitle {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 16px;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-slide-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 32px;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-slide-title {
    font-size: 38px;
  }

  .hero-slide-subtitle {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .hero-slide-title {
    font-size: 30px;
  }

  .hero-slide-subtitle {
    font-size: 18px;
  }
}

/* Swiper customization */
.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-white);
  opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-white);
}

/* ===== Section Common ===== */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-white {
  background-color: var(--color-white);
}

.section-gray {
  background-color: var(--color-light-gray);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-rounded {
  border-radius: var(--radius-section);
  margin-left: var(--module-margin-xl);
  margin-right: var(--module-margin-xl);
}

@media (max-width: 1199px) {
  .section-rounded {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: var(--section-padding-xl);
  }
  .section-xl-py-4 {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  .section-xl-py-5 {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .section-xl-py-6 {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
  .section-xl-pt-4 {
    padding-top: 4vw;
  }
  .section-xl-pb-3 {
    padding-bottom: 3vw;
  }
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--color-dark);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.section-title p {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.section-dark .section-title h2 {
  color: var(--color-white);
}

.section-dark .section-title p {
  color: var(--color-white-80);
}

/* ===== Products Section ===== */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 19px;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-title a {
  color: inherit;
}

.product-card-title a:hover {
  color: var(--main-color);
}

.product-card-desc {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  flex: 1;
}

.product-card-link {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 14px;
  color: var(--color-link);
  text-transform: uppercase;
}

.product-card-link:hover {
  color: var(--main-color);
}

/* Product Swiper Grid */
.product-swiper .swiper-slide {
  height: auto;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* ===== Customized Services Section (Original Design) ===== */
.oem-custom-section {
  background-color: #f5f6f7;
  padding: 60px 0 80px;
}

.oem-custom-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.oem-custom-section .section-title h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 18px;
}

.oem-custom-section .section-title p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.oem-custom-grid {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.oem-custom-card {
  flex: 0 0 48%;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.oem-custom-headline {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 24px;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 30px;
}

.oem-custom-tags {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.oem-custom-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-dark);
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 16px;
  transition: var(--transition);
}

.oem-custom-tag:hover {
  color: var(--main-color);
}

.oem-tag-icon {
  font-size: 22px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  border-radius: 50%;
  color: var(--color-dark);
  transition: var(--transition);
}

.oem-custom-tag:hover .oem-tag-icon {
  border-color: var(--main-color);
  color: var(--main-color);
}

.oem-custom-quality {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.oem-quality-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.oem-custom-quality strong {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 18px;
  color: var(--color-dark);
}

.oem-custom-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 26px;
  flex-grow: 1;
}

.oem-custom-img {
  flex: 0 0 48%;
}

.oem-custom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  min-height: 480px;
}

@media (max-width: 991px) {
  .oem-custom-grid {
    flex-direction: column;
    gap: 25px;
  }

  .oem-custom-card,
  .oem-custom-img {
    flex: 0 0 100%;
  }

  .oem-custom-img img {
    min-height: auto;
  }
}

/* ===== Why Choose Us Section (Original Design) ===== */
.why-choose-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 105px 0 78px;
}

.why-choose-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.55);
}

.why-choose-hero .container {
  position: relative;
  z-index: 1;
}

.why-choose-top {
  margin-bottom: 50px;
}

.why-choose-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-choose-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 28px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-choose-num-item {
  text-align: left;
}

.why-num {
  display: block;
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.why-num-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.why-num-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .why-choose-hero {
    padding: 78px 0 52px;
  }

  .why-choose-title {
    font-size: 32px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 575px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About Intro Section (Original Design) ===== */
.about-intro-section {
  padding: 80px 0;
}

.about-intro-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-intro-img {
  flex-shrink: 0;
  width: 420px;
}

.about-intro-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.about-intro-content {
  flex: 1;
}

.about-intro-desc {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 28px;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.about-intro-stats {
  display: flex;
  gap: 50px;
}

.about-stat-item {
  text-align: left;
}

.about-stat-num {
  display: block;
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  color: var(--main-color);
  line-height: 1.2;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 16px;
  color: var(--color-muted);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .about-intro-section { padding: 60px 0; }
  .about-intro-grid { flex-direction: column; gap: 40px; }
  .about-intro-img { width: 280px; }
  .about-intro-stats { gap: 30px; }
  .about-stat-num { font-size: 28px; }
}

@media (max-width: 575px) {
  .about-intro-img { width: 220px; }
  .about-intro-stats { flex-direction: column; gap: 20px; }
  .about-intro-desc { font-size: 16px; }
}

/* ===== About Page - New Design (matching kanghomeclean.com/about-us/) ===== */

/* Hero Section - centered, light bg */
.about-hero-section {
  padding: 80px 0 70px;
  background: #f4f6f9;
}
.about-hero-title {
  font-family:'Poppins SemiBold',sans-serif;
  font-size: 36px;
  color: #101010;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.about-hero-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(51,51,51,0.75);
}

/* ========== Contact Hero Section (Contact Page) ========== */
.contact-hero-section {
  padding: 70px 0 0;
  background: #f4f6f9;
}
.contact-hero-title {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 34px;
  color: #111;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.4;
}
.contact-hero-desc {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: rgba(51,51,51,0.65);
}
/* Contact Persons Grid */
.contact-persons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.contact-person-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 26px 32px;
}
.contact-person-name {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 26px;
  color: #e32223;
  margin: 0 0 20px;
}
.contact-person-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-person-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #333;
  margin-bottom: 14px;
}
.contact-person-list li:last-child {
  margin-bottom: 0;
}
.contact-person-list li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Google Map */
.contact-map-wrap {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: #e8eaed;
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ========== Our Address Section ========== */
.our-address-section {
  padding: 70px 0;
  background: #fff;
}
.our-address-title {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 36px;
  color: #111;
  text-align: center;
  margin-bottom: 46px;
}
.our-address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.our-address-card {
  background: #f6f7f9;
  border-radius: 12px;
  padding: 36px 30px 40px;
}
.our-address-icon {
  margin-bottom: 20px;
}
.our-address-icon img {
  width: 56px;
  height: auto;
  display: block;
}
.our-address-name {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 17px;
  color: #111;
  margin: 0 0 12px;
}
.our-address-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51,51,51,0.72);
  margin: 0;
}

/* Stats Row - 4 white cards */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.about-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 18px 26px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
.about-stat-icon {
  display: block;
  font-size: 20px;
  color: #6b8cde;
  margin-bottom: 14px;
}
.about-stat-num {
  display: block;
  font-family:'Poppins SemiBold',sans-serif;
  font-size: 38px;
  color: var(--main-color);
  line-height: 1.15;
  margin-bottom: 8px;
}
.about-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(51,51,51,0.55);
}

/* ===== About Content Blocks (2x2 alternating layout) ===== */
.about-content-block {
  padding: 80px 0;
  background: #f5f7fa;
}
.about-content-block:nth-child(even) {
  background: #fff;
}
.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-block-text {
  padding-right: 20px;
}
.about-content-block-reverse .about-block-text {
  padding-right: 0;
  padding-left: 20px;
  order: 2;
}
.about-content-block-reverse .about-block-img {
  order: 1;
}
.about-block-title {
  font-family:'Poppins SemiBold',sans-serif;
  font-size: 34px;
  color: #101010;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.about-block-desc {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(51,51,51,0.75);
  margin-bottom: 26px;
}
.about-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-check-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51,51,51,0.85);
  margin-bottom: 10px;
}
.about-check-list li i.fas.fa-check-circle {
  color: var(--main-color);
  font-size: 15px;
  flex-shrink: 0;
  margin-right: 8px;
}
.about-block-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-content-block { padding: 55px 0; }
  .about-block-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-block-text,
  .about-content-block-reverse .about-block-text {
    padding-left: 0;
    padding-right: 0;
    order: 1;
  }
  .about-block-img,
  .about-content-block-reverse .about-block-img {
    order: 2;
  }
  .about-block-title { font-size: 27px; }
  .about-block-desc { font-size: 13.5px; }
}
@media (max-width: 575px) {
  .about-content-block { padding: 38px 0; }
  .about-block-grid { gap: 24px; }
  .about-block-title { font-size: 23px; margin-bottom: 16px; }
  .about-block-desc { font-size: 13px; margin-bottom: 20px; }
  .about-block-img img { border-radius: 14px; }
}

/* ===== About Video Showcase (parallax + play button + modal) ===== */
.about-video-showcase {
  position: relative;
  height: 480px;
  background-image: url('/static/images/about-3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-video-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}
.about-video-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.about-video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(50,50,50,0.55);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about-video-play-btn:hover {
  background: rgba(200,16,46,0.85);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(200,16,46,0.35);
}
.about-video-play-icon {
  font-size: 26px;
  margin-left: 4px;
}

/* Video Modal */
.about-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.about-video-modal.active { display: flex; }
.about-video-modal-inner {
  position: relative;
  width: 85%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.about-video-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: #fff;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity .2s ease;
  z-index: 10;
}
.about-video-close:hover { opacity: 1; }
.about-video-player-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.about-video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .about-video-showcase { height: 380px; }
  .about-video-play-btn { width: 60px; height: 60px; font-size: 22px; }
  .about-video-modal-inner { width: 92%; max-width: 720px; }
}
@media (max-width: 575px) {
  .about-video-showcase {
    height: 280px;
    background-attachment: scroll;
  }
  .about-video-play-btn { width: 52px; height: 52px; font-size: 18px; }
  .about-video-modal-inner { width: 96%; max-width: none; border-radius: 6px; }
}

/* Contact Form (reuses home page .contact-touch-section styles) */

/* ===== OEM Page Hero Section ===== */
.oem-hero-section {
  padding: 80px 0 70px;
  background: #f4f6f9;
}
.oem-hero-title {
  font-family:'Poppins SemiBold',sans-serif;
  font-size: 38px;
  color: #101010;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.35;
  letter-spacing: 0.3px;
}
.oem-hero-desc {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  line-height: 2;
  color: rgba(51,51,51,0.75);
}

/* ===== OEM Services Showcase Section ===== */
.oem-services-section {
  position: relative;
  padding: 90px 0 70px;
  background: url('/static/images/oem_2.webp') center/cover no-repeat fixed;
}
.oem-services-title {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 38px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.oem-services-contact-btn {
  display: inline-block;
  padding: 10px 32px;
  background: var(--main-color);
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 50px;
}
.oem-services-contact-btn:hover {
  background: #c5001a;
  transform: translateY(-2px);
}
.oem-services-swiper {
  overflow: hidden;
}
.oem-services-swiper .swiper-wrapper {
  display: flex;
}
.oem-services-swiper .swiper-slide {
  width: 25%;
  flex-shrink: 0;
}
.oem-service-item {
  color: #fff;
}
.oem-service-num {
  display: block;
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 8px;
  opacity: 0.9;
}
.oem-service-name {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.oem-service-desc {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ===== OEM Advantages Section ===== */
.oem-advantages-section {
  padding: 80px 0;
}
.oem-adv-title {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 38px;
  color: #101010;
  text-align: center;
  margin-bottom: 50px;
}
.oem-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.oem-adv-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.oem-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.oem-adv-icon {
  margin-bottom: 20px;
}
.oem-adv-icon img {
  width: 52px;
  height: auto;
  display: block;
}
.oem-adv-name {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 17px;
  color: #101010;
  margin-bottom: 12px;
}
.oem-adv-desc {
  font-size: 13.2px;
  line-height: 1.75;
  color: rgba(51,51,51,0.7);
  margin: 0;
}

/* ========== OEM Custom Process Section ========== */
.oem-custom-process-section {
  padding: 80px 0 70px;
}
.oem-cp-title {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 36px;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
}
.oem-cp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.oem-cp-card {
  background: #f5f6f7;
  border-radius: 14px;
  padding: 18px 18px 24px;
  transition: var(--transition);
}
.oem-cp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.oem-cp-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.oem-cp-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.oem-cp-card:hover .oem-cp-img img {
  transform: scale(1.05);
}
.oem-cp-name {
  font-family: 'Poppins SemiBold', sans-serif;
  font-size: 15px;
  color: #222;
  margin: 0 0 8px;
}
.oem-cp-desc {
  font-size: 12.6px;
  line-height: 1.7;
  color: rgba(51,51,51,0.68);
  margin: 0;
}

/* About Page Responsive (Hero & Stats only) */
@media (max-width: 991px) {
  .about-hero-section { padding: 60px 0 50px; }
  .about-hero-title { font-size: 28px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-stat-card { padding: 26px 14px 20px; }
  .about-stat-num { font-size: 32px; }

  .oem-hero-section { padding: 55px 0 48px; }
  .oem-hero-title { font-size: 28px; margin-bottom: 22px; }
  .oem-hero-desc { font-size: 13.5px; }

  .oem-services-section { padding: 60px 0 50px; }
  .oem-services-title { font-size: 28px; }
  .oem-services-swiper .swiper-slide { width: 50%; }
  .oem-service-num { font-size: 30px; }
  .oem-services-contact-btn { margin-bottom: 36px; }

  .oem-advantages-section { padding: 55px 0; }
  .oem-adv-title { font-size: 28px; margin-bottom: 36px; }
  .oem-adv-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .oem-adv-card { padding: 28px 22px; }

  .oem-custom-process-section { padding: 55px 0 45px; }
  .oem-cp-title { font-size: 28px; margin-bottom: 36px; }
  .oem-cp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .oem-cp-card { padding: 14px 14px 20px; }
  .oem-cp-img img { height: 160px; }

  .honor-cert-section { padding: 50px 0 40px; }
  .contact-touch-section { padding: 55px 0 50px; }

  .contact-hero-section { padding: 48px 0 0; }
  .contact-hero-title { font-size: 26px; margin-bottom: 14px; }
  .contact-hero-desc { font-size: 13.2px; margin-bottom: 34px; }
  .contact-persons-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .contact-person-card { padding: 22px 18px 24px; }
  .contact-person-name { font-size: 22px; margin-bottom: 16px; }
  .contact-person-list li { font-size: 13.5px; margin-bottom: 12px; gap: 8px; }
  .contact-person-list li img { width: 16px; height: 16px; }
  .contact-map-wrap { height: 340px; }

  .our-address-section { padding: 50px 0; }
  .our-address-title { font-size: 28px; margin-bottom: 34px; }
  .our-address-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .our-address-card { padding: 26px 22px 30px; }
  .our-address-icon img { width: 48px; }
  .our-address-name { font-size: 16px; }
  .our-address-text { font-size: 13.2px; }
}
@media (max-width: 575px) {
  .about-hero-section { padding: 45px 0 38px; margin-top: 10px; }
  .about-hero-title { font-size: 22px; margin-bottom: 18px; }
  .about-hero-desc { font-size: 13.2px; line-height: 1.85; margin-bottom: 34px; }
  .about-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat-card { padding: 22px 10px 16px; border-radius: 12px; }
  .about-stat-icon { font-size: 17px; margin-bottom: 10px; }
  .about-stat-num { font-size: 28px; }
  .about-stat-label { font-size: 11.5px; }

  .oem-hero-section { padding: 38px 0 32px; margin-top: 10px; }
  .oem-hero-title { font-size: 21px; margin-bottom: 16px; line-height: 1.3; }
  .oem-hero-desc { font-size: 13px; line-height: 1.9; }

  .oem-services-section { padding: 45px 0 35px; }
  .oem-services-title { font-size: 22px; margin-bottom: 18px; }
  .oem-services-swiper .swiper-slide { width: 50%; }
  .oem-service-num { font-size: 24px; }
  .oem-service-name { font-size: 13.5px; }
  .oem-service-desc { font-size: 11.5px; }
  .oem-services-contact-btn { padding: 8px 26px; margin-bottom: 28px; }

  .oem-advantages-section { padding: 40px 0; }
  .oem-adv-title { font-size: 22px; margin-bottom: 28px; }
  .oem-adv-grid { grid-template-columns: 1fr; gap: 14px; }
  .oem-adv-card { padding: 22px 16px; border-radius: 14px; }
  .oem-adv-icon img { width: 42px; }
  .oem-adv-name { font-size: 15px; }
  .oem-adv-desc { font-size: 12px; line-height: 1.65; }

  .oem-custom-process-section { padding: 40px 0 32px; }
  .oem-cp-title { font-size: 22px; margin-bottom: 26px; }
  .oem-cp-grid { grid-template-columns: 1fr; gap: 14px; }
  .oem-cp-card { padding: 12px 12px 16px; border-radius: 10px; }
  .oem-cp-img img { height: 130px; }
  .oem-cp-name { font-size: 13.5px; }
  .oem-cp-desc { font-size: 11.5px; line-height: 1.6; }

  .honor-cert-section { padding: 40px 0 30px; }
  .honor-cert-section .section-title h2 { font-size: 22px; margin-bottom: 24px; }

  .contact-touch-section { padding: 45px 0 35px; }

  .contact-hero-section { padding: 36px 0 0; }
  .contact-hero-title { font-size: 20px; margin-bottom: 12px; line-height: 1.35; }
  .contact-hero-desc { font-size: 12.5px; line-height: 1.9; margin-bottom: 26px; }
  .contact-persons-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-person-card { padding: 22px 18px 24px; }
  .contact-person-name { font-size: 21px; margin-bottom: 14px; }
  .contact-person-list li { font-size: 13px; margin-bottom: 10px; gap: 7px; }
  .contact-person-list li img { width: 15px; height: 15px; }
  .contact-map-wrap { height: 280px; }

  .our-address-section { padding: 38px 0; }
  .our-address-title { font-size: 22px; margin-bottom: 26px; }
  .our-address-grid { grid-template-columns: 1fr; gap: 16px; }
  .our-address-card { padding: 24px 20px 28px; }
  .our-address-icon img { width: 44px; }
  .our-address-name { font-size: 15.5px; margin-bottom: 10px; }
  .our-address-text { font-size: 12.8px; line-height: 1.75; }
}

/* ===== About Card Section (Original Design) ===== */
.about-card-section {
  padding: 80px 0;
}

.about-card-grid {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.about-card-box {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
}

.about-card-subtitle {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 13px;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-card-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 38px;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-card-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.about-check-list li {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.8;
  padding: 6px 0;
}

.about-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  margin-right: 10px;
  vertical-align: middle;
}

.btn-about-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 28px;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
}

.btn-about-readmore:hover {
  background-color: #c00018;
  transform: translateY(-2px);
}

.about-card-img {
  flex-shrink: 0;
  width: 48%;
  border-radius: 24px;
  overflow: hidden;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .about-card-section { padding: 60px 0; }
  .about-card-grid { flex-direction: column; }
  .about-card-box { padding: 40px 32px; }
  .about-card-title { font-size: 30px; }
  .about-card-img { width: 100%; max-height: 400px; }
}

@media (max-width: 575px) {
  .about-card-box { padding: 32px 24px; }
  .about-card-title { font-size: 26px; }
  .about-card-img { max-height: 280px; }
}

/* ===== Certificates Section (Original Design) ===== */
.honor-cert-section {
  padding: 70px 0 60px;
}

.honor-cert-section .section-title h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 32px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 40px;
}

/* Top Row - Swiper (8 images, show 5) - Swiper controls width via slidesPerView */
.cert-swiper-top {
  margin-bottom: 20px;
  padding: 0 !important;
  overflow: hidden;
}

.cert-swiper-top .swiper-wrapper {
  /* Let Swiper handle layout natively */
}

.cert-slide {
  /* No width override - Swiper handles via slidesPerView */
}

.cert-slide img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: block;
}

/* Bottom Row - Static 4 items */
.cert-static-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-static-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  display: block;
}

@media (max-width: 991px) {
  .cert-static-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .honor-cert-section { padding: 50px 0 40px; }
  .honor-cert-section .section-title h2 { font-size: 24px; margin-bottom: 30px; }
  .cert-static-row { gap: 10px; }
  .cert-static-item img { height: auto; aspect-ratio: 4/3; object-fit: contain; }
}

/* ===== Corporate News Section (Original Design) ===== */
.corp-news-section {
  padding: 70px 0 60px;
}

.corp-news-section .section-title h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 32px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.corp-news-section .section-title p {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Two Column Grid */
.corp-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Left - Featured Card */
.corp-news-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.corp-news-featured:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.corp-news-featured img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.corp-news-featured:hover img {
  transform: scale(1.03);
}

.corp-news-featured-info {
  padding: 28px 30px 30px;
}

/* Right - List Card */
.corp-news-list {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 28px 30px 10px;
  display: flex;
  flex-direction: column;
}

.corp-news-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(138,135,159,0.15);
}

.corp-news-item:last-child {
  border-bottom: none;
}

/* Shared Elements */
.corp-news-date {
  font-family: "AkzidenzGrotesk Regular", sans-serif;
  font-size: 13px;
  color: var(--color-muted);
  display: block;
  margin-bottom: 8px;
}

.corp-news-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.corp-news-title a {
  color: inherit;
  transition: var(--transition);
}

.corp-news-title a:hover {
  color: var(--main-color);
}

.corp-news-title-red a {
  color: var(--main-color);
}

.corp-news-title-red a:hover {
  opacity: 0.85;
}

.corp-news-readmore {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 13px;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.corp-news-readmore::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 40px;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.corp-news-readmore:hover::after {
  width: 60px;
}

@media (max-width: 991px) {
  .corp-news-grid {
    grid-template-columns: 1fr;
  }
  .corp-news-featured img {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .corp-news-section { padding: 50px 0 40px; }
  .corp-news-section .section-title h2 { font-size: 24px; }
  .corp-news-grid { gap: 16px; }
  .corp-news-featured img { height: 220px; }
  .corp-news-featured-info { padding: 20px; }
  .corp-news-list { padding: 20px 18px 6px; }
}

/* ================================================================
   News List Page (Two-column layout per kanghomeclean.com/news)
   ================================================================ */

/* --- Page Header --- */
.news-page-header {
  background: var(--color-light-gray);
  padding: 60px 0 48px;
  text-align: center;
  margin-top: 80px; /* clear fixed navbar */
}
.news-page-header h1 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--color-dark);
  margin: 0;
}

/* --- News Layout (two columns) --- */
.news-list-section {
  padding: 50px 0 80px;
  background: #fff;
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Left: Main list with images */
.news-main-list {}
.news-main-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(138,135,159,0.15);
}
.news-main-item:first-child { padding-top: 0; }

.news-mi-img {
  flex: 0 0 260px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.news-mi-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease-out;
}
.news-mi-img:hover img { transform: scale(1.04); }

.news-mi-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-mi-body h2 {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-dark);
  margin: 0 0 10px 0;
}
.news-mi-body h2 a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
.news-mi-body h2 a:hover { color: var(--main-color); }
.news-mi-body time {
  font-family: "AkzidenzGrotesk Regular", sans-serif;
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 1px;
}

/* Right: Recommended sidebar */
.news-sidebar {
  background: #fafbfc;
  border-radius: 16px;
  padding: 28px 24px;
}
.news-sidebar h3 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 17px;
  color: var(--color-dark);
  margin: 0 0 20px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(138,135,159,0.15);
}

.news-sb-list { display: flex; flex-direction: column; gap: 16px; }
.news-sb-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  padding: 6px 0;
  transition: opacity .25s ease;
}
.news-sb-item:hover { opacity: .75; }
.news-sb-item img {
  flex: 0 0 80px;
  width: 80px !important;
  height: 56px !important;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.news-sb-item span {
  flex: 1;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination (same as product list) */
.news-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 44px;
}

/* Responsive */
@media (max-width: 991px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-mi-img { flex: 0 0 200px; }
  .news-mi-img img { height: 140px; }
  .news-sidebar { max-width: 480px; justify-self: center; width: 100%; }
}
@media (max-width: 575px) {
  /* Header */
  .news-page-header { padding: 30px 0 24px; }
  .news-page-header h1 { font-size: 26px; letter-spacing: 2px; }

  /* Section */
  .news-list-section { padding: 24px 0 48px; }

  /* Layout: hide sidebar, make list full width as 2-col grid cards */
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-sidebar { display: none; }

  /* Main list → 2-column card grid on mobile (matches screenshot) */
  .news-main-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .news-main-item {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border-bottom: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  }
  .news-mi-img {
    flex: auto;
    width: 100% !important;
    border-radius: 0;
    overflow: hidden;
  }
  .news-mi-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  .news-mi-body {
    padding: 10px 12px 14px;
  }
  .news-mi-body h2 {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-mi-body time {
    font-size: 11px;
  }
}

/* ================================================================
   News Detail Page (Reference: kanghomeclean.com article page)
   ================================================================ */

/* Breadcrumb */
.nd-breadcrumb {
  background: var(--color-light-gray);
  padding: 14px 0;
  font-size: 13px;
  color: #999;
  margin-top: 128px; /* clear fixed navbar */
}
.nd-breadcrumb a { color: #666; text-decoration: none; transition: color .25s; }
.nd-breadcrumb a:hover { color: var(--main-color); }

/* Section */
.nd-section {
  padding: 40px 0;
  background: #fff;
}

/* Two-column Layout: main + sidebar */
.nd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Left: Main Content Area */
.nd-main {
  min-width: 0;
}

/* Article Header */
.nd-article {
  margin-bottom: 10px;
}
.nd-title {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-dark);
  margin: 0 0 10px 0;
  letter-spacing: 0.3px;
}
.nd-date {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 28px;
}

/* Cover Image */
.nd-cover {
  margin: 0 0 30px;
  border-radius: 10px;
  overflow: hidden;
}
.nd-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Body (no max-width) */
.nd-body {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
}
.nd-body p { margin-bottom: 1.5em; }
.nd-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px auto;
  display: block;
}
.nd-body h2,
.nd-body h3,
.nd-body h4 {
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 1.6em;
  margin-bottom: 0.7em;
}
.nd-body h2 { font-size: 19px; }
.nd-body h3 { font-size: 17px; }

/* Prev / Next Navigation */
.nd-nav {
  margin-top: 40px;
  padding: 18px 24px;
  background: #f7f8fa;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.nd-nav-prev,
.nd-nav-next {
  font-size: 14px;
  color: #333;
}
.nd-nav-prev a,
.nd-nav-next a {
  color: #333;
  text-decoration: none;
  transition: color .25s ease;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}
.nd-nav-prev a:hover,
.nd-nav-next a:hover { color: var(--main-color); }

/* Right: Recommended Sidebar */
.nd-sidebar {
  position: sticky;
  top: 80px;
}
.nd-sidebar > h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(138,135,159,0.15);
}

/* Recommended Cards (image + text) */
.nd-rec-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nd-rec-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: opacity .25s;
}
.nd-rec-card:hover { opacity: 0.75; }
.nd-rec-card img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.nd-rec-card span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
  .nd-layout { grid-template-columns: 1fr; gap: 30px; }
  .nd-sidebar { position: static; }
  .nd-title { font-size: 20px; }
  .nd-section { padding: 30px 0; }
}
@media (max-width: 575px) {
  .nd-breadcrumb { display: none; } /* hide breadcrumb on mobile */
  .nd-section { padding: 20px 0; }
  .nd-main { margin-top: 60px; }
  .nd-title { font-size: 18px; letter-spacing: 0; }
  .nd-date { font-size: 13px; margin-bottom: 20px; }
  .nd-body { font-size: 14px; line-height: 1.75; }
  .nd-body h2 { font-size: 17px; }
  .nd-body h3 { font-size: 15px; }
  .nd-nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nd-nav-prev,
  .nd-nav-next { max-width: 100%; }
}

/* ================================================================
   Cases List Page
   ================================================================ */

/* Page Header */
.cases-page-header {
  background: var(--color-light-gray);
  padding: 60px 0 48px;
  text-align: center;
  margin-top: 110px; /* clear fixed navbar */
}
.cases-page-header h1 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--color-dark);
  margin: 0;
}

/* Cases Section */
.cases-section {
  padding: 50px 0 80px;
  background: #fff;
}

/* 3-Column Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Case Card */
.case-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.case-card-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.case-card:hover .case-card-img img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Card Body (title) */
.case-card-body {
  padding: 14px 2px 0;
}
.case-card-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.case-card-body h3 a {
  color: var(--color-dark);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s ease;
}
.case-card-body h3 a:hover { color: var(--main-color); }

/* Pagination */
.cases-pagination {
  margin-top: 50px;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cases-page-header { padding: 48px 0 36px; }
  .cases-page-header h1 { font-size: 28px; letter-spacing: 2px; }
}
@media (max-width: 575px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cases-page-header { margin-top: 50px; padding: 36px 0 28px; }
  .cases-page-header h1 { font-size: 24px; }
  .case-card-body { padding: 10px 2px 0; }
  .case-card-body h3 { font-size: 13px; }
  .cases-section { padding: 30px 0 50px; }
}

/* ================================================================
   Video List Page - Play Button Overlay
   ================================================================ */

.video-thumb {
  position: relative;
  overflow: hidden;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all .35s ease;
  pointer-events: none;
}
.video-play-btn i {
  font-size: 18px;
  color: #fff;
  margin-left: 3px;
  transition: all .25s ease;
}

/* Hover effects */
.video-thumb:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}
.video-thumb:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-thumb:hover .video-play-btn i {
  color: var(--main-color);
}

/* Mobile */
@media (max-width: 575px) {
  .video-play-btn { width: 44px; height: 44px; }
  .video-play-btn i { font-size: 14px; }
}

/* ================================================================
   Video Detail Page
   ================================================================ */

/* Section */
.vd-section {
  padding: 40px 0 70px;
  background: #fff;
}
.vd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* Left: Main Video Area */
.vd-main {
  min-width: 0;
}

/* Cover Image with Large Play Button */
.vd-cover {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 18px;
}
.vd-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .3s ease;
}
.vd-cover:hover img { opacity: 0.85; }

/* Big Play Button */
.vd-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all .35s ease;
}
.vd-play-btn i {
  font-size: 26px;
  color: #fff;
  margin-left: 4px;
  transition: all .25s ease;
}
.vd-cover:hover .vd-play-btn {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.vd-cover:hover .vd-play-btn i { color: var(--main-color); }

/* Video Player (replaces cover) */
.vd-player {
  position: relative;
  margin-bottom: 18px;
}
.vd-close-btn {
  position: absolute;
  top: -10px; right: -10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.6);
  border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .25s ease;
}
.vd-close-btn:hover { background: var(--main-color); }
.vd-close-btn i { font-size: 14px; }

/* Title & Date (below image) */
.vd-info {
  margin-bottom: 20px;
}
.vd-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 0 6px 0;
}
.vd-date {
  font-size: 13px;
  color: #999;
}

/* Content Body */
.vd-body {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.vd-body p { margin-bottom: 1.4em; }
.vd-body img { max-width: 100%; height: auto; border-radius: 8px; }

/* Right: Recommended Sidebar */
.vd-sidebar {
  position: sticky;
  top: 80px;
}
.vd-sidebar > h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(138,135,159,0.12);
}

/* Recommended Cards with Play Icon */
.vd-rec-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vd-rec-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: opacity .25s;
  border-radius: 6px;
  overflow: hidden;
}
.vd-rec-card:hover { opacity: 0.75; }
.vd-rec-img {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
}
.vd-rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Sidebar Recommended Video - Play Button (circle + icon) */
.sidebar-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .2s ease;
}
.sidebar-play-btn:hover {
  background: rgba(200,16,46,0.8);
  transform: translate(-50%, -50%) scale(1.1);
}
.sidebar-play-icon {
  color: #fff;
  font-size: 12px;
  margin-left: 2px;
}
.vd-rec-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-top: 2px;
}
.vd-rec-title {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vd-rec-date {
  font-size: 11px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
  .vd-layout { grid-template-columns: 1fr; gap: 30px; }
  .vd-sidebar { position: static; }
  .vd-title { font-size: 20px; }
  .vd-section { padding: 30px 0 60px; }
}
@media (max-width: 575px) {
  .nd-breadcrumb { display: none; }
  .vd-play-btn { width: 56px; height: 56px; }
  .vd-play-btn i { font-size: 20px; }
  .vd-section { padding: 20px 0 40px; margin-top: 50px; }
  .vd-player, .vd-cover { margin-left: -8px; margin-right: -8px; }
  .vd-player video, .vd-cover img { border-radius: 0; }
  .vd-title { font-size: 17px; }
  .vd-body { font-size: 14px; }
  .vd-rec-img { width: 80px; height: 54px; }
  .sidebar-play-btn { width: 26px; height: 26px; }
  .sidebar-play-icon { font-size: 10px; }
  .vd-rec-title { font-size: 12px; }
}

/* ===== Cases Section ===== */
.case-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  height: 100%;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.case-card:hover img {
  transform: scale(1.05);
}

.case-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
}

.case-card-content h4 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.case-card-content span {
  font-family: "AkzidenzGrotesk Regular", sans-serif;
  font-size: 14px;
  color: var(--color-white-80);
}

/* ===== Contact / Inquiry Form ===== */
.inquiry-section .section-title {
  text-align: center;
}

/* ===== Contact / Get In Touch Section (Original Design) ===== */
.contact-touch-section {
  padding: 70px 0 60px;
}

.contact-touch-section .section-title h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 32px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.contact-touch-section .section-title p {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.touch-form-wrap {
  margin: 0 auto;
}

.touch-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.touch-field-half,
.touch-field-full {
  flex: 1;
}

.touch-field-half {
  flex: 0 0 calc(50% - 10px);
}

.touch-form-wrap label {
  display: block;
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.touch-form-wrap input[type="text"],
.touch-form-wrap input[type="email"],
.touch-form-wrap textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(138,135,159,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: "Proxima Nova Regular", sans-serif;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.touch-form-wrap input:focus,
.touch-form-wrap textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(var(--rgb-color), 0.08);
}

.touch-form-wrap input::placeholder,
.touch-form-wrap textarea::placeholder {
  font-size: 16px;
  color: #aaa;
}

.touch-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.touch-form-submit {
  text-align: center;
  margin-top: 20px;
}

.btn-touch-send {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 48px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--rgb-color), 0.25);
}

.btn-touch-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(var(--rgb-color), 0.35);
}

/* ===== Footer (Original Design - White Background) ===== */
.site-footer {
  background-color: #fff;
  color: #555;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 36px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-desc {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background-color: var(--main-color);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 14px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: #666;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--main-color);
}

/* Contact Block (Two persons) */
.footer-contact-block {
  margin-bottom: 24px;
}

.footer-contact-block:last-child {
  margin-bottom: 0;
}

.footer-contact-label {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 4px;
}

.footer-contact-label strong {
  color: #333;
}

.footer-contact-text {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.footer-contact-text span {
  color: #666;
}

/* Copyright Bar */
.footer-copyright {
  border-top: 1px solid rgba(138,135,159,0.12);
  padding: 20px 0;
  margin-top: 45px;
  text-align: left;
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  color: #aaa;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: var(--main-color);
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* ================================================================
   Product Detail Page (Redesigned - Reference: kanghomeclean.com)
   ================================================================ */

/* --- Breadcrumb --- */
.pdetail-breadcrumb {
  background: #f7f8fa;
  padding: 16px 0;
  margin-top: 160px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  font-size: 13px;
}
.breadcrumb-list li {
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-list li::after {
  content: '/';
  color: #ccc;
  font-size: 11px;
}
.breadcrumb-list li:last-child::after { content: none; }
.breadcrumb-list li.active { color: var(--main-color); }
.breadcrumb-list a { color: #666; text-decoration: none; }
.breadcrumb-list a:hover { color: var(--main-color); }

/* --- Product Hero Top (Image + Info) --- */
.pdetail-hero { padding: 50px 0 0; }
.pdetail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery Left */
.pdetail-gallery {}
.pdetail-main-img {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #eee;
}
.pdetail-main-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

/* Thumbnail wrapper with nav buttons */
.pdetail-thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.pdetail-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden !important; /* strict hidden, JS controls scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
  /* Show exactly 6 thumbnails: 80*6 + 8*5 = 520 */
  max-width: 520px !important;
  min-width: 0;
  flex-shrink: 0;
}
.pdetail-thumbs::-webkit-scrollbar { display: none; }
.thumb-nav {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.thumb-nav:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  background: #f9f9f9;
}
.pdetail-thumb {
  width: 80px !important;
  min-width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .7;
  transition: all .25s ease;
  flex-shrink: 0;
}
.pdetail-thumb:hover,
.pdetail-thumb.active {
  border-color: var(--main-color);
  opacity: 1;
}
.pdetail-thumb img,
.pdetail-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  pointer-events: none;
}

/* Info Right */
.pdetail-info h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.pdetail-subtitle {
  font-size: 15px;
  color: #888;
  margin-bottom: 14px;
}

/* Tags */
.pdetail-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.pdtag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pdtag-new { background: #28a745; color: #fff; }
.pdtag-hot { background: #dc3545; color: #fff; }
.pdtag-rec { background: #ffc107; color: #333; }

/* Rating */
.pdetail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pdetail-rating .stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}
.pdetail-rating .score {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* Description box */
.pdetail-desc {
  padding: 12px 0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Quick specs list */
.pdetail-specs-quick {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pdetail-specs-quick li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
  color: #555;
}
.pdetail-specs-quick li strong { color: #333; }

/* CTA Buttons */
.pdetail-cta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn-pd-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  background: var(--main-color);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
  letter-spacing: .5px;
}
.btn-pd-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--rgb-color),.35);
}
.btn-pd-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
}
.btn-pd-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }

/* --- Features Section --- */
.pdetail-features {
  background: #fafbfc;
  padding: 44px 0;
  margin-top: 50px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.container-inner {
  margin: 0 auto;
}
.pdetail-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
}
.pdetail-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--main-color);
  border-radius: 2px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.feature-item i {
  color: var(--main-color);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 15px;
}

/* --- Tabs --- */
.pdetail-tabs-wrapper {
  background: #fff;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 70px;
  z-index: 98;
}
.pdetail-tabs {
  display: flex;
  gap: 0;
}
.pdtab {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .25s ease;
  letter-spacing: .3px;
}
.pdtab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--main-color);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.pdtab.active { color: var(--main-color); }
.pdtab.active::after { transform: scaleX(1); }
.pdtab:hover { color: var(--main-color); }

/* Tab Content */
.pdetail-tab-content {
  display: none;
  padding: 40px 0;
}
.pdetail-tab-content.active { display: block; }

/* --- Specs Table --- */
.pdetail-specs-table-wrap { margin-bottom: 40px; }
.pdetail-specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.pdetail-specs-table tr:nth-child(even) { background: #fafbfc; }
.pdetail-specs-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 14px 22px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  width: 38%;
  vertical-align: middle;
}
.pdetail-specs-table td {
  padding: 14px 22px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

/* Product Detail Content Section */
.pdetail-content-section {
  padding: 50px 0 60px;
  background: #fff;
}

/* Content body (rich text editor output) */
.pdetail-content-body {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* Gallery items in content editor output - force 2 columns layout */
.pdetail-content-body .product-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

.pdetail-content-body .product-gallery .gallery-item {
  width: 100% !important;
  margin: 0 !important;
}

.pdetail-content-body .product-gallery .gallery-item img {
  width: 100% !important;
  height: auto !important;
  border-radius: 8px;
  display: block !important;
}

/* param-image - same 2-column grid as gallery */
.pdetail-content-body > .param-image {
  width: calc(50% - 8px) !important;
  display: inline-block !important;
  vertical-align: top !important;
}
.pdetail-content-body > .param-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 8px;
  display: block !important;
}
/* All H3 headings in content body - centered with red underline */
.pdetail-content-body > h3 {
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 8px !important;
  margin-top: 30px !important;
}
.pdetail-content-body > h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--main-color);
  margin: 10px auto 35px;
}
.pdetail-content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.pdetail-content-body p { margin: 14px 0; }

/* Specification table style (from content editor output) */
.pdetail-content-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  margin: 10px auto;
}
.pdetail-content-body table tr:nth-child(even) { }
.pdetail-content-body table th,
.pdetail-content-body table td {
  padding: 14px 24px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  color: #444;
  vertical-align: middle;
  text-align: center;
}
.pdetail-content-body table td:first-child {
  font-weight: 500;
  color: #222;
  width: 40%;
}

/* Force tables in content body to full page width */
.pdetail-content-body .table-responsive,
.pdetail-content-body table {
  width: 100% !important;
  max-width: 100% !important;
}

/* Cloud-editor image list: force 2 columns layout */
.pdetail-content-body .ce-list_items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}
.pdetail-content-body .ce-list_item {
  width: 100% !important;
  flex: none !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.pdetail-content-body .ce-list_item img {
  width: 100% !important;
  height: auto !important;
}

/* Reviews empty state */
.pdetail-reviews-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.pdetail-reviews-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #ddd;
}
.pdetail-reviews-empty p { font-size: 15px; margin-bottom: 20px; }

/* --- FAQ Section --- */
.pdetail-faq > .container-inner {
  width: 100%;
  max-width: 100%;
}
.pdetail-faq {
  width: 100% !important;
  padding: 46px 0 30px;
  background: #fafbfc;
}
.faq-list dt, .faq-list dd { margin: 0; }
.faq-q {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all .25s ease;
  margin-bottom: 2px;
  position: relative;
  padding-right: 44px;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 300;
  color: var(--main-color);
  transition: transform .25s ease;
}
.faq-q.active { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }
.faq-q.active::after { content: '\2013'; color: #fff; }
.faq-q:hover { border-color: var(--main-color); }
.faq-a {
  display: none;
  padding: 16px 22px 18px;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-top: -2px;
}

/* --- Inquiry Form Section --- */
.pdetail-inquiry > .container-inner {
  width: 100%;
  max-width: 100%;
}
.pdetail-inquiry {
  width: 100% !important;
  padding: 56px 0;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%);
}
.pdetail-inquiry-subtitle {
  text-align: center;
  color: #888;
  font-size: 15px;
  margin-top: -18px;
  margin-bottom: 34px;
}
.pdetail-inquiry-form {
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pdetail-inquiry-form input,
.pdetail-inquiry-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dde1e8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .25s ease;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}
.pdetail-inquiry-form input:focus,
.pdetail-inquiry-form textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(var(--rgb-color),.12);
}
.pdetail-inquiry-form textarea {
  resize: vertical;
  min-height: 110px;
  margin-bottom: 20px;
}
.btn-pd-submit {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-pd-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--rgb-color),.35);
}

/* --- Related Products --- */
.pdetail-related {
  padding: 50px 0 60px;
  background: #fff;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
  background: #fff;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: transparent;
}
.related-card-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body {
  padding: 16px;
}
.related-card-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.45;
}
.related-card-body h4 a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card-body h4 a:hover { color: var(--main-color); }
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap .25s ease;
}
.related-card-link:hover { gap: 10px; }

/* ================================================================
   Product Detail - Responsive
   ================================================================ */
@media (max-width: 991px) {
  .pdetail-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pdetail-thumbs { max-width: 520px !important; width: auto; }
  .pdetail-tabs-wrapper { top: 60px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 575px) {

  .pdetail-breadcrumb { display: none; }
  .pdetail-info h1 { font-size: 21px; }
  .pdetail-subtitle { font-size: 14px; }
  .pdetail-thumb { width: 58px !important; min-width: 58px !important; height: 58px !important; max-height: 58px !important; }
  .pdetail-thumbs { gap: 6px; max-width: calc(64px * 4) !important; } /* (58+6)*4 = 256 */
  .pdetail-section-title { font-size: 19px; margin-bottom: 20px; }
  .pdetail-section-title { font-size: 19px; margin-bottom: 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-item { font-size: 13px; }
  .pdtab { padding: 13px 18px; font-size: 14px; }
  .pdetail-tab-content { padding: 28px 0; }
  .pdetail-specs-table th, .pdetail-specs-table td {
    padding: 11px 14px;
    font-size: 13px;
    display: block;
    width: 100% !important;
  }
  .pdetail-specs-table th {
    background: #f5f5f5;
    color: #333;
    border-bottom: 1px dashed #e0e0e0;
  }
  .pdetail-specs-table tr { border-bottom: 1px solid #eee; }
  .pdetail-specs-table tr:last-child { border-bottom: none; }
  .faq-q { padding: 14px 18px 14px 42px; font-size: 14px; padding-right: 38px; }
  .faq-a { padding: 14px 18px 16px; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row input { margin-bottom: 16px; }
  .pdetail-inquiry { padding: 36px 0; }
  .pdetail-cta { flex-direction: column; }
  .btn-pd-inquiry, .btn-pd-wa { width: 100%; justify-content: center; text-align: center; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .related-card-body { padding: 12px; }
  .related-card-body h4 { font-size: 13px; }
  .pdetail-features { padding: 32px 0; margin-top: 30px; }
}

/* ===== Floating Buttons ===== */
.float-buttons {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--rgb-color), 0.35);
  transition: all 0.3s ease;
}

.float-chat:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(var(--rgb-color), 0.45);
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #999;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--main-color);
  color: #fff;
}

/* ===== Floating Inquiry Form ===== */
.float-inquiry {
  position: fixed;
  right: -380px;
  top: 25%;
  width: 340px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 24px rgba(0,0,0,0.15);
  z-index: 998;
  transition: right 0.35s ease;
  padding: 20px 16px 55px;
}

.float-inquiry.active {
  right: 0;
}

.float-inquiry-header {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 18px 14px;
  margin: -20px -16px 18px;
  border-radius: 8px 0 0 0;
}

.float-inquiry-header h3 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 20px;
  margin: 0 0 6px;
}

.float-inquiry-header p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.float-inquiry-form input,
.float-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  font-family: "Proxima Nova Regular", sans-serif;
}

.float-inquiry-form textarea {
  resize: vertical;
  min-height: 70px;
}

.float-inquiry-form input:focus,
.float-inquiry-form textarea:focus {
  border-color: var(--main-color);
}

.float-inquiry-submit {
  width: 100%;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Proxima Nova Regular", sans-serif;
}

.float-inquiry-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.float-inquiry-close {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
}

/* ===== Footer Responsive ===== */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .site-footer { padding: 30px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Mobile: hide quick links / products / contact columns */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    display: none;
  }
  .footer-logo { display: none; }
  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
  }
  .footer-social {
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .footer-copyright {
    text-align: left;
    margin-top: 20px;
    padding: 16px 0;
    font-size: 12px;
    line-height: 1.9;
  }
  .footer-copyright p {
    word-break: break-all;
  }
  .float-buttons {
    right: 12px;
    bottom: 60px;
  }

  .float-inquiry {
    width: 300px;
    right: -340px;
    padding: 16px 12px 50px;
  }

  .float-inquiry-header { margin: -16px -12px 14px; padding: 14px 10px; }
  .float-inquiry-header h3 { font-size: 17px; }
  .float-inquiry-header p { font-size: 11.5px; }
  .float-inquiry-form input,
  .float-inquiry-form textarea { padding: 9px 12px; font-size: 13px; }
  .float-inquiry-submit { padding: 11px; font-size: 13px; }
}

/* ===== Swiper Global Customization ===== */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

.hidden-phone {
  display: none;
}

@media (min-width: 768px) {
  .hidden-phone { display: block; }
  .hidden-pad { display: none; }
  .hidden-desktop { display: none; }
}

@media (min-width: 1200px) {
  .hidden-pad { display: block; }
  .hidden-desktop { display: none; }
}

.hide-pc {
  display: block;
}

@media (min-width: 1200px) {
  .hide-pc { display: none; }
}

.hide-phone {
  display: none;
}

@media (min-width: 768px) {
  .hide-phone { display: block; }
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .oem-custom-section .section-title h2 {
    font-size: 20px;
  }

  .oem-custom-headline {
    font-size: 18px;
  }

  /* ===== Header Mobile ===== */
  .site-header {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
  }

  .header-mobile {
    position: relative;
    z-index: 1000;
    padding: 8px 0;
    background-color: #fff !important;
  }

  .header-mobile .container,
  .header-mobile .row {
    align-items: center;
  }

  .header-mobile .col-6:last-child {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: flex-end;
  }

  .header-mobile-logo img {
    height: 36px;
  }

  /* ===== Hero Section Mobile ===== */
  .hero-section {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-slider {
    margin: 0;
  }

  .hero-slide-bg {
    min-height: 280px;
    aspect-ratio: auto;
    height: 280px;
  }

  .hero-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-slide-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  .hero-slide-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* Hide desc and button on mobile */
  .hero-slide-desc {
    display: none !important;
  }

  .btn-hero {
    display: none !important;
  }

  /* ===== Products Section Mobile ===== */
  .product-showcase-section .section-title h2 {
    font-size: 20px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card-img {
    aspect-ratio: 1 / 1.15;
  }

  .product-card-body {
    padding: 16px 18px;
    text-align: center;
  }

  .product-card-title {
    font-size: 17px;
  }

  /* Hide nav arrows on mobile */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .about-intro-stats {
    gap: 24px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .section {
    padding: 60px 0;
  }
}

/* ===== Page Specific: List Pages ===== */
.page-banner {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 14px;
  color: var(--color-white-80);
}

.page-banner .breadcrumb a {
  color: var(--color-white-80);
}

.page-banner .breadcrumb a:hover {
  color: var(--color-white);
}

/* Product list grid */
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 576px) {
  .product-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Product List Page ===== */
.page-title-bar {
  padding: 40px 0;
}

.page-title-bar h1 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 36px;
  color: var(--color-dark);
  margin: 0;
}

.product-list-section {
  padding: 50px 0;
  background-color: #f7f8fa;
}

.product-list-layout {
  display: flex;
  gap: 40px;
}

/* --- Sidebar --- */
.product-sidebar {
  flex: 0 0 300px;
  min-width: 0;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 20px;
  color: var(--color-dark);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--main-color);
}

/* Category nav */
.sidebar-category {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cat-item {
  margin-bottom: 2px;
}

.sidebar-toggle-placeholder {
  display: inline-block;
  width: 20px;
  font-size: 13px;
  line-height: 28px;
  color: transparent;
  vertical-align: top;
}

.sidebar-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #bbb;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  background: #fff;
  transition: all 0.2s;
  vertical-align: middle;
  margin-right: 6px;
  user-select: none;
}

.sidebar-toggle-btn:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  background: rgba(var(--rgb-color), 0.06);
}

.sidebar-cat-item > a {
  display: inline-block;
  padding: 9px 14px;
  font-size: 15px;
  color: var(--color-dark);
  border-radius: 6px;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
}

.sidebar-cat-item > a:hover,
.sidebar-cat-item.active > a {
  background: rgba(var(--rgb-color), 0.08);
  color: var(--main-color);
}

.sidebar-cat-item.active > a {
  font-weight: 600;
}

.sidebar-cat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--color-muted);
  font-size: 11px;
}

.sidebar-cat-toggle:hover {
  background: rgba(var(--rgb-color), 0.1);
  color: var(--main-color);
}

.sidebar-cat-toggle.open i {
  transform: rotate(180deg);
}

/* Sub categories */
.sidebar-sub-cat {
  list-style: none;
  padding: 4px 0 6px 24px;
  margin: 0;
  display: none;
}

.sidebar-sub-cat:not(.collapsed) {
  display: block;
}

.sidebar-sub-cat-lv3 {
  list-style: none;
  padding: 2px 0 4px 18px;
  margin: 0;
}

.sidebar-sub-cat li {
  margin-bottom: 1px;
}

.sidebar-sub-cat a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--color-muted);
  border-radius: 6px;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.sidebar-sub-cat a:hover,
.sidebar-sub-cat li.active a {
  color: var(--main-color);
  background: rgba(var(--rgb-color), 0.06);
}

/* Sidebar inquiry form */
.sidebar-inquiry-form input,
.sidebar-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  font-family: "Proxima Nova Regular", sans-serif;
}

.sidebar-inquiry-form textarea {
  resize: vertical;
  min-height: 70px;
}

.sidebar-inquiry-form input:focus,
.sidebar-inquiry-form textarea:focus {
  border-color: var(--main-color);
}

.sidebar-inquiry-btn {
  width: 100%;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Proxima Nova Regular", sans-serif;
}

.sidebar-inquiry-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- Main Content --- */
.product-list-main {
  flex: 1;
  min-width: 0;
}

.product-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.product-list-header h2 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 26px;
  color: var(--color-dark);
  margin: 0;
}

.product-list-count {
  font-size: 14px;
  color: var(--color-muted);
}

/* Sub-category filter */
.product-sub-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-tag {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.25s;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* Product list card */
.plist-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plist-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}

.plist-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f8f8f8;
}

.plist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.plist-card:hover .plist-card-img img {
  transform: scale(1.06);
}

.plist-badge {
  position: absolute;
  top: 12px;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.plist-badge-new {
  left: 12px;
  background: #28a745;
}

.plist-badge-hot {
  right: 12px;
  background: var(--main-color);
}

.plist-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(var(--rgb-color), 0.9);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.plist-card:hover .plist-card-overlay {
  transform: translateY(0);
}

.plist-card-body {
  padding: 18px 20px;
}

.plist-card-title {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 16px;
  color: var(--color-dark);
  margin: 0 0 8px;
  line-height: 1.4;
}

.plist-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.plist-card-title a:hover {
  color: var(--main-color);
}

.plist-card-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plist-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.25s;
}

.plist-card-link:hover {
  gap: 10px;
}

.plist-card-link i {
  font-size: 12px;
  transition: transform 0.25s;
}

.plist-card-link:hover i {
  transform: translateX(3px);
}

/* Pagination */
.product-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.25s;
}

.page-btn:hover,
.page-btn.active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* Page number items from {page:numbar} */
.page-num,
.news-list-pagination .page-numbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 4px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.25s;
}
.page-num:hover,
.page-numbar a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.page-num.current,
.page-num-current,
.page-num.active,
.page-numbar a.active {
  background: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: #fff !important;
}

/* Product list grid responsive override for list page */
.product-list-section .product-list-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 992px) {
  .product-list-section .product-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Mobile Category Bar (Horizontal Scroll) --- */
.mobile-category-bar {
  display: none;
}

.mobile-cat-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 4px 0;
}
.mobile-cat-scroll::-webkit-scrollbar { display: none; }

.mobile-cat-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-dark);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.mobile-cat-item a { text-decoration: none; color: inherit; }
.mobile-cat-item:hover,
.mobile-cat-item.active,
.mobile-cat-item.open {
  color: var(--main-color);
  font-weight: 600;
  border-bottom-color: var(--main-color);
}

.mobile-cat-dropdown-btn,
.mobile-cat-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
  user-select: none;
}
.mobile-cat-dropdown-btn:hover,
.mobile-cat-menu-btn:hover {
  color: var(--main-color);
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
}
.mobile-cat-dropdown-btn svg,
.mobile-cat-menu-btn svg { pointer-events: none; }

/* --- Mobile Subcategory Dropdown Panel --- */
.mobile-subcat-dropdown {
  display: none;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.mobile-subcat-dropdown.show {
  display: block;
  animation: subcatSlide 0.2s ease;
}
@keyframes subcatSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-subcat-parent {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--main-color);
  padding: 4px 0 8px;
  text-decoration: none;
}
.mobile-subcat-link {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-subcat-link:hover {
  color: var(--main-color);
}

/* --- Mobile Full Menu Overlay & Panel --- */
.mobile-fullmenu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
.mobile-fullmenu-overlay.show { display: block; }

.mobile-fullmenu-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-fullmenu-panel.show {
  display: block;
  transform: translateX(0);
}
.mobile-fullmenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.mobile-fullmenu-header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
}
.mobile-fullmenu-close {
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  padding: 0 4px;
}
.mobile-fullmenu-close:hover { color: var(--color-dark); }
.mobile-fullmenu-body { padding: 8px 0; }
.mobile-fullcat-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-fullcat-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
}
.mobile-fullcat-link.active,
.mobile-fullcat-item.active > .mobile-fullcat-link {
  color: var(--main-color);
  font-weight: 700;
}
.mobile-fullcat-toggle {
  flex-shrink: 0;
  padding: 14px 12px;
  cursor: pointer;
  color: #888;
  font-size: 13px;
  user-select: none;
}
.mobile-fullcat-children { display: none; background: #fafbfc; }
.mobile-fullcat-children a {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
}
.mobile-fullcat-children a:hover,
.mobile-fullcat-children a.active {
  color: var(--main-color);
  background: rgba(var(--rgb-color),0.05);
}
.mobile-fullcat-lv3 {
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.mobile-fullcat-lv3 a {
  padding-left: 50px;
  font-size: 13px;
  color: #777;
}
.mobile-fullcat-lv3 a:hover,
.mobile-fullcat-lv3 a.active {
  color: var(--main-color);
}


/* --- Product List Page Responsive --- */
@media (max-width: 991px) {
  /* Hide desktop sidebar, show mobile bar */
  .product-sidebar { display: none !important; }
  .mobile-category-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 10px;
    padding: 4px 8px 4px 16px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .product-list-layout { gap: 20px; }
  .product-list-header h2 { font-size: 22px; }
}

@media (max-width: 767px) {
  .product-list-section {
    padding: 30px 0;
  }

  .page-title-bar {
    padding: 24px 0;
  }

  .page-title-bar h1 {
    font-size: 24px;
  }

  .product-list-header h2 {
    font-size: 20px;
  }

  .product-sub-filter {
    gap: 8px;
  }

  .filter-tag {
    padding: 6px 14px;
    font-size: 13px;
  }

  .plist-card-body {
    padding: 14px 16px;
  }

  .plist-card-title {
    font-size: 15px;
  }

  .plist-card-desc {
    font-size: 13px;
  }

  .plist-card-link {
    font-size: 13px;
  }
}

/* Pagination */
.pagination-wrap {
  text-align: center;
  margin-top: 40px;
}

.pagination {
  display: inline-flex;
  gap: 5px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  font-family: "Proxima Nova Regular", sans-serif;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  transition: var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--color-white);
}

/* ===== Article Detail ===== */
.article-detail {
  padding: 50px 0;
}

.article-detail-content {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-dark);
}

.article-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin: 15px 0;
}

/* ===== Contact Touch Section Responsive ===== */
@media (max-width: 768px) {
  .touch-form-row {
    flex-direction: column;
    gap: 0;
  }
  .touch-field-half {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .contact-touch-section { padding: 50px 0 40px; }
  .contact-touch-section .section-title h2 { font-size: 24px; }

  /* Hero extra small */
  .hero-slide-bg {
    height: 240px;
    min-height: 240px;
  }
  .hero-slide-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-slide-title {
    font-size: 17px;
    line-height: 1.25;
  }

  /* Products extra small */
  .product-showcase-section .section-title h2 {
    font-size: 18px;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-card-body {
    padding: 14px 16px;
  }
  .product-card-title {
    font-size: 15px;
  }

  /* Section padding small screens */
  .section-xl-py-4,
  .section-xl-py-5,
  .section-xl-py-6 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== Search Modal ===== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.search-modal-header h3 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 24px;
  color: #fff;
  margin: 0;
}

.search-modal-close {
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.search-modal-close:hover {
  opacity: 1;
}

.search-modal-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
}

.search-modal-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 10px;
  font-family: "Proxima Nova Regular", sans-serif;
}

.search-modal-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}

.search-modal-form button .iconfont {
  font-size: 24px;
  color: var(--main-color);
}

/* ===== Language Modal ===== */
.lang-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lang-modal-overlay.active {
  display: flex;
}

.lang-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lang-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.lang-modal-header h3 {
  font-family: "Poppins SemiBold", sans-serif;
  font-size: 20px;
  color: var(--color-dark);
  margin: 0;
}

.lang-modal-close {
  font-size: 28px;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.lang-modal-close:hover {
  color: var(--main-color);
}

.lang-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .lang-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-dark);
  transition: all 0.3s;
}

.lang-item:hover {
  border-color: var(--main-color);
  background: rgba(var(--rgb-color), 0.05);
}

.lang-item.active {
  border-color: var(--main-color);
  background: rgba(var(--rgb-color), 0.08);
}

.lang-item img {
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.lang-item span {
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 13px;
  text-align: center;
}

.lang-flag {
  font-size: 36px;
  margin-bottom: 8px;
}

.lang-modal-footer {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 13px;
  color: var(--color-muted);
}

/* ===== Update Header Topbar Icons ===== */
.header-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.header-search,
.header-language {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}

.header-search:hover,
.header-language:hover {
  background: rgba(0,0,0,0.05);
}

.site-header.scrolled .header-search:hover,
.site-header.scrolled .header-language:hover {
  background: var(--color-light-gray);
}

.header-search .iconfont,
.header-language .iconfont {
  font-size: 18px;
  color: var(--color-dark);
}

.site-header.scrolled .header-search .iconfont,
.site-header.scrolled .header-language .iconfont {
  color: var(--color-dark);
}

/* Font Awesome Icon in Header */
.header-language .fa-globe {
  font-size: 18px;
  color: var(--color-dark);
}

.site-header.scrolled .header-language .fa-globe {
  color: var(--color-dark);
}

/* ===== Update Header Nav Styles ===== */
.header-nav-link {
  position: relative;
}

.header-nav-item.nav-1 .header-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--main-color);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.header-nav-item.nav-1 .header-nav-link:hover::before,
.header-nav-item.nav-1 .header-nav-link.active::before {
  transform: scaleX(1);
}

/* ===== Cloud Editor Video - Full Width ===== */
.pdetail-content-body .ce-video_inner {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.pdetail-content-body .ce-video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}
.pdetail-content-body video.ce-video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px;
}

/* ===== Cloud Editor Grid System - Param Images 2 Columns ===== */
.pdetail-content-body [cloud-editor="grid"] {
  display: flex !important;
  flex-wrap: wrap !important;
}
.pdetail-content-body [cloud-editor="cell"].ce-col-xl-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  box-sizing: border-box !important;
  padding: 8px 4px !important;
}
.pdetail-content-body [cloud-editor="cell"] .ce-image,
.pdetail-content-body [cloud-editor="cell"] .ce-image_item img,
.pdetail-content-body [cloud-editor="cell"] .ce-image_inner img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .pdetail-content-body [cloud-editor="cell"].ce-col-xl-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
