﻿/* #region all */
:root {
  --primary: #C28565;
  --primary-black: #010101;
  --white: #ffffff;
  --black: #000000;
  --font-body: sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  margin-top: 0 !important;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary-black);
}

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

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

img {
  display: block;
  border: 0;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  outline: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

.display-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: start;
}

/* #endregion */
/* #region  row */
.container {
  width: 100%;
  padding: 0 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.space {
  padding-top: 120px;
  padding-bottom: 120px;
}

.space-top {
  padding-top: 120px;
}

.space-bottom {
  padding-bottom: 120px;
}

.space-bottom-two {
  padding-bottom: 90px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-24 {
  margin-bottom: 24px;
}

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

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

.background-color {
  background: #F5F5F5;
}

.link-hover {
  display: inline;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: .36s;
}

.link-hover:hover {
  color: var(--primary);
  background-size: 100% 1px;
}

.img-hover {
  display: block;
  overflow: hidden;
}

.img-hover img {
  width: 100%;
  display: block;
  transition: .5s;
}

.img-hover:hover img {
  transform: scale(1.05);
}

.text-center {
  text-align: center;
}

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

.text-two {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-three {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.row {
  display: flex;
  flex-wrap: wrap;
  --gutter-x: 30px;
  margin-left: calc(var(--gutter-x) / -2);
  margin-right: calc(var(--gutter-x) / -2);
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.row-direction {
  flex-direction: row !important;
}

.row>* {
  padding-right: calc(var(--gutter-x) / 2);
  padding-left: calc(var(--gutter-x) / 2);
}

.row.gap {
  --gutter-x: 0;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }

  .col-xl-2 {
    width: 16.6666666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.3333333333%;
  }

  .col-xl-5 {
    width: 41.6666666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.3333333333%;
  }

  .col-xl-8 {
    width: 66.6666666667%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.3333333333%;
  }

  .col-xl-11 {
    width: 91.6666666667%;
  }

  .col-xl-12 {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-1 {
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    width: 25%;
  }

  .col-xxl-4 {
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    width: 50%;
  }

  .col-xxl-7 {
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    width: 75%;
  }

  .col-xxl-10 {
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    width: 100%;
  }
}

/* #endregion */

/* #region  site variables */
:root {
  --primary: #C28565;
  --primary-dark: #9E6B44;
  --primary-light: #FDF5EF;
  --primary-rose: #E8B4A0;
  --text-dark: #1a1a1a;
  --text-mid: #555;
  --text-gray: #888;
  --border: #e5e0d8;
  --bg-light: #faf8f6;
  --bg-cream: #f5efe8;
  --bg-dark: #12100e;
  --font-en: 'Georgia', 'Times New Roman', serif;
}

/* #endregion */

/* #region  index */

/* === TOP BAR === */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .7);
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-left i {
  color: var(--primary);
  font-size: 13px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transition: color .2s;
}

.top-bar-right a:hover {
  color: var(--primary);
}

/* === HEADER === */
.site-header {
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo,
a.logo,
.logo a {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo a em,
a.logo em {
  color: var(--primary);
  font-style: italic;
  font-size: 26px;
}

/* NAV */
.main-nav-wrap {
  display: flex;
  flex: 1;
  justify-content: center;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav>li {
  position: relative;
}

.main-nav>li>a {
  display: block;
  padding: 0 14px;
  height: 80px;
  line-height: 80px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}

.main-nav>li>a i {
  font-size: 9px;
  margin-left: 3px;
}

.main-nav>li>a:hover,
.main-nav>li.active>a {
  color: var(--primary);
}

.main-nav>li.active>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
}

/* DROPDOWN */
.main-nav>li.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  border-top: 2px solid var(--primary);
  z-index: 200;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-dark);
  border-bottom: 1px solid #f5f0ea;
  transition: background .15s, color .15s, padding .15s;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 26px;
}

.main-nav>li:hover .dropdown-menu {
  display: block;
}

/* MEGA MENU */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  border-top: 3px solid var(--primary);
  z-index: 200;
}

/* Li containing mega-menu must NOT be positioning context */
.main-nav>li:has(.mega-menu) {
  position: static;
}

/* Support both .mega-menu-inner and .mega-inner class names */
.mega-menu-inner,
.mega-inner {
  display: flex;
  min-height: 320px;
}

/* Support both .mega-col-wrap and .mega-cols class names */
.mega-col-wrap,
.mega-cols {
  display: flex;
  flex: 1;
  padding: 36px 48px;
  gap: 48px;
}

.mega-col {
  flex: 1;
  min-width: 0;
}

.mega-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mega-col ul li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px;
  font-size: 13px;
  color: var(--text-dark);
  transition: background .15s, color .15s;
  border-radius: 2px;
}

.mega-col ul li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 14px;
}

.mega-col ul li a i {
  color: var(--primary);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}

.mega-col ul li a strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.mega-col ul li a>span>span {
  display: block;
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 1px;
}

/* Simple link style (no icon/subtext) */
.mega-col ul li a:not([class]) {
  font-size: 13px;
  padding: 9px 10px;
}

.mega-img-panel {
  width: 300px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

.mega-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(18, 16, 14, .82) 0%, transparent 100%);
  padding: 20px 20px 22px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
}

.mega-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 16, 14, .78) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #fff;
}

.mega-img-overlay strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-en);
  margin-bottom: 6px;
}

.mega-img-overlay p {
  font-size: 12px;
  opacity: .8;
  margin-bottom: 14px;
}

.mega-img-overlay a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s;
}

.mega-img-overlay a:hover {
  background: rgba(255, 255, 255, .15);
}

.main-nav>li:hover .mega-menu {
  display: block;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all .2s;
}

.btn-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .2s;
}

.btn-header-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-dark);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 20px 18px;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: block;
}

.mobile-nav-list>li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list>li>a {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.mobile-sub {
  padding: 4px 0 10px 12px;
}

.mobile-sub a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-gray);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .65);
  color: #fff;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-outline-dark i {
  font-size: 16px;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .2s;
  white-space: nowrap;
}

.btn-more:hover {
  background: var(--primary);
  color: #fff;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: gap .2s;
}

.btn-text:hover {
  gap: 12px;
}

/* === SECTION TITLES === */
.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.sec-title {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.sec-head {
  text-align: center;
  margin-bottom: 15px;
}

.sec-head h2,
.sec-head h1 {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.5px;
  line-height: 1.15;
}

.sec-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.sec-head-flex h2,
.sec-head-flex h1 {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.5px;
  line-height: 1.15;
}

/* === HERO BANNER === */
.hero-swiper {
  width: 100%;
}

.hero-slide {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 580px;
  max-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* keep backward compat for .hero-bg (some inner pages may still use bg-image) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(18, 16, 14, .72) 0%, rgba(18, 16, 14, .28) 55%, transparent 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 16, 14, .72) 0%, rgba(18, 16, 14, .28) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-bottom: 18px;
}

.hero-content .hero-title {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: #fff;
}

.hero-desc {
  font-size: 16px;
  opacity: .85;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 28px;
  border-radius: 3px;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  transition: all .2s;
  background: rgba(255, 255, 255, .06);
}

.hero-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

/* === PRODUCT SECTION === */
.product-section {
  background: var(--bg-light);
}

.product-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-tab-btn {
  padding: 10px 28px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: all .25s;
}

.product-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.product-tab-btn:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.product-tabs-divider {
  border: none;
  border-bottom: 2px solid var(--border);
  margin: 16px 0 40px;
}

.product-tab-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.active {
  display: block;
}

.product-swiper-wrap {
  position: relative;
  padding: 0 10px;
}

/* Generic swiper nav button (sol-swiper, etc.) */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-dark);
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.swiper-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.sol-swiper-wrap {
  position: relative;
  padding: 0 52px;
}

.sol-prev {
  left: 0;
}

.sol-next {
  right: 0;
}

.product-prev,
.product-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--text-dark);
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.product-prev:hover,
.product-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.product-prev {
  left: -22px;
}

.product-next {
  right: -22px;
}

/* Product Card */
.product-card {
  background: #fff;
  transition: box-shadow .3s, transform .3s;
  display: block;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(194, 133, 101, .18);
  transform: translateY(-4px);
}

.product-card-img {
  overflow: hidden;
  display: block;
}

.product-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 18px 16px 20px;
}

.product-card-body .card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.4;
}
.product-card-body div{
      font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}
.product-card-body .two {

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

.product-card-body h3 {
  font-size: 20px;
}

.product-card-body h3 a:hover {
  color: var(--primary);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-card-footer .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 7px 16px;
  border: 1px solid var(--primary);
  transition: all .22s;
}

.product-card-footer .btn-line:hover {
  background: var(--primary);
  color: #fff;
}

/* Remove category labels in cards */
.product-card-cat {
  display: none;
}

/* === SERVICE SECTION === */
.service-card {
  background: #fff;
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  transition: all .3s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(194, 133, 101, .15);
  transform: translateY(-3px);
}

.service-img {
  overflow: hidden;
  margin-bottom: 22px;
}

.service-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}

.service-card:hover .service-img img {
  transform: scale(1.04);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all .3s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card .card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card .two {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.service-card .read-more:hover {
  gap: 10px;
}

/* generic read-more for blog/case cards */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.read-more:hover {
  gap: 10px;
}

/* === CASE SECTION HOME === */
.case-section {}

.case-section-home {
  background: var(--bg-cream);
}

.case-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 40px;
}

.case-cat-tab {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid var(--border);
  color: var(--text-gray);
  font-size: 14px;
  text-decoration: none;
  transition: all .25s;
}

.case-cat-tab:hover,
.case-cat-tab.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(194, 133, 101, .06);
}

.case-card {
  background: #fff;
  transition: all .3s;
  overflow: hidden;
}

.case-card:hover {
  box-shadow: 0 12px 40px rgba(194, 133, 101, .18);
  transform: translateY(-4px);
}

.case-card-img {
  overflow: hidden;
  display: block;
}

.case-card-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.case-card:hover .case-card-img img {
  transform: scale(1.04);
}

.case-card-body {
  padding: 20px 20px 22px;
  background: #fff;
}

.case-card .card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.4;
}

.case-card .card-title a {
  color: inherit;
}

.case-card .card-title a:hover {
  color: var(--primary);
}
.case-card div{
      font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
}
.case-card .two {

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

.case-card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.case-card-more:hover {
  gap: 10px;
}

/* === ABOUT SECTION (HOME) — LIGHT cream background === */
.about-home {
  background: var(--bg-cream);
}

.about-home-img {
  position: relative;
  margin-right: 32px;
}

.about-home-img .img-main {
  width: 100%;
  height: auto;
  display: block;
}

.about-home-img .img-accent {
  position: absolute;
  bottom: -24px;
  right: -28px;
  width: 52%;
  height: auto;
  display: block;
  border: 5px solid var(--bg-cream);
}

.about-badge {
  position: absolute;
  top: 32px;
  right: -28px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-en);
  border: 4px solid var(--bg-cream);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.about-badge small {
  font-size: 10px;
  opacity: .85;
  letter-spacing: .3px;
  display: block;
  margin-top: 2px;
}

.about-home-content {
  padding: 0 0 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-home-content .sec-eyebrow {
  color: var(--primary);
}

.about-home-content h1 {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -.5px;
  line-height: 1.15;
}

.about-home-content>p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-home-content .about-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-home .about-stats {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.about-home .stat-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 8px;
}

.about-home .stat-item:last-child {
  border-right: none;
}

.about-home .stat-num {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.about-home .stat-label {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.about-home-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  padding: 0;
  text-decoration: none;
}

.btn-video i {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s;
}

.btn-video:hover {
  color: var(--primary);
}

.btn-video:hover i {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(194, 133, 101, .15);
}

/* === BLOG CARD === */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: all .3s;
  overflow: hidden;
  display: block;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(194, 133, 101, .18);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.blog-card-img {
  overflow: hidden;
  display: block;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px 20px 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-meta a {
  color: var(--primary);
  font-weight: 600;
}

.blog-cat-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.blog-meta i {
  color: var(--primary);
  font-size: 12px;
}

.blog-card .card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.45;
}

.blog-card .card-title a {
  color: var(--text-dark);
  transition: color .2s;
}

.blog-card .card-title a:hover {
  color: var(--primary);
}

.blog-card div{
   
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65; 
}

.blog-card .two {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === FILTER TABS === */
.filter-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: all .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* === FOOTER === */
.site-footer {
  background: #0e0c0a;
  color: rgba(255, 255, 255, .6);
}

.footer-top {
  padding: 72px 0 52px;
}

.footer-brand {
  margin-bottom: 20px;
}

.foot-logo {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.foot-logo img {
  width: 150px;
}

.foot-logo em {
  color: var(--primary-rose);
  font-style: italic;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
  color: rgba(255, 255, 255, .48);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col {
  padding-right: 16px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ul/li nav links */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  transition: color .2s, padding-left .15s;
  display: block;
  line-height: 1.4;
}

.footer-col ul li a:hover {
  color: var(--primary-rose);
  padding-left: 4px;
}

/* .footer-links compat */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  transition: color .2s, padding-left .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-rose);
  padding-left: 4px;
}

/* contact list */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start; 
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--primary-rose);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  margin-right: 10px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .48);
  transition: color .2s;
}

.footer-contact-list li a:hover {
  color: var(--primary-rose);
}

/* inner page footer contact rows */
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact-row i {
  color: var(--primary-rose);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-row span,
.footer-contact-row a {
  color: rgba(255, 255, 255, .48);
}

.footer-contact-row a:hover {
  color: var(--primary-rose);
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .7);
}

/* === SIDEBAR FLOAT === */
.sidebar-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-btn {
  width: 46px;
  height: 46px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: background .2s;
  cursor: pointer;
  text-decoration: none;
}

.sidebar-btn:last-child {
  border-bottom: none;
}

.sidebar-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.sidebar-btn.top-btn {
  background: var(--bg-dark);
}

.sidebar-btn.top-btn:hover {
  background: #000;
}

/* #endregion */

/* #region  page */

/* === PRODUCT DETAIL === */
.pd-main-section {
  padding: 56px 0 72px;
}

/* Gallery layout */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-gallery-thumbs {
  width: 100%;
}

.pd-gallery-thumbs .swiper {
  overflow: hidden;
}

.pd-gallery-thumbs .swiper-slide {
  height: auto;
  cursor: pointer;
  opacity: .5;
  border: 2px solid transparent;
  transition: all .2s;
  overflow: hidden;
}

.pd-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary);
}

.pd-gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-gallery-main {
  overflow: hidden;
}

.pd-gallery-main .swiper-slide {
  height: auto;
}

.pd-gallery-main .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product info */
.pd-info {
  padding-left: 40px;
}

.pd-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.pd-title {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.pd-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 22px;
}

.pd-features {
  margin-bottom: 26px;
  list-style: none;
  padding: 0;
}

.pd-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 9px;
  line-height: 1.6;
}

.pd-features li i {
  color: var(--primary);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.pd-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pd-meta {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-meta-row {
  display: flex;
  gap: 0;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.pd-meta-row:last-child {
  border-bottom: none;
}

.pd-meta-row span:first-child {
  min-width: 110px;
  color: var(--text-gray);
}

.pd-meta-row span:last-child {
  color: var(--text-dark);
  font-weight: 600;
}

/* Detail tabs */
.pd-tabs-section {
  padding-bottom: 80px;
  background: #fff;
}

.pd-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 44px;
  gap: 0;
}

.pd-tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-gray);
  cursor: pointer;
  transition: all .2s;
}

.pd-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.pd-tab-panel {
  display: none;
}

.pd-tab-panel.active {
  display: block;
}

/* Description items */
.pd-desc-item {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.pd-desc-item:last-child {
  border-bottom: none;
}

.pd-desc-reverse {
  flex-direction: row-reverse;
}

.pd-desc-img {
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
}

.pd-desc-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.pd-desc-img:hover img {
  transform: scale(1.04);
}

.pd-desc-body {
  flex: 1;
  padding-top: 8px;
}

.pd-desc-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: var(--font-en);
}

.pd-desc-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

/* Parameters table */
.pd-table-wrap {
  overflow-x: auto;
}

.pd-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pd-table-wrap table thead tr {
  background: var(--bg-light);
}

.pd-table-wrap table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pd-table-wrap table tbody tr {
  border-bottom: 1px solid var(--border);
}

.pd-table-wrap table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.pd-table-wrap table tbody td {
  padding: 13px 20px;
}

.pd-table-wrap table tbody td:first-child {
  color: var(--text-gray);
}

.pd-table-wrap table tbody td:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* Download list */
.pd-dl-list {
  display: flex;
  flex-direction: column;
}

.pd-dl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.pd-dl-item:first-child {
  border-top: 1px solid var(--border);
}

.pd-dl-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

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

.pd-dl-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.pd-dl-info {
  flex: 1;
}

.pd-dl-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.pd-dl-info span {
  font-size: 12px;
  color: var(--text-gray);
}

.pd-dl-btn {
  white-space: nowrap;
}

/* Form center wrap */
.form-center-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* === INNER BANNER === */
.inner-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.inner-banner>.container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.inner-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.inner-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 16, 14, .72) 0%, rgba(18, 16, 14, .4) 55%, transparent 100%);
}

.inner-banner-content {
  position: relative;
  padding: 0;
  color: #fff;
}

.inner-banner-content .page-title,
.inner-banner-content .page-title-div {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #fff;
}

.inner-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.7;
}

.inner-banner-cta {
  margin-top: 22px;
  display: inline-flex;
}

/* === BREADCRUMB === */
.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-wrap nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 13px 0;
  flex-wrap: wrap;
}

.breadcrumb-wrap nav ul li {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-gray);
}

.breadcrumb-wrap nav ul li a {
  color: var(--text-gray);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-wrap nav ul li a:hover {
  color: var(--primary);
}

.breadcrumb-wrap nav ul li a i {
  font-size: 14px;
}

.breadcrumb-wrap nav ul li.active {
  color: var(--primary);
  font-weight: 600;
}

.breadcrumb-sep {
  margin: 0 6px;
  font-size: 9px;
  color: #ccc;
}

.breadcrumb-sep i {
  font-size: 14px;
}

/* === FAQ === */
.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color .2s;
  gap: 20px;
  line-height: 1.5;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--primary);
  transition: all .3s;
}

.faq-item.open .faq-q {
  color: var(--primary);
}

.faq-item.open .faq-q-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 44px 22px 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.faq-item.open .faq-a {
  display: block;
}

/* legacy faq-with-img support */
.faq-wrap.faq-with-img {
  max-width: none;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-img {
  flex: 0 0 420px;
  position: sticky;
  top: 140px;
  overflow: hidden;
}

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

.faq-list {
  flex: 1;
  min-width: 0;
}

/* === FORMS === */
.form-section {
  background: var(--bg-cream);
  padding: 80px 0;
}

.form-center-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.form-wrap {
  background: #fff;
  padding: 52px 56px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, .07);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-submit {
  display: flex;
  align-items: center; 
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-note {
  display: none;
}

/* === INNER PAGE SECTION HEADING (centered) === */
.sec-head-center {
  text-align: center;
  margin-bottom: 52px;
}

.sec-head-center h2 {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
}

.sec-head-center .sec-eyebrow {
  margin-bottom: 10px;
}

/* === INNER PAGE LIST SECTION (intro heading) === */
.page-intro {
  padding: 60px 0 44px;
  text-align: center;
}

.page-intro h2 {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.page-intro p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all .2s;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.page-btn.prev-btn,
.page-btn.next-btn {
  width: 44px;
  font-size: 14px;
}

/* === PREV NEXT NAV === */
.prev-next-wrap {
  border-top: 1px solid var(--border);
}

.prev-next-nav {
  display: flex;
  gap: 0;
}

.pn-item {
  flex: 1;
  padding: 28px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s;
}

.pn-item:last-child {
  border-right: none;
  text-align: right;
}

.pn-item-right {
  text-align: right;
}

.pn-item-right .pn-label {
  justify-content: flex-end;
}

.pn-item:hover {
  background: var(--bg-light);
}

.pn-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pn-item:last-child .pn-label {
  justify-content: flex-end;
}

.pn-label i {
  color: var(--primary);
  font-size: 10px;
}

.pn-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* === DETAIL PAGE STYLES (service/case/solution) === */
.detail-page-title {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 20px;
  text-align: center;
}

.detail-page-body p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.detail-section-h2 {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 14px;
  line-height: 1.3;
}

.detail-section-sub {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.detail-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.detail-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.detail-feature-list li:last-child {
  border-bottom: none;
}

.detail-feature-list li i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-ordered-list {
  padding-left: 22px;
  margin: 14px 0 0;
}

.detail-ordered-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}

.detail-results-box {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 28px 0;
}

.detail-results-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.detail-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-results-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-mid);
  gap: 16px;
}

.detail-results-list li:last-child {
  border-bottom: none;
}

.detail-results-list li strong {
  color: var(--primary);
  white-space: nowrap;
}

.detail-quote {
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.8;
}

.detail-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  color: var(--text-gray);
}

.detail-info-card {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
}

.detail-info-card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.detail-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.detail-info-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.detail-page-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.detail-page-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.detail-page-meta i {
  color: var(--primary);
  margin-right: 4px;
}

.mt-56 {
  margin-top: 56px;
}

/* === ABOUT INNER PAGE === */
.about-brand {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.about-brand .about-brand-content h2 {
  color: var(--text-dark);
}

.about-brand .about-brand-content p {
  color: var(--text-mid);
}

.about-brand .btn-video {
  color: var(--text-dark);
}

.about-brand .btn-video:hover {
  color: var(--primary);
}

.about-brand-inner {
  display: flex;
  align-items: stretch;
  min-height: 480px;
}

.about-brand-img {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

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

.about-brand-content {
  flex: 1;
  padding: 72px 72px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-brand-content h2 {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-brand-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* About page — shared section spacing */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-section.bg-light {
  background: var(--bg-light);
}

.about-section.bg-cream {
  background: var(--bg-cream);
}

/* About page stats section */
.about-stats-section {
  background: #2d2520;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-stats-section .sec-head h2 {
  color: #fff;
}

.about-stats-num {
  color: var(--primary);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stats-label {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* History Timeline */
.history-section {
  background: var(--bg-light);
}

.history-timeline {
  position: relative;
  padding: 0 0 0 40px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}

.history-item {
  position: relative;
  padding: 0 0 48px 40px;
}

.history-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
}

.history-item.active::before {
  background: var(--primary);
}

.history-year {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.history-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.history-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Factory / Cert Swiper */
.factory-swiper .swiper-slide {
  overflow: hidden;
}

.factory-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.factory-swiper .swiper-slide:hover img {
  transform: scale(1.04);
}

.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 15px;
  text-align: center;
  transition: all .2s;
}

.cert-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(194, 133, 101, .12);
}

.cert-card img {
  width: 100%;
  display: block;
  margin: 0 auto 12px;
}

.cert-card .cert-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .3px;
}

/* === BLOG DETAIL === */
.blog-detail-header {
  margin-bottom: 32px;
}

.blog-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.blog-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-author-info span {
  font-size: 12px;
  color: var(--text-gray);
}

.blog-feature-img {
  margin-bottom: 36px;
  overflow: hidden;
}

.blog-feature-img img {
  width: 100%;
  aspect-ratio: 800/500;
  object-fit: cover;
  display: block;
}

.blog-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text-dark);
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text-dark);
}

.blog-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Blog share row */
.blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
}

.blog-share span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  white-space: nowrap;
}

.blog-share-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-gray);
  transition: all .25s;
  flex-shrink: 0;
}

.blog-share a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Author bio card */
.blog-author-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  margin: 32px 0 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  background: var(--bg-light);
}

.blog-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.blog-author-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.blog-author-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.blog-sidebar-widget:last-child {
  margin-bottom: 0;
}

.blog-sidebar-widget-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  color: var(--text-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.sidebar-cat-arrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-cat-arrow a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-dark);
  border-radius: 4px;
  transition: .2s;
}

.sidebar-cat-arrow a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 10px;
}

.sidebar-cat-arrow a .cat-chevron {
  font-size: 11px;
  color: var(--text-gray);
}

.sidebar-recent-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

.sidebar-recent-post:hover {
  opacity: .8;
}

.sidebar-recent-post+.sidebar-recent-post {
  margin-top: 18px;
}

.sidebar-recent-post-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.sidebar-recent-post-tag {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sidebar-recent-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.sidebar-recent-post-date {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

.sidebar-widget {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget:last-child {
  border-bottom: none;
}

.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  color: var(--text-dark);
}

/* Blog outline */
.blog-outline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.outline-h2 {
  display: flex;
  flex-direction: column;
}

.outline-h2-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  width: 100%;
  text-align: left;
  transition: color .2s;
  border-radius: 3px;
}

.outline-h2-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.outline-h2-btn.active {
  color: var(--primary);
}

.outline-h2-btn i {
  font-size: 9px;
  color: var(--text-gray);
  transition: transform .2s;
}

.outline-h2.open .outline-h2-btn i {
  transform: rotate(180deg);
}

.outline-h3-list {
  padding-left: 12px;
  display: none;
}

.outline-h2.open .outline-h3-list {
  display: block;
}

.outline-h3-list a {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-gray);
  transition: all .2s;
  border-left: 2px solid transparent;
}

.outline-h3-list a:hover,
.outline-h3-list a.active {
  color: var(--primary);
  background: var(--primary-light);
  border-left-color: var(--primary);
}

/* Sidebar cats */
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.sidebar-cat-list a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.sidebar-cat-list a i {
  font-size: 10px;
  color: var(--primary);
}

/* Sidebar recent */
.sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-post-img {
  flex-shrink: 0;
  width: 70px;
  height: 54px;
  overflow: hidden;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.sidebar-post:hover .sidebar-post-img img {
  transform: scale(1.06);
}

.sidebar-post-info .post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color .2s;
}

.sidebar-post:hover .post-title {
  color: var(--primary);
}

.sidebar-post-info .post-date {
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 4px;
}

/* === CONTACT PAGE === */
.contact-info-card {
  background: var(--bg-dark);
  color: #fff;
  padding: 48px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card .cic-title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card .cic-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(194, 133, 101, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  border-radius: 50%;
}

.contact-info-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 3px;
}

.contact-info-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.contact-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  transition: all .2s;
}

.contact-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.contact-form-wrap {
  background: #fff;
  padding: 48px;
  height: 100%;
}

.contact-form-wrap .form-title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 36px;
}

/* 404 / THANKS */
.error-page-bg {
  position: relative;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 60%, #fff 100%);
  padding: 80px 0;
  overflow: hidden;
}

.error-page-bg::before {
  content: '404';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: 320px;
  font-weight: 800;
  color: var(--primary);
  opacity: .05;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -10px;
  z-index: 0;
}

.error-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}

.error-title {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.2;
}

.error-inner p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.error-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-check {
  width: 72px;
  height: 72px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thanks-check i {
  font-size: 32px;
  color: #fff;
}

/* #endregion */

/* #region  media */

@media (max-width: 1200px) {
  .hero-content .hero-title {
    font-size: 52px;
  }

  .about-home-content {
    padding-left: 40px;
  }

  .sec-head h2,
  .sec-head h1 {
    font-size: 34px;
  }

  .mega-col-wrap {
    padding: 30px 32px;
    gap: 32px;
  }
}

@media (max-width: 992px) {

  .main-nav,
  .header-actions .btn-header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content .hero-title {
    font-size: 40px;
  }

  .hero-slide {
    height: 520px;
    min-height: 440px;
  }

  .sec-head h2,
  .sec-head h1 {
    font-size: 28px;
  }

  .sec-head-flex h2,
  .sec-head-flex h1 {
    font-size: 26px;
  }

  .about-home-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .top-bar-left {
    display: none;
  }

  .faq-wrap {
    flex-direction: column;
  }

  .faq-img {
    position: static;
    flex: none;
    width: 100%;
  }

  .faq-img img {
    aspect-ratio: 16/7;
  }

  .about-brand-inner {
    flex-direction: column;
  }

  .about-brand-img {
    flex: none;
  }

  .about-brand-img img {
    aspect-ratio: 16/7;
  }

  .about-brand-content {
    padding: 48px 32px;
  }

  .contact-info-card {
    padding: 40px 28px;
  }

  .contact-form-wrap {
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 30px;
  }

  .hero-slide {
    height: 440px;
    min-height: 380px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .inner-banner {
    height: 280px;
  }

  .inner-banner-content .page-title,
  .inner-banner-content .page-title-div {
    font-size: 32px;
  }

  .sec-head h2,
  .sec-head h1 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .form-wrap {
    padding: 28px 20px;
  }

  .sidebar-float {
    display: none;
  }

  .stat-num {
    font-size: 28px;
  }

  .about-home-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .prev-next-nav {
    flex-direction: column;
  }

  .pn-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pn-item:last-child {
    text-align: left;
  }

  .pn-item:last-child .pn-label {
    justify-content: flex-start;
  }

  .error-bg-num {
    font-size: 120px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

/* #endregion */

/* =============================================
   HOMEPAGE SECTION DESIGN DIFFERENTIATION
   ============================================= */

/* Product section — light warm bg, centered tabs */
.product-section {
  background: var(--bg-light);
}

.product-section .sec-head-flex h2 {
  font-family: var(--font-en);
}

/* Product card hover line accent */
.product-card {
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width .35s;
}

.product-card:hover::after {
  width: 100%;
}

/* ---- SERVICE SECTION: horizontal icon-left cards on white ---- */
.service-section-home {
  background: #fff;
}

.svc-h-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 28px 24px;
  border: 1px solid var(--border);
  transition: all .3s;
  background: #fff;
  height: 100%;
}

.svc-h-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 28px rgba(194, 133, 101, .14);
  transform: translateY(-2px);
}

.svc-h-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  transition: all .3s;
}

.svc-h-icon img{
	width:100%;
	height:100%;
	object-fit: contain;
	object-position: center;
}

.svc-h-card:hover .svc-h-icon { 
  color: #fff;
}

.svc-h-body .svc-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.35;
}

.svc-h-body div{
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
}

.svc-h-body .two {

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

/* ---- CASE SECTION: cream bg, big first card ---- */
.case-section-home {
  background: var(--bg-cream);
}

.case-featured {
  display: flex;
  gap: 0;
  height: 400px;
  overflow: hidden;
}

.case-featured-img {
  flex: 0 0 55%;
  overflow: hidden;
}

.case-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.case-featured:hover .case-featured-img img {
  transform: scale(1.04);
}

.case-featured-body {
  flex: 1;
  background: var(--bg-dark);
  color: #fff;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-featured-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-bottom: 16px;
}

.case-featured-title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}

.case-featured-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary-rose);
  transition: gap .2s;
}

.case-featured-link:hover {
  gap: 14px;
}

/* Small case grid */
.case-sm-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-sm-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.case-sm-item:last-child {
  border-bottom: none;
}

.case-sm-item:hover {
  padding-left: 6px;
}

.case-sm-img {
  flex-shrink: 0;
  width: 80px;
  height: 64px;
  overflow: hidden;
}

.case-sm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.case-sm-item:hover .case-sm-img img {
  transform: scale(1.06);
}

.case-sm-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.case-sm-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color .2s;
}

.case-sm-item:hover .case-sm-title {
  color: var(--primary);
}

/* ---- SOLUTION SECTION ---- */
.solution-section-home {
  background: var(--bg-dark);
}

.solution-section-home .sec-head-flex h2 {
  color: #fff;
}

.solution-section-home .btn-more {
  border-color: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .75);
}

.solution-section-home .btn-more:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* sol-tile: card style — image top, text below */
.sol-tile {
  display: block;
  background: rgba(255, 255, 255, .06);
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
}

.sol-tile:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .18);
}

.sol-tile-img {
  overflow: hidden;
}

.sol-tile-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.sol-tile:hover .sol-tile-img img {
  transform: scale(1.04);
}

.sol-tile-body {
  padding: 22px 20px 24px;
}

.sol-tile-num {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-rose);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sol-tile-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-en);
  line-height: 1.3;
}

.sol-tile-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sol-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-rose);
  margin-top: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.sol-tile:hover .sol-tile-arrow {
  gap: 10px;
}

/* Swiper wrap for solution */
.sol-swiper {
  overflow: hidden;
}

/* ---- SOLUTION LIST PAGE CARDS ---- */
.solution-card {
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
}

.solution-card>img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.solution-card:hover>img {
  transform: scale(1.04);
}

.solution-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(18, 16, 14, .88) 0%, rgba(18, 16, 14, .2) 70%, transparent 100%);
  padding: 28px 22px 22px;
  color: #fff;
  transition: background .3s;
}

.solution-overlay h3 {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
  color: #fff;
}

.solution-overlay .two {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-w {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-rose);
  margin-top: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.solution-card:hover .read-more-w {
  gap: 10px;
}

/* Solution list page — plain card style (text below, no image overlay) */
.solution-card-plain {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .3s;
  overflow: hidden;
}

.solution-card-plain:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(194, 133, 101, .15);
  transform: translateY(-4px);
}

.solution-card-plain:hover h3 {
  color: var(--primary);
}

.solution-card-plain-img {
  overflow: hidden;
}

.solution-card-plain-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.solution-card-plain:hover .solution-card-plain-img img {
  transform: scale(1.04);
}

.solution-card-plain-body {
  padding: 20px 20px 22px;
}

.solution-card-plain-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.solution-card-plain-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-en);
  line-height: 1.3;
  transition: color .3s;
}

.solution-card-plain-body .two,
.solution-card-plain-body div {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-card-plain .read-more {
  margin-top: 12px;
}

/* ---- SERVICE SECTION HOME / LIST: no big image ---- */
.service-section-home {
  background: #fff;
}

/* service-card: icon-based, no image */
.service-card .service-img {
  display: none;
}

.service-card {
  background: #fff;
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  transition: all .3s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(194, 133, 101, .15);
  transform: translateY(-3px);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all .3s;
}

.service-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card .card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card .two {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.service-card .read-more:hover {
  gap: 10px;
}

/* generic read-more for blog/case cards */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.read-more:hover {
  gap: 10px;
}

.about-home {
  background: var(--bg-cream);
}

.about-home-img {
  position: relative;
  margin-right: 32px;
}

.about-home-img .img-main {
  width: 100%;
  height: auto;
  display: block;
}

.about-home-img .img-accent {
  position: absolute;
  bottom: -24px;
  right: -28px;
  width: 52%;
  height: auto;
  display: block;
  border: 5px solid var(--bg-cream);
}

.about-badge {
  position: absolute;
  top: 32px;
  right: -28px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-en);
  border: 4px solid var(--bg-cream);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.about-badge small {
  font-size: 10px;
  opacity: .85;
  letter-spacing: .3px;
  display: block;
  margin-top: 2px;
}

/* ---- BLOG SECTION: white, editorial feel ---- */
.blog-section-home {
  background: #fff;
}

/* First blog card is big (featured), rest are compact */
.blog-card-featured {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}

.blog-card-featured:hover {
  box-shadow: 0 8px 32px rgba(194, 133, 101, .16);
  transform: translateY(-3px);
}

.blog-card-featured .bcf-img {
  flex: 0 0 50%;
  overflow: hidden;
}

.blog-card-featured .bcf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.blog-card-featured:hover .bcf-img img {
  transform: scale(1.04);
}

.blog-card-featured .bcf-body {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bcf-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.bcf-title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
  color: var(--text-dark);
  transition: color .2s;
}

.blog-card-featured:hover .bcf-title {
  color: var(--primary);
}

.bcf-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcf-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .2s;
}

.bcf-more:hover {
  gap: 12px;
}

/* compact blog items on the right */
.blog-compact {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.blog-compact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .2s;
}

.blog-compact-item:last-child {
  border-bottom: none;
}

.blog-compact-item:hover {
  padding-left: 6px;
}

.bci-img {
  flex-shrink: 0;
  width: 90px;
  height: 72px;
  overflow: hidden;
}

.bci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.blog-compact-item:hover .bci-img img {
  transform: scale(1.06);
}

.bci-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.bci-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color .2s;
}

.blog-compact-item:hover .bci-title {
  color: var(--primary);
}

/* Responsive adjustments for new components */
@media (max-width: 992px) {
  .case-featured {
    height: auto;
    flex-direction: column;
  }

  .case-featured-img {
    flex: none;
    height: 260px;
  }

  .case-featured-body {
    padding: 36px 28px;
  }

  .case-featured-title {
    font-size: 22px;
  }

  .sol-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .sol-layout .sol-left {
    grid-row: auto;
  }

  .sol-tile-lg img {
    aspect-ratio: 4/3;
  }

  .blog-card-featured {
    flex-direction: column;
  }

  .blog-card-featured .bcf-img {
    flex: none;
    height: 240px;
  }

  .blog-card-featured .bcf-body {
    padding: 28px 24px;
  }

  .about-home-img .img-accent {
    display: none;
  }

  .about-badge {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .svc-h-card {
    padding: 20px 18px;
  }

  .sol-layout {
    grid-template-columns: 1fr;
  }

  .sol-layout .sol-left {
    grid-row: auto;
  }

  .sol-tile-lg img,
  .sol-tile-sm img {
    aspect-ratio: 4/3;
  }

  .about-home-img {
    margin-right: 0;
    margin-bottom: 48px;
  }
}

/* =============================================
   EXTENDED STYLES — additional components
   ============================================= */

/* === FAQ WITH IMAGE (all non-blog FAQs) === */
.faq-section-img {
  background: var(--bg-light);
  padding: 80px 0;
}

.faq-img-wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-img-side {
  flex: 0 0 42%;
  position: sticky;
  top: 110px;
  overflow: hidden;
}

.faq-img-side img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.faq-content-side {
  flex: 1;
  min-width: 0;
  align-self: center;
}

/* FAQ: title at top of section, above both columns */
.faq-section-img>.container>.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.faq-content-side .sec-head {
  display: none;
}

.faq-content-side .faq-item:first-child {
  border-top: 1px solid var(--border);
}

/* === PRODUCT CATEGORY SIDEBAR === */
.cat-sidebar {
  position: sticky;
  top: 110px;
}

.cat-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cat-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-nav-list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: all .2s;
}

.cat-nav-list>li>a:hover,
.cat-nav-list>li.active>a {
  color: var(--primary);
  background: var(--primary-light);
  border-left-color: var(--primary);
}

.cat-nav-list>li>a .cat-arrow {
  font-size: 12px;
  color: var(--text-gray);
  transition: transform .2s;
  flex-shrink: 0;
  cursor: pointer;
  padding: 4px 6px;
  margin-right: -6px;
}

.cat-nav-list>li.open>a .cat-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.cat-nav-sub {
  padding-left: 14px;
  display: none;
  padding-bottom: 6px;
  overflow: hidden;
}

.cat-nav-sub a {
  font-size: 13px;
  padding: 7px 10px;
  color: var(--text-gray);
  display: block;
  transition: color .2s;
}

.cat-nav-sub a:hover {
  color: var(--primary);
}

/* === PRODUCT ARCHIVE — category grid Explore button === */
.product-card-footer .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  padding: 8px 20px;
  transition: all .22s;
}

.product-card-footer .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* === PRODUCT DETAIL SECTION WRAPPER === */
.pd-section {
  padding: 56px 0 0;
}

.product-card-footer a.btn-view {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-card-footer a.btn-view:hover {
  opacity: .7;
}

.product-card-footer a.btn-inquire {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 7px 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.product-card-footer a.btn-inquire:hover {
  background: var(--primary-dark);
}

/* === SERVICE DETAIL: no right sidebar === */
.detail-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

/* === CONTACT PAGE REDESIGN === */
.contact-main {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: start;
  min-height: 600px;
}

.contact-form-panel {
  background: #fff;
  padding: 72px 64px;
}

.contact-form-title {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-panel {
  background: var(--bg-dark);
  color: #fff;
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  min-height: 600px;
}

.contact-info-panel-title {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-panel-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(194, 133, 101, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--primary);
  flex-shrink: 0;
  border-radius: 50%;
}

.contact-info-item-text strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 3px;
}

.contact-info-item-text span,
.contact-info-item-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.contact-info-item-text a:hover {
  color: var(--primary-rose);
}

.contact-info-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 28px 0;
}

.contact-social-row {
  display: flex;
  gap: 8px;
}

.contact-social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  transition: all .2s;
}

.contact-social-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* === BLOG DETAIL SIDEBAR === */
.sidebar-cat-arrow a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: .2s;
}

.sidebar-cat-arrow a:hover {
  color: var(--primary);
}

.sidebar-cat-arrow a:last-child {
  border-bottom: none;
}

.sidebar-cat-arrow a i.cat-chevron {
  font-size: 9px;
  color: var(--text-gray);
}

.sidebar-cat-arrow a:hover i.cat-chevron {
  color: var(--primary);
}

/* Blog sidebar FAQ — with arrows */
.blog-sidebar-faq .faq-item {
  border-bottom: 1px solid var(--border);
}

.blog-sidebar-faq .faq-item:first-child {
  border-top: 1px solid var(--border);
}

.blog-sidebar-faq .faq-q {
  font-size: 13px;
  padding: 13px 0;
}

.blog-sidebar-faq .faq-a {
  font-size: 13px;
  padding: 0 28px 13px 0;
  color: var(--text-gray);
}

/* Blog detail — article */
.blog-article-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.blog-article-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
}

.blog-article-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text-dark);
}

.blog-article-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--text-dark);
}

.blog-article-body p {
  margin-bottom: 18px;
}

.blog-article-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Blog tags */
.blog-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.blog-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-gray);
  transition: all .2s;
}

.blog-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Blog prev/next */
.blog-pn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.blog-pn-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  text-decoration: none;
  transition: background .2s;
}

.blog-pn-item:first-child {
  border-right: 1px solid var(--border);
}

.blog-pn-item:hover {
  background: var(--bg-light);
}

.blog-pn-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: all .2s;
}

.blog-pn-item:hover .blog-pn-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-pn-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.blog-pn-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.blog-pn-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s;
}

.blog-pn-item:hover .blog-pn-title {
  color: var(--primary);
}

.blog-pn-right {
  justify-content: flex-end;
}

.blog-pn-right .blog-pn-text {
  align-items: flex-end;
  text-align: right;
}

.blog-pn-empty {
  pointer-events: none;
}

/* responsive media additions */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
    min-height: auto;
    padding: 48px 36px;
  }

  .contact-form-panel {
    padding: 48px 36px;
  }

  .faq-img-wrap {
    flex-direction: column;
  }

  .faq-img-side {
    position: static;
    flex: none;
    width: 100%;
  }

  .faq-img-side img {
    height: 280px;
  }
}

/* Smooth dropdown/accordion visibility */
.cat-nav-sub {
  transition: none;
}

.outline-h3-list {
  transition: none;
}

/* Ensure solution and about sections are clearly separated */
/* Solution (dark) and About (cream) natural contrast — no border needed */
.solution-section-home+.about-home {
  border-top: none;
}

/* === LOGO IMAGE SUPPORT === */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text em {
  color: var(--primary);
  font-style: italic;
  font-size: 26px;
}

a.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* If logo-1.png doesn't exist, fall back to text gracefully */

/* === HEADER INNER (new structure) === */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  position: relative;
}

/* === MOBILE NAV (new structure) === */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1099;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1100;
  overflow-y: auto;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-nav-foot {
  padding: 16px 20px 24px;
  flex-shrink: 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-list>li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list>li>a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color .2s;
}

.mobile-nav-list>li>a:hover,
.mobile-nav-list>li.active>a {
  color: var(--primary);
}

.w-100 {
  width: 100%;
  justify-content: center;
}

/* === BACKGROUND UTILITY === */
.bg-light {
  background: var(--bg-light);
}

.bg-cream {
  background: var(--bg-cream);
}

.bg-dark-section {
  background: var(--bg-dark);
}

/* === SOLUTION NAV DARK (dark bg section override) === */
.sol-nav-dark {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .5) !important;
  background: rgba(255, 255, 255, .15) !important;
}

.sol-nav-dark:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.sol-head-flex {
  margin-bottom: 36px;
}

/* === ABOUT PAGE STATS SECTION === */
.about-stats-section {
  background: #2d2520;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/about-factory-bg.jpg') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

.about-stats-section .container {
  position: relative;
  z-index: 1;
}

.about-stats-section-title {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.about-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  text-align: center;
}

.about-stat-item {
  min-width: 120px;
}

.about-stats-num {
  color: var(--primary);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-en);
}

.about-stats-label {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* === DETAIL PAGE CONTENT STYLES === */
.detail-section-h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-en);
}

.detail-section-sub {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.7;
}

.detail-page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-page-meta i {
  color: var(--primary);
}

/* === UTILITY CLASSES === */
.sec-head-mb60 {
  margin-bottom: 60px;
}

.sec-head-mb50 {
  margin-bottom: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.img-fluid {
  width: 100%;
  display: block;
}

.factory-swiper-img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* === PRODUCT TABS SECTION === */
.product-section {
  background: var(--bg-light);
}

.product-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* #endregion */

/* =============================================
   ADDITIONS: search overlay, sidebar scroll, FAQ slide, inner banner, form cleanup
   ============================================= */

/* === SEARCH OVERLAY === */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .72);
  align-items: center;
  justify-content: center;
}

.search-overlay.open {
  display: flex;
}

.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.search-overlay-inner form {
  display: flex;
  width: 100%;
  background: #fff;
}

.search-overlay-inner input[type=search] {
  flex: 1;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  color: var(--text-dark);
  outline: none;
  background: transparent;
}

.search-overlay-inner button[type=submit] {
  background: var(--primary);
  border: none;
  padding: 0 22px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.search-overlay-close {
  position: absolute;
  right: 24px;
  top: -48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* === SIDEBAR FLOAT — always visible; top-btn hidden until scrolled === */
.sidebar-float {
  opacity: 1;
  visibility: visible;
}

.sidebar-btn.top-btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.sidebar-float.show-top .sidebar-btn.top-btn {
  opacity: 1;
  visibility: visible;
}

/* === CONTACT / WPCF7 FORM — remove br, clean layout === */
.wpcf7 br {
  display: none;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  font-family: var(--font-body);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--primary);
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.wpcf7-form [type=submit] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.wpcf7-form [type=submit]:hover {
  background: var(--primary-black);
}

/* === PRODUCT ARROWS — positioned inside swiper-wrap === */
.product-swiper-wrap {
  position: relative;
  padding: 0 24px;
}

.product-prev,
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
  color: var(--text-dark);
}

.product-prev:hover,
.product-next:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-prev {
  left: 0;
}

.product-next {
  right: 0;
}

@media (max-width: 992px) {
  .inner-banner {
    height: 300px;
  }

  .inner-banner-content .page-title,
  .inner-banner-content .page-title-div {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .sidebar-float {
    display: none !important;
  }

  .inner-banner {
    height: 240px;
  }

  .inner-banner-content .page-title,
  .inner-banner-content .page-title-div {
    font-size: 28px;
  }

  .product-swiper-wrap {
    padding: 0 16px;
  }

  .product-prev {
    left: 0;
  }

  .product-next {
    right: 0;
  }
}

.blog-sidebar-widget .faq-item:last-child {
  border-bottom: none;
}
.blog-sidebar-widget .faq-q{
  padding: 15px 0;
}