/*
Theme Name: Guoshun Product Cards
Theme URI: https://leadwolfvinyl.com/
Author: guoshun
Author URI: https://leadwolfvinyl.com/
Description: Modern B2B WordPress theme for wholesale advertising materials, sign-making supplies and printing media suppliers. Includes dedicated Home, Products, About Us, Blog and Contact pages.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: guoshun
*/

:root {
  --navy-950: #241006;
  --navy-900: #35170a;
  --navy-800: #54230c;
  --blue-700: #c64a00;
  --blue-600: #ed650b;
  --blue-500: #ff8a2a;
  --orange: #ff7417;
  --orange-dark: #d94b00;
  --ink: #2b1a12;
  --muted: #7d6a60;
  --line: rgba(133, 69, 31, 0.17);
  --soft: #fff7f0;
  --white: #fff;
  --shadow: 0 22px 65px rgba(111, 45, 8, 0.17);
  --radius: 18px;
  --container: 1200px;
  --glass-border: rgba(255, 255, 255, 0.74);
  --glass-shadow: 0 20px 55px rgba(102, 41, 7, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 146, 61, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 38%, rgba(255, 106, 13, 0.09), transparent 30rem),
    #fffaf6;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--gh-topbar-height, 38px) + var(--gh-header-height, 86px));
}

body.guoshun-elementor-canvas {
  padding-top: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.section {
  padding: 94px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background: var(--navy-950);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.page-intro h1 {
  margin: 0 0 15px;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.section-dark .section-heading h2 {
  color: #fff;
}

.section-heading p,
.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p {
  color: #aebed0;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-blue {
  color: #fff;
  background: var(--blue-600);
}

.btn-blue:hover {
  background: var(--blue-700);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy-950);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.guoshun-elementor-page {
  width: 100%;
}

.guoshun-elementor-page > .elementor {
  width: 100%;
}

.guoshun-elementor-page .alignwide,
.guoshun-elementor-page .alignfull {
  max-width: none;
}

.custom-logo {
  width: auto;
  max-height: 52px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 14, 30, 0.2), transparent 68%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding: 82px 0 120px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #8fcaff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-kicker::before {
  width: 38px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 75px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: #54acff;
}

.hero-copy {
  max-width: 620px;
  margin: 25px 0 32px;
  color: #cbd8e8;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: rgba(3, 15, 31, 0.88);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 29px;
  line-height: 1.2;
}

.hero-stat span {
  color: #9eafc2;
  font-size: 13px;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 5px 25px rgba(9, 37, 73, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eef5;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-body {
  padding: 25px 26px 27px;
}

.product-card h3 {
  margin: 0 0 9px;
  color: var(--navy-950);
  font-size: 23px;
  line-height: 1.3;
}

.product-card p {
  min-height: 55px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 5px;
  color: #fff;
  background: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Advantages */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.visual-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.visual-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 16, 34, 0.8));
  content: "";
}

.visual-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: #fff;
  background: rgba(5, 29, 58, 0.74);
  backdrop-filter: blur(10px);
}

.visual-badge strong {
  font-size: 34px;
}

.visual-badge span {
  color: #d7e3ef;
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 23px;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: #e9f3ff;
  font-size: 23px;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 4px;
  color: var(--navy-950);
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.process-step {
  min-height: 255px;
  padding: 35px 28px;
  background: var(--navy-900);
}

.process-number {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: #a8b8c9;
  font-size: 14px;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, var(--blue-700), #05458f);
}

.cta-band::after {
  position: absolute;
  top: -150px;
  right: -70px;
  width: 430px;
  height: 430px;
  border: 75px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-block: 45px;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.2;
}

.cta-copy p {
  margin: 0;
  color: #d5e8ff;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

/* Page headers */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: #fff;
  background-color: #2b1004;
  background-image:
    linear-gradient(98deg, rgba(33, 11, 3, 0.72) 0%, rgba(78, 27, 4, 0.58) 34%, rgba(121, 45, 4, 0.32) 62%, rgba(216, 75, 0, 0.16) 100%),
    radial-gradient(circle at 78% 25%, rgba(255, 167, 91, 0.28), transparent 24rem),
    radial-gradient(circle at 18% 115%, rgba(255, 105, 13, 0.16), transparent 30rem),
    var(--page-hero-image, url("assets/images/hero-poster-user.webp"));
  background-position: center, center, center, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 7, 2, 0.46) 0%, rgba(44, 14, 3, 0.34) 34%, rgba(51, 17, 4, 0.12) 60%, rgba(30, 10, 2, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 117, 23, 0.03), rgba(20, 6, 2, 0.11));
  content: "";
}

.page-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-intro h1 {
  color: #fff;
}

.page-intro p {
  color: #bdcad9;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
  color: #8eb9e5;
  font-size: 13px;
  font-weight: 700;
}

/* Products page */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.category-nav a {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #34455d;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.category-nav a:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.catalog-section + .catalog-section {
  padding-top: 75px;
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.catalog-header h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 32px;
}

.catalog-header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sku-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sku-card:hover {
  border-color: #b5d8ff;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(7, 56, 112, 0.08);
}

.sku-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.sku-card h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 17px;
}

.sku-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Product catalog with individual detail pages */
.product-page-hero {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(35, 13, 3, 0.68), rgba(77, 27, 4, 0.5)),
    url("assets/images/hero-warehouse-user.webp") center / cover no-repeat;
}

.product-page-hero .page-intro {
  max-width: 860px;
}

.product-page-hero .eyebrow,
.product-page-hero .breadcrumbs a {
  color: #ffb27d;
}

.product-page-hero .eyebrow::before {
  background: #ff7417;
}

.product-catalog-section {
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 116, 23, 0.1), transparent 25rem),
    #fffaf6;
}

.product-catalog-heading {
  max-width: 780px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-detail-card {
  overflow: hidden;
  border: 1px solid rgba(143, 75, 35, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(91, 39, 10, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-detail-card:hover {
  border-color: rgba(255, 116, 23, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(101, 43, 10, 0.16);
}

.product-detail-card-media {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #efe8e2;
}

.product-detail-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-detail-card:hover .product-detail-card-media img {
  transform: scale(1.055);
}

.product-detail-card-media > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(38, 17, 8, 0.68);
  box-shadow: 0 8px 25px rgba(24, 10, 3, 0.2);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-card-body {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 22px 20px 24px;
}

.product-detail-card-body h2 {
  margin: 0 0 9px;
  min-height: calc(1.35em * 5);
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.35;
}

.product-detail-card-body h3 {
  margin: 0;
  min-height: calc(1.35em * 3);
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.35;
}

.product-card-price {
  display: inline-flex;
  width: 104px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 7px 6px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 116, 23, 0.18);
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 247, 240, 0.72);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.product-card-meta-row {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-detail-card-body p {
  min-height: 68px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-card-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.product-view-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  align-self: flex-start;
}

.product-detail-card:hover .product-view-link span {
  transform: translateX(5px);
}

.product-view-link span {
  transition: transform 0.25s ease;
}

.product-inquiry-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid var(--orange);
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #ff8d34, #ed5800);
  box-shadow: 0 9px 24px rgba(210, 75, 0, 0.2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-volume-pricing {
  max-width: 390px;
  min-height: 54px;
  padding: 8px 16px;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.product-inquiry-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #ef6509, #cc4100);
  box-shadow: 0 13px 28px rgba(190, 62, 0, 0.28);
  transform: translateY(-2px);
}

/* Individual product detail */
.product-single-hero {
  position: relative;
  overflow: hidden;
  padding: 55px 0 92px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 144, 59, 0.22), transparent 26rem),
    linear-gradient(145deg, #fffaf6, #fff 58%, #fff2e8);
}

.product-single-breadcrumbs {
  margin-bottom: 35px;
  color: #9b6b4f;
}

.product-single-breadcrumbs a {
  color: var(--blue-700);
}

.product-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 85px);
}

.product-single-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(152, 83, 43, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(93, 40, 11, 0.17);
}

.product-single-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.product-single-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-single-category {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: #fff;
  background: rgba(44, 19, 7, 0.74);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-single-copy h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.product-single-copy > p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 16px;
}

.product-single-copy .product-single-tagline {
  color: #4d2b1b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.product-quick-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.product-quick-points li {
  position: relative;
  padding-left: 28px;
  color: #3a251b;
  font-size: 14px;
  font-weight: 700;
}

.product-quick-points li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  content: "鉁?;
  font-size: 11px;
}

.product-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.product-outline-button {
  border-color: rgba(102, 53, 26, 0.23);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.75);
}

.product-outline-button:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: #fff;
}

.product-information {
  background: #fff;
}

.product-information-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: 70px;
  align-items: start;
}

.product-information h2,
.product-spec-card h2 {
  margin: 0 0 28px;
  color: var(--navy-950);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-feature {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(142, 75, 36, 0.14);
  border-radius: 15px;
  background: #fffaf6;
}

.product-feature > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #d94b00);
  font-size: 12px;
  font-weight: 900;
}

.product-feature strong {
  color: var(--navy-950);
  line-height: 1.35;
}

.product-spec-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 230, 0.88));
  box-shadow: 0 24px 65px rgba(101, 43, 10, 0.12);
}

.product-spec-card h2 {
  font-size: 32px;
}

.product-spec-card dl {
  margin: 0 0 20px;
}

.product-spec-card dl > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(133, 69, 31, 0.13);
}

.product-spec-card dt {
  color: #9b5c38;
  font-size: 13px;
  font-weight: 800;
}

.product-spec-card dd {
  margin: 0;
  color: #352016;
  font-size: 14px;
  font-weight: 700;
}

.product-spec-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-application-item {
  min-height: 145px;
  padding: 26px;
  border: 1px solid rgba(142, 75, 36, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(91, 39, 10, 0.07);
}

.product-application-item > span {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 10px;
  background: var(--orange);
}

.product-application-item strong {
  color: var(--navy-950);
  font-size: 17px;
  line-height: 1.4;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-product-card {
  display: grid;
  grid-template-columns: 135px 1fr;
  min-height: 135px;
  overflow: hidden;
  border: 1px solid rgba(142, 75, 36, 0.14);
  border-radius: 17px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(91, 39, 10, 0.12);
}

.related-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-card > div {
  display: grid;
  align-content: center;
  grid-template-rows: auto auto auto;
  padding: 22px;
}

.related-product-card span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-product-card h3 {
  margin: 8px 0 0;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.3;
}

.related-product-price {
  display: block;
  margin-top: 10px;
  justify-self: end;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

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

  .product-single-grid,
  .product-information-grid {
    grid-template-columns: 1fr;
  }

  .product-single-media {
    min-height: 450px;
  }

  .product-single-media img {
    min-height: 450px;
  }

  .product-information-grid {
    gap: 42px;
  }

  .product-application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .product-detail-grid,
  .product-feature-grid,
  .product-application-grid,
  .product-quick-points {
    grid-template-columns: 1fr;
  }

  .product-detail-card-media {
    height: 235px;
  }

  .product-detail-card-body p {
    min-height: 0;
  }

  .product-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-inquiry-button {
    width: 100%;
  }

  .product-single-hero {
    padding: 35px 0 70px;
  }

  .product-single-media,
  .product-single-media img {
    min-height: 330px;
  }

  .product-single-copy h1 {
    font-size: 30px;
  }

  .product-single-actions .btn {
    width: 100%;
  }

  .product-spec-card {
    padding: 26px 20px;
  }

  .product-spec-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .related-product-card {
    grid-template-columns: 105px 1fr;
  }
}

/* About */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.metric {
  padding: 28px 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 35px rgba(7, 35, 68, 0.08);
}

.metric strong {
  display: block;
  color: var(--blue-700);
  font-size: 34px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 34px 30px;
  border-top: 4px solid var(--blue-600);
  border-radius: 0 0 13px 13px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(7, 35, 68, 0.08);
}

.value-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.post-grid.blog-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-inline: auto;
}

.blog-list .post-card {
  display: flex;
  height: 450px;
  flex-direction: column;
}

.blog-list .post-thumb {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.blog-list .post-body {
  display: grid;
  flex: 1;
  grid-template-rows: 42px 84px 72px 1fr auto;
  min-height: 0;
}

.blog-demo {
  min-height: 0;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.post-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeaff, #f1f5fa);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--blue-700);
  font-size: 46px;
  font-weight: 900;
}

.post-placeholder img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.post-body {
  padding: 24px;
}

.post-meta {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.post-card h2,
.post-card h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 21px;
  line-height: 1.38;
}

.post-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
}

.pagination {
  margin-top: 45px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.article-wrap {
  max-width: 860px;
  margin-inline: auto;
}

.article-content {
  font-size: 17px;
}

.article-content h2,
.article-content h3 {
  margin-top: 1.7em;
  color: var(--navy-950);
  line-height: 1.3;
}

.article-content a {
  color: var(--blue-700);
  text-decoration: underline;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.contact-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-700);
  background: #e9f3ff;
  font-size: 10px;
  font-weight: 900;
}

.contact-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
}

.contact-card span,
.contact-card a {
  color: var(--muted);
  font-size: 14px;
}

.quote-form-wrap {
  padding: 38px;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form-wrap h2 {
  margin: 0 0 7px;
  color: var(--navy-950);
  font-size: 29px;
}

.quote-form-wrap > p {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 14px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: #26364c;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #d7e0ea;
  border-radius: 7px;
  outline: none;
  background: #fafcfe;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(21, 146, 255, 0.12);
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin-bottom: 24px;
  padding: 14px 17px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.form-notice.success {
  color: #12653b;
  background: #e6f7ee;
}

.form-notice.error {
  color: #9a2929;
  background: #ffeded;
}

/* WordPress defaults */
.alignwide {
  max-width: 1200px;
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
}

.sticky,
.bypostauthor {
  display: block;
}

@media (max-width: 1024px) {
  .split {
    gap: 40px;
  }

  .sku-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .product-grid,
  .post-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .post-grid.blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 430px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stat {
    padding: 17px 14px;
  }

  .hero-stat strong {
    font-size: 23px;
  }

  .product-grid,
  .post-grid,
  .values-grid,
  .sku-grid,
  .process-grid,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .post-grid.blog-list {
    grid-template-columns: 1fr;
  }

  .catalog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-field.full {
    grid-column: auto;
  }

  .quote-form-wrap {
    padding: 27px 20px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

}

/* Orange liquid-glass visual system */
.page-hero {
  background-color: #2b1004;
  background-image:
    linear-gradient(98deg, rgba(33, 11, 3, 0.94) 0%, rgba(78, 27, 4, 0.86) 38%, rgba(121, 45, 4, 0.58) 68%, rgba(216, 75, 0, 0.3) 100%),
    radial-gradient(circle at 78% 25%, rgba(255, 167, 91, 0.34), transparent 24rem),
    radial-gradient(circle at 18% 115%, rgba(255, 105, 13, 0.22), transparent 30rem),
    var(--page-hero-image, url("assets/images/hero-poster-user.webp"));
  background-position: center, center, center, center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(22, 7, 2, 0.72) 0%, rgba(44, 14, 3, 0.56) 36%, rgba(51, 17, 4, 0.2) 62%, rgba(30, 10, 2, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 117, 23, 0.06), rgba(20, 6, 2, 0.18));
}

.hero-kicker,
.breadcrumbs,
.section-dark .eyebrow {
  color: #ffc28e;
}

.section-soft {
  position: relative;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 151, 73, 0.17), transparent 25rem),
    radial-gradient(circle at 90% 85%, rgba(255, 116, 23, 0.12), transparent 28rem),
    linear-gradient(135deg, #fff9f4, #fff2e7);
}

.section-dark {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 105, 13, 0.25), transparent 28rem),
    linear-gradient(135deg, #251006, #4a1d08);
}

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 15rem),
    linear-gradient(110deg, #d94b00, #ff7a18 58%, #ff9a45);
}

.btn {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 10px 28px rgba(181, 66, 0, 0.18);
}

.btn::before {
  position: absolute;
  top: -80%;
  left: -40%;
  width: 34%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: rotate(22deg) translateX(-250%);
  transition: transform 0.75s ease;
}

.btn:hover::before {
  transform: rotate(22deg) translateX(650%);
}

.btn-blue {
  background: linear-gradient(135deg, #ff8d32, #e25200);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #ff9a48, #c94400);
}

.hero-stat,
.visual-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-trust {
  background: rgba(43, 16, 4, 0.66);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.glass-interactive {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 240, 0.35));
  box-shadow: var(--glass-shadow);
  transform: perspective(900px) translateY(var(--lift)) rotateX(var(--ry)) rotateY(var(--rx));
  transform-style: preserve-3d;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: transform 0.16s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-interactive::before {
  position: absolute;
  z-index: 0;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.95) 0, rgba(255, 174, 109, 0.3) 16%, transparent 42%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.34), transparent 45%);
  content: "";
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.glass-interactive > * {
  position: relative;
  z-index: 1;
}

.glass-interactive::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  content: "";
  pointer-events: none;
}

.glass-interactive:hover {
  --lift: -7px;
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 75px rgba(134, 48, 2, 0.21), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.glass-interactive:hover::before {
  opacity: 0.92;
}

.product-card-body,
.post-body {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 250, 246, 0.55));
}

.sku-card,
.metric,
.value-card,
.contact-card,
.quote-form-wrap,
.product-card,
.post-card {
  background-color: rgba(255, 255, 255, 0.48);
}

.process-step.glass-interactive {
  color: #fff;
  border-color: rgba(255, 181, 122, 0.22);
  background: linear-gradient(145deg, rgba(255, 137, 47, 0.18), rgba(39, 13, 2, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.feature-icon,
.contact-card-icon {
  color: #c54800;
  background: linear-gradient(135deg, rgba(255, 195, 149, 0.7), rgba(255, 121, 25, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 24px rgba(196, 72, 0, 0.12);
}

.sku-icon,
.product-tag {
  background: linear-gradient(135deg, #ff963f, #d84c00);
  box-shadow: 0 8px 22px rgba(196, 72, 0, 0.2);
}

.category-nav a {
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.category-nav a:hover {
  border-color: #e65905;
  background: linear-gradient(135deg, #ff933c, #dd5000);
}

@media (prefers-reduced-motion: reduce) {
  .glass-interactive,
  .btn::before {
    transition: none;
  }

  .glass-interactive {
    transform: none !important;
  }
}

/* About page: compact B2B supplier layout inspired by the provided reference. */
.gs-about-page {
  --about-red: var(--orange);
  --about-red-dark: var(--orange-dark);
  --about-ink: var(--navy-950);
  --about-muted: var(--muted);
  --about-line: rgba(133, 69, 31, 0.16);
  --about-soft: #fff7f0;
  color: var(--about-ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 146, 61, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 32%, rgba(255, 106, 13, 0.08), transparent 28rem),
    #fffaf6;
}

.gs-about-page .container {
  max-width: 1200px;
}

.gs-about-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.52) 0%, rgba(255, 246, 236, 0.36) 34%, rgba(255, 241, 228, 0.12) 58%, rgba(255, 255, 255, 0.02) 100%),
    var(--about-hero-image) center center / cover no-repeat,
    linear-gradient(135deg, #fffdf9, #fff5eb);
}

.gs-about-hero::after {
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 46%;
  height: 46%;
  background: linear-gradient(135deg, transparent 0 38%, #ff6f1a 39% 100%);
  content: "";
  opacity: 0.95;
  pointer-events: none;
  transform: skewX(-24deg);
}

.gs-about-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 520px;
}

.gs-about-page .gs-about-hero > .gs-about-hero-inner {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1200px) / 2));
}

.gs-about-hero-copy {
  max-width: 540px;
  padding: 76px 0;
}

.gs-about-kicker {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 800;
}

.gs-about-hero h1 {
  max-width: 540px;
  margin: 0;
  color: var(--about-red);
  font-size: clamp(42px, 4.9vw, 66px);
  line-height: 1.06;
  text-wrap: balance;
}

.gs-about-hero h1::first-line {
  color: var(--about-red);
}

.gs-about-hero-copy > p:not(.gs-about-kicker) {
  max-width: 500px;
  margin: 18px 0 0;
  color: #3c2d25;
  font-size: 16px;
  line-height: 1.65;
}

.gs-about-hero-badges {
  display: grid;
  max-width: 620px;
  margin: 22px 0 24px;
  grid-template-columns: repeat(4, max-content);
  gap: 14px;
}

.gs-about-hero-badges span {
  position: relative;
  min-height: 42px;
  padding-right: 6px;
  padding-left: 28px;
  color: #3b2317;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.gs-about-hero-badges span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--about-red);
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
  place-items: center;
}

.gs-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gs-about-actions .btn-outline {
  color: var(--about-red-dark);
  border-color: rgba(217, 75, 0, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.gs-about-section {
  padding: 58px 0;
}

.gs-about-soft {
  background:
    linear-gradient(180deg, rgba(255, 247, 240, 0.92), rgba(255, 252, 248, 0.98)),
    var(--about-soft);
}

.gs-about-overview-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.22fr);
  gap: 44px;
}

.gs-about-copy h2,
.gs-block-title,
.gs-section-title h2,
.gs-warehouse-list h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.15;
}

.gs-about-copy p {
  margin: 0 0 15px;
  color: #5f5046;
  font-size: 15px;
  line-height: 1.72;
}

.gs-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--about-red), var(--about-red-dark));
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(217, 75, 0, 0.2);
}

.gs-about-media-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.gs-about-photo-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gs-about-video-card,
.gs-about-photo-strip article {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.12);
}

.gs-about-photo-gallery,
.gs-customer-photo-grid {
  display: grid;
  gap: 16px;
}

.gs-about-photo-gallery {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.gs-customer-photo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 38px;
}

.gs-about-photo-gallery article,
.gs-customer-photo-grid article {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(111, 45, 8, 0.1);
}

.gs-about-photo-gallery article {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.12);
}

.gs-about-photo-gallery img,
.gs-customer-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gs-about-photo-gallery article:hover img,
.gs-customer-photo-grid article:hover img {
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .gs-customer-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gs-customer-photo-grid {
    grid-template-columns: 1fr;
  }
}

.gs-about-video-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.gs-about-video-card.has-video::after {
  content: none;
}

.gs-about-video-card img,
.gs-about-video-card video,
.gs-about-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-about-video-card video {
  display: block;
  background: #1b0a02;
}

.gs-about-video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 7, 2, 0.04) 0%, rgba(27, 10, 2, 0.72) 100%);
  content: "";
}

.gs-about-video-tag,
.gs-about-video-copy,
.gs-about-video-play {
  position: absolute;
  z-index: 2;
}

.gs-about-video-tag {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  color: #fff;
  border-radius: 999px;
  background: rgba(31, 12, 4, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gs-about-video-play {
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(20, 8, 1, 0.2);
  transform: translate(-50%, -50%);
}

.gs-about-video-play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--about-red-dark);
  content: "";
  transform: translate(-35%, -50%);
}

.gs-about-video-copy {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
}

.gs-about-video-copy strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.gs-about-video-copy span {
  color: rgba(255, 246, 239, 0.9);
  font-size: 13px;
  line-height: 1.55;
}

.gs-about-photo-strip article {
  aspect-ratio: 4 / 3;
}

.gs-about-photo-strip strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(28, 11, 2, 0.04), rgba(28, 11, 2, 0.78));
  font-size: 13px;
  text-align: center;
}

.gs-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.gs-section-title h2,
.gs-block-title {
  margin-bottom: 0;
}

.gs-section-title a {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.gs-section-title a::after {
  margin-left: 8px;
  content: ">";
}

.gs-about-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.gs-about-category-card,
.gs-about-why-grid article,
.gs-service-process > div {
  border: 1px solid var(--about-line);
  border-radius: 8px;
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 14px 30px rgba(111, 45, 8, 0.07);
}

.gs-about-category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 14px 14px 16px;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gs-about-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(111, 45, 8, 0.12);
}

.gs-about-category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 0;
  border-radius: 6px;
  object-fit: cover;
}

.gs-about-category-card h3 {
  margin: 0;
  color: var(--about-red);
  font-size: 15px;
  line-height: 1.35;
  align-self: center;
}

.gs-warehouse-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1.14fr) 292px;
  gap: 30px;
  align-items: stretch;
}

.gs-warehouse-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 28px 12px;
}

.gs-warehouse-list p {
  position: relative;
  margin: 0 0 16px;
  padding-left: 30px;
}

.gs-warehouse-list p::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--about-red);
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "v";
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.gs-warehouse-list strong,
.gs-warehouse-list span {
  display: block;
}

.gs-warehouse-list strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.gs-warehouse-list span {
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.45;
}

.gs-warehouse-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 390px;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(111, 45, 8, 0.1);
}

.gs-warehouse-feature img,
.gs-warehouse-side img,
.gs-application-grid img,
.gs-cases-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-warehouse-feature .zone {
  position: absolute;
  top: 60px;
  min-width: 132px;
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 116, 23, 0.96), rgba(217, 75, 0, 0.96));
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.gs-warehouse-feature .zone-a {
  left: 28px;
}

.gs-warehouse-feature .zone-b {
  right: 28px;
}

.gs-warehouse-side {
  display: grid;
  gap: 18px;
}

.gs-warehouse-side article {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(111, 45, 8, 0.08);
}

.gs-warehouse-side strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--about-red), var(--about-red-dark));
  font-size: 13px;
  text-align: center;
}

.gs-about-why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.gs-about-why-grid article {
  min-height: 132px;
  padding: 18px 16px;
}

.gs-about-why-grid span,
.gs-service-process span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--about-red);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.gs-about-why-grid h3,
.gs-service-process h3 {
  margin: 0 0 9px;
  font-size: 15px;
  line-height: 1.25;
}

.gs-about-why-grid p,
.gs-service-process p {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.55;
}

.gs-application-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.gs-application-grid article,
.gs-cases-grid article {
  text-align: center;
}

.gs-application-grid img {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.gs-application-grid span,
.gs-cases-grid h3 {
  display: block;
  margin-top: 9px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.gs-service-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.gs-service-process > div {
  position: relative;
  min-height: 150px;
  padding: 18px 16px;
}

.gs-service-process > div:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: -21px;
  color: var(--blue-700);
  content: "...>";
  font-weight: 900;
}

.gs-customer-carousel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.5fr);
  gap: 18px;
  align-items: stretch;
}

.gs-customer-nav {
  display: inline-grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 75, 0, 0.22);
  border-radius: 50%;
  color: var(--about-red-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.gs-customer-fixed-card,
.gs-customer-strip {
  overflow: hidden;
  border: 1px solid rgba(133, 69, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 14px 30px rgba(111, 45, 8, 0.08);
}

.gs-customer-fixed-card {
  position: relative;
  overflow: hidden;
}

.gs-customer-fixed-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.gs-customer-fixed-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(32, 12, 3, 0) 0%, rgba(38, 14, 4, 0.82) 58%, rgba(42, 15, 4, 0.95) 100%);
}

.gs-customer-fixed-copy p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gs-customer-fixed-copy strong {
  font-size: 22px;
  line-height: 1.15;
}

.gs-customer-fixed-copy span {
  color: rgba(255, 247, 241, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.gs-customer-strip {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.gs-customer-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gs-customer-strip-head p {
  margin: 0;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gs-customer-strip-controls {
  display: flex;
  gap: 8px;
}

.gs-customer-strip-viewport {
  overflow: hidden;
}

.gs-customer-strip-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gs-customer-thumb {
  position: absolute;
  position: relative;
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff5ec;
}

.gs-customer-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gs-customer-thumb-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(22, 8, 2, 0) 0%, rgba(34, 12, 3, 0.84) 100%);
}

.gs-customer-thumb-copy span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gs-customer-thumb-copy strong {
  font-size: 13px;
  line-height: 1.35;
}

.gs-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.7fr;
  gap: 16px;
  align-items: stretch;
}

.gs-cases-grid article {
  min-height: 172px;
}

.gs-cases-grid img {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.gs-case-stats {
  display: grid;
  min-height: 172px;
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #c64a00, #ff7417 58%, #ff944f);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.gs-case-stats div {
  min-width: 0;
  text-align: center;
}

.gs-case-stats strong,
.gs-case-stats span {
  display: block;
}

.gs-case-stats strong {
  font-size: 22px;
  line-height: 1.1;
  white-space: nowrap;
}

.gs-case-stats span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.gs-contact-band {
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0.98), rgba(255, 255, 255, 0.98)),
    #fff;
}

.gs-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.gs-contact-info,
.gs-qr-stack,
.gs-qr-card,
.gs-map-card {
  border: 1px solid var(--about-line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 14px 30px rgba(111, 45, 8, 0.07);
}

.gs-contact-info {
  padding: 22px;
}

.gs-contact-info p {
  margin: 0 0 12px;
  color: #5d4d43;
  font-size: 14px;
  line-height: 1.55;
}

.gs-qr-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
  gap: 14px;
}

.gs-qr-card {
  display: grid;
  padding: 14px 14px 12px;
  text-align: center;
  place-items: center;
  border: 1px solid rgba(214, 127, 57, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 239, 0.96));
  box-shadow: none;
}

.gs-qr-code {
  display: grid;
  width: 108px;
  height: 108px;
  padding: 10px;
  border: 6px solid #3a1708;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 18px, #111 18px 24px, transparent 24px 34px, #111 34px 42px, transparent 42px),
    linear-gradient(#111 10px, transparent 10px 18px, #111 18px 24px, transparent 24px 34px, #111 34px 42px, transparent 42px),
    linear-gradient(45deg, #d85a11 25%, transparent 25% 50%, #d85a11 50% 75%, transparent 75%),
    #fffaf5;
  background-size: 42px 42px, 42px 42px, 14px 14px, auto;
  place-items: center;
}

.gs-qr-image {
  display: block;
  width: 108px;
  height: 108px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(214, 127, 57, 0.24);
}

.gs-qr-code span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--about-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.gs-qr-code-whatsapp {
  border-color: #21543a;
  background:
    linear-gradient(90deg, #163825 10px, transparent 10px 18px, #163825 18px 24px, transparent 24px 34px, #163825 34px 42px, transparent 42px),
    linear-gradient(#163825 10px, transparent 10px 18px, #163825 18px 24px, transparent 24px 34px, #163825 34px 42px, transparent 42px),
    linear-gradient(45deg, #1fa463 25%, transparent 25% 50%, #1fa463 50% 75%, transparent 75%),
    #f8fff9;
  background-size: 42px 42px, 42px 42px, 14px 14px, auto;
}

.gs-qr-card strong {
  margin-top: 10px;
  color: #2d221b;
  font-size: 15px;
}

.gs-qr-card > span {
  display: block;
  margin-top: 6px;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.5;
}

.gs-qr-card a {
  color: var(--about-red);
  font-weight: 700;
}

.gs-map-card {
  position: relative;
  display: flex;
  min-height: 170px;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.9), rgba(255, 247, 239, 0.76)),
    repeating-linear-gradient(0deg, #f7efe6 0 24px, #ebddd0 25px 27px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(217, 75, 0, 0.16) 45px 47px);
}

.gs-map-card strong {
  max-width: 360px;
  font-size: 18px;
}

.gs-map-card span {
  max-width: 360px;
  margin-top: 8px;
  color: var(--about-muted);
  font-size: 14px;
}

body.page-template-template-about .cta-band,
.gs-about-page-static .cta-band {
  display: none;
}

body.page-template-template-about .gsf-footer,
.gs-about-page-static .gsf-footer {
  background:
    linear-gradient(135deg, rgba(255, 125, 48, 0.06), transparent 36%),
    linear-gradient(120deg, #2a0e05 0%, #451706 52%, #5b210c 100%);
}

body.page-template-template-about .gsf-glow,
.gs-about-page-static .gsf-glow {
  display: block;
}

.gs-about-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gs-about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gs-about-category-grid,
  .gs-about-why-grid,
  .gs-application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gs-warehouse-grid {
    grid-template-columns: 1fr;
  }

  .gs-warehouse-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gs-customer-carousel {
    grid-template-columns: 1fr;
  }

  .gs-customer-fixed-card img {
    min-height: 280px;
  }

  .gs-customer-thumb {
    flex-basis: calc((100% - 24px) / 3);
  }

  .gs-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gs-case-stats {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .gs-about-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.28) 100%),
      var(--about-hero-image) right center / cover no-repeat,
      linear-gradient(135deg, #fff, #f6f6f6);
  }

  .gs-about-hero::after {
    right: -20%;
    bottom: -18%;
    width: 72%;
    height: 32%;
  }

  .gs-about-hero-inner {
    min-height: auto;
    align-items: flex-start;
  }

  .gs-about-hero-copy {
    max-width: 100%;
    padding: 42px 0 220px;
  }

  .gs-about-hero h1 {
    font-size: 40px;
  }

  .gs-about-hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gs-about-section {
    padding: 28px 0;
  }

  .gs-about-overview-grid,
  .gs-contact-grid {
    grid-template-columns: 1fr;
  }

  .gs-qr-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gs-about-media-grid {
    width: 100%;
    min-width: 0;
    gap: 14px;
  }

  .gs-about-video-card,
  .gs-about-video-card video {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gs-about-photo-strip,
  .gs-about-photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gs-customer-fixed-card img {
    min-height: 240px;
  }

  .gs-service-process {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gs-service-process > div:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -17px;
    left: 24px;
    content: "v";
  }
}

@media (max-width: 560px) {
  .gs-qr-stack {
    grid-template-columns: 1fr;
  }

  .gs-about-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 62%, rgba(255, 255, 255, 0.34) 100%),
      var(--about-hero-image) right bottom / auto 58% no-repeat,
      linear-gradient(135deg, #fff, #f6f6f6);
  }

  .gs-about-hero-copy {
    padding: 34px 0 210px;
  }

  .gs-about-hero h1 {
    font-size: 34px;
  }

  .gs-about-kicker {
    font-size: 15px;
  }

  .gs-about-category-grid,
  .gs-about-why-grid,
  .gs-application-grid,
  .gs-warehouse-side,
  .gs-cases-grid,
  .gs-case-stats {
    grid-template-columns: 1fr;
  }

  .gs-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .gs-about-category-card {
    min-height: auto;
  }

  .gs-about-media-grid {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    margin-left: calc(50% - 50vw + 12px);
    margin-right: calc(50% - 50vw);
    gap: 12px;
  }

  .gs-about-video-card {
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .gs-about-video-card video {
    width: 100%;
    max-width: 100%;
  }

  .gs-about-photo-strip,
  .gs-about-photo-gallery {
    grid-template-columns: 1fr;
  }

  .gs-about-photo-strip article,
  .gs-about-photo-gallery article {
    aspect-ratio: 16 / 10;
  }

  .gs-about-video-play {
    width: 58px;
    height: 58px;
  }

  .gs-about-video-copy strong {
    font-size: 18px;
  }

  .gs-customer-thumb {
    flex-basis: calc((100% - 12px) / 2);
  }

  .gs-warehouse-feature {
    min-height: 250px;
  }

  .gs-warehouse-feature .zone {
    top: 22px;
    min-width: 110px;
    padding: 12px 14px;
    font-size: 12px;
  }

  .gs-warehouse-feature .zone-a {
    left: 12px;
  }

  .gs-warehouse-feature .zone-b {
    right: 12px;
  }
}


/* Guoshun bundled runtime styles */

:root {
  --gh-orange: #f36b21;
  --gh-orange-dark: #cf4810;
  --gh-orange-soft: #fff1e8;
  --gh-red: #bd3c13;
  --gh-ink: #1c1b1a;
  --gh-text: #5f5a56;
  --gh-line: #e9e4df;
  --gh-soft: #f8f7f5;
  --gh-dark: #17130f;
  --gh-white: #fff;
  --gh-shadow: 0 18px 55px rgba(55, 33, 18, 0.1);
  --gh-radius: 18px;
  --gh-container: 1240px;
}

body.gh-home,
body.gh-has-home-nav {
  color: var(--gh-ink);
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  padding-top: calc(var(--gh-topbar-height, 38px) + var(--gh-header-height, 86px));
}

.gh-home *,
.gh-home *::before,
.gh-home *::after,
.gh-has-home-nav *,
.gh-has-home-nav *::before,
.gh-has-home-nav *::after {
  box-sizing: border-box;
}

.gh-home img,
.gh-has-home-nav img {
  display: block;
  max-width: 100%;
}

.gh-home a,
.gh-has-home-nav a {
  text-decoration: none;
}

.gh-container {
  width: min(calc(100% - 40px), var(--gh-container));
  margin-inline: auto;
}

.gh-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  color: #fff;
  background: linear-gradient(90deg, #a92f0c, var(--gh-red), #d65320);
  font-size: 12px;
}

.gh-topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gh-topbar-message {
  letter-spacing: 0.02em;
}

.gh-topbar-benefits {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gh-topbar-benefits > span {
  opacity: 0.95;
}

.gh-language {
  position: relative;
}

.gh-language-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.gh-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 135px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(35, 19, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: 0.2s ease;
  backdrop-filter: blur(16px);
}

.gh-language.is-open .gh-language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.gh-language-menu a {
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--gh-ink);
}

.gh-language-menu a:hover {
  color: var(--gh-orange-dark);
  background: var(--gh-orange-soft);
}

.gh-header {
  position: fixed;
  top: var(--gh-topbar-height, 38px);
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(16px) saturate(145%);
}

.gh-header.is-scrolled {
  border-color: rgba(208, 94, 28, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(52, 29, 14, 0.08);
}

.gh-header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gh-brand {
  display: flex;
  min-width: 278px;
  align-items: center;
  gap: 12px;
  color: var(--gh-ink);
}

.gh-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff8c43, #e65312);
  box-shadow: 0 10px 25px rgba(224, 77, 13, 0.24);
  font-weight: 900;
}

.gh-company-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

.gh-custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 54px;
}

.gh-brand-copy {
  display: grid;
  line-height: 1.1;
}

.gh-brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.015em;
}

.gh-brand-copy small {
  margin-top: 5px;
  color: #7a726c;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.gh-nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-left: 246px;
}

.gh-nav > ul {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gh-nav li {
  position: relative;
}

.gh-nav li > a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 9px;
  color: #302b27;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, transform 0.16s ease, box-shadow 0.22s ease;
}

.gh-nav li > a::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff9b5d, var(--gh-orange-dark));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gh-nav li:hover > a,
.gh-nav li > a:focus,
.gh-nav li > a.is-active {
  color: var(--gh-orange-dark);
  background: #fff2e9;
  box-shadow: inset 0 0 0 1px rgba(243, 107, 33, 0.09);
}

.gh-nav li:hover > a::after,
.gh-nav li > a:focus::after,
.gh-nav li > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.gh-nav li > a:active {
  transform: scale(0.94);
}

.gh-nav li > a.is-clicked {
  animation: gh-nav-click 0.38s ease;
}

@keyframes gh-nav-click {
  0% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0.34); }
  60% { box-shadow: 0 0 0 9px rgba(243, 107, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0); }
}

.gh-dropdown-toggle {
  display: none;
}

.gh-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  width: 315px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 60px rgba(47, 27, 14, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 0.22s ease;
  backdrop-filter: blur(20px);
}

.gh-has-dropdown:hover .gh-dropdown,
.gh-has-dropdown:focus-within .gh-dropdown,
.gh-has-dropdown.is-open .gh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.gh-dropdown a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--gh-ink);
}

.gh-dropdown a:hover {
  background: var(--gh-orange-soft);
}

.gh-dropdown strong {
  font-size: 13px;
}

.gh-dropdown span {
  color: var(--gh-text);
  font-size: 11px;
}

.gh-header-quote {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff812f, #e45312);
  box-shadow: 0 10px 25px rgba(225, 82, 16, 0.2);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  margin-left: auto;
}

.gh-header-quote:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 82, 16, 0.28);
  transform: translateY(-2px);
}

.gh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 9px;
  background: var(--gh-orange);
  cursor: pointer;
}

.gh-menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: 0.2s ease;
}

.gh-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background-color: #281006;
  background-image:
    linear-gradient(180deg, rgba(124, 40, 4, 0.03), rgba(18, 6, 2, 0.06));
}

.gh-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gh-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.gh-hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 7, 2, 0.72) 0%, rgba(39, 13, 3, 0.52) 28%, rgba(52, 17, 4, 0.22) 55%, rgba(34, 10, 2, 0.08) 100%),
    linear-gradient(180deg, rgba(124, 40, 4, 0.04), rgba(18, 6, 2, 0.12));
  content: "";
}

.gh-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 166, 107, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 166, 107, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.35;
  mask-image: linear-gradient(to right, #000, transparent 60%);
}

.gh-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(21, 6, 1, 0.36));
  content: "";
  pointer-events: none;
}

.gh-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.gh-hero-orb-one {
  top: -160px;
  right: 25%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 144, 75, 0.2), rgba(255, 144, 75, 0));
}

.gh-hero-orb-two {
  right: -220px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 88, 19, 0.18), rgba(238, 88, 19, 0));
}

.gh-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  gap: 55px;
  padding-block: 82px 94px;
}

.gh-kicker,
.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gh-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-kicker::before,
.gh-eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--gh-orange);
  content: "";
}

.gh-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  color: #fff;
  font-size: clamp(45px, 5.25vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-shadow: 0 4px 30px rgba(15, 4, 0, 0.36);
}

.gh-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.75;
}

.gh-hero-content > p strong {
  color: #fff;
}

.gh-hero .gh-kicker {
  color: #ffb27d;
}

.gh-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.gh-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.gh-button::before {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 30%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: rotate(20deg) translateX(-240%);
  transition: transform 0.7s ease;
}

.gh-button:hover::before {
  transform: rotate(20deg) translateX(650%);
}

.gh-button:hover {
  transform: translateY(-3px);
}

.gh-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff812f, #df4e0e);
  box-shadow: 0 14px 32px rgba(222, 75, 9, 0.22);
}

.gh-button-primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(222, 75, 9, 0.3);
}

.gh-button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 28px rgba(21, 6, 1, 0.15);
  backdrop-filter: blur(12px);
}

.gh-button-light:hover {
  color: #4c1b07;
  border-color: #fff;
  background: #fff;
}

.gh-hero-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.gh-hero-point {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.gh-mini-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(20, 5, 0, 0.15);
  backdrop-filter: blur(12px);
}

.gh-mini-icon svg {
  width: 16px;
  height: 16px;
}

.gh-hero-visual {
  position: relative;
}

.gh-banner-badges {
  display: grid;
  align-self: end;
  justify-self: end;
  gap: 12px;
  padding-bottom: 12px;
}

.gh-banner-badge {
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #fff;
  background: rgba(52, 17, 4, 0.5);
  box-shadow: 0 18px 42px rgba(17, 4, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

.gh-banner-badge > strong {
  color: #ff9959;
  font-size: 28px;
}

.gh-banner-badge strong,
.gh-banner-badge span {
  display: block;
}

.gh-banner-badge div strong {
  font-size: 15px;
}

.gh-banner-badge span {
  color: #fff;
  font-size: 10px;
}

.gh-hero-image-shell {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 35px 90px rgba(98, 47, 18, 0.18);
  transform: rotate(1.5deg);
  backdrop-filter: blur(20px);
}

.gh-hero-image-shell::before {
  position: absolute;
  z-index: -1;
  inset: 20px -18px -18px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffb17c, #f2671e);
  content: "";
  opacity: 0.52;
}

.gh-hero-image-shell > img {
  width: 100%;
  min-height: 490px;
  border-radius: 21px;
  object-fit: cover;
}

.gh-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  color: var(--gh-ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(48, 27, 13, 0.15);
  backdrop-filter: blur(18px) saturate(145%);
}

.gh-floating-card strong,
.gh-floating-card span {
  display: block;
}

.gh-floating-card strong {
  font-size: 18px;
}

.gh-floating-card span {
  color: #75685e;
  font-size: 10px;
}

.gh-floating-card-top {
  top: 32px;
  left: -46px;
}

.gh-floating-card-top strong {
  color: var(--gh-orange);
  font-size: 30px;
}

.gh-floating-card-bottom {
  right: -28px;
  bottom: 38px;
}

.gh-status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid #b7edc3;
  border-radius: 50%;
  background: #20b44a;
  box-shadow: 0 0 0 5px rgba(32, 180, 74, 0.11);
}

.gh-section {
  padding: 96px 0;
}

.gh-section-soft {
  background:
    radial-gradient(circle at 8% 15%, rgba(243, 107, 33, 0.055), transparent 26rem),
    var(--gh-soft);
}

.gh-section-heading {
  max-width: 760px;
  margin-bottom: 43px;
}

.gh-section-heading h2,
.gh-process-panel > h2,
.gh-advantage-panel > h2 {
  margin: 12px 0 13px;
  color: var(--gh-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.gh-section-heading p,
.gh-process-panel > p,
.gh-advantage-panel > p {
  margin: 0;
  color: var(--gh-text);
  font-size: 15px;
  line-height: 1.75;
}

.gh-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.gh-heading-row > div {
  max-width: 760px;
}

.gh-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1a779;
  color: var(--gh-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.gh-text-link span {
  transition: transform 0.2s ease;
}

.gh-text-link:hover span {
  transform: translateX(4px);
}

.gh-needs {
  padding-top: 86px;
}

.gh-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gh-info-card {
  padding: 30px 27px;
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(49, 31, 18, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gh-info-card:hover {
  border-color: #f3b58e;
  box-shadow: var(--gh-shadow);
  transform: translateY(-6px);
}

.gh-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 13px;
  color: var(--gh-orange-dark);
  background: linear-gradient(145deg, #fff4ed, #ffe0ce);
  box-shadow: inset 0 1px 0 #fff;
}

.gh-card-icon svg {
  width: 25px;
  height: 25px;
}

.gh-info-card h3,
.gh-why-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.gh-info-card p,
.gh-why-card p {
  margin: 0;
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.7;
}

.gh-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gh-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 15px;
  color: var(--gh-ink);
  background: #fff;
  box-shadow: 0 8px 28px rgba(46, 29, 17, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gh-product-card:hover {
  color: var(--gh-orange-dark);
  box-shadow: 0 20px 50px rgba(90, 45, 19, 0.13);
  transform: translateY(-7px);
}

.gh-product-image {
  position: relative;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  background: #eee8e2;
}

.gh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gh-product-card:hover .gh-product-image img {
  transform: scale(1.075);
}

.gh-product-index {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(34, 23, 16, 0.62);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gh-product-card h3 {
  display: grid;
  min-height: 70px;
  padding: 18px 18px 8px;
  margin: 0;
  place-items: center;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}

.gh-product-price {
  display: block;
  min-height: 32px;
  padding: 0 18px 17px;
  color: var(--gh-orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.gh-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gh-solution-card {
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(45, 28, 16, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gh-solution-card:hover {
  box-shadow: var(--gh-shadow);
  transform: translateY(-7px);
}

.gh-solution-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.gh-solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gh-solution-card:hover img {
  transform: scale(1.06);
}

.gh-solution-content {
  position: relative;
  padding: 31px 22px 24px;
}

.gh-solution-icon {
  position: absolute;
  top: -27px;
  left: 21px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #ff8b3f, #dd4e0f);
  box-shadow: 0 10px 24px rgba(207, 72, 12, 0.22);
}

.gh-solution-icon svg {
  width: 21px;
  height: 21px;
}

.gh-solution-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.gh-solution-content p {
  margin: 0;
  color: var(--gh-text);
  font-size: 12px;
  line-height: 1.7;
}

.gh-why {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(243, 107, 33, 0.24), transparent 32rem),
    linear-gradient(135deg, #18130f, #2a1b13);
}

.gh-why::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000);
}

.gh-why .gh-container {
  position: relative;
  z-index: 2;
}

.gh-section-heading-light h2 {
  color: #fff;
}

.gh-section-heading-light p {
  color: #bfb5ae;
}

.gh-section-heading-light .gh-eyebrow {
  color: #ffb17c;
}

.gh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gh-why-card {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
}

.gh-why-card:hover {
  border-color: rgba(255, 148, 84, 0.35);
  background: rgba(255, 115, 37, 0.11);
  transform: translateY(-5px);
}

.gh-why-card .gh-card-icon {
  color: #ffb27d;
  background: rgba(255, 132, 61, 0.12);
}

.gh-why-card h3 {
  color: #fff;
}

.gh-why-card p {
  color: #bfb5ae;
}

.gh-stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.gh-stat {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.gh-stat:last-child {
  border-right: 0;
}

.gh-stat strong,
.gh-stat span {
  display: block;
}

.gh-stat strong {
  color: #ff914f;
  font-size: 27px;
  line-height: 1.2;
}

.gh-stat span {
  margin-top: 5px;
  color: #c8beb7;
  font-size: 11px;
}

.gh-strength-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.gh-strength-stat {
  padding: 24px 15px;
  border: 1px solid var(--gh-line);
  border-radius: 13px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 25px rgba(52, 31, 17, 0.04);
}

.gh-strength-stat strong,
.gh-strength-stat span {
  display: block;
}

.gh-strength-stat strong {
  color: var(--gh-orange-dark);
  font-size: 25px;
}

.gh-strength-stat span {
  margin-top: 5px;
  color: var(--gh-text);
  font-size: 11px;
}

.gh-strength-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gh-strength-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--gh-radius);
  background: #ddd;
  box-shadow: 0 13px 35px rgba(49, 29, 16, 0.1);
}

.gh-strength-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gh-strength-card:hover img {
  transform: scale(1.06);
}

.gh-strength-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22, 13, 8, 0.88));
  content: "";
}

.gh-strength-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px 21px;
  color: #fff;
}

.gh-strength-overlay h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.gh-strength-overlay p {
  margin: 0;
  color: #d6cec8;
  font-size: 11px;
  line-height: 1.6;
}

.gh-process {
  background: #fff;
}

.gh-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gh-process-panel,
.gh-advantage-panel {
  padding: 44px;
  border: 1px solid var(--gh-line);
  border-radius: 22px;
}

.gh-process-panel {
  background: var(--gh-soft);
}

.gh-advantage-panel {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 133, 62, 0.28), transparent 22rem),
    linear-gradient(145deg, #2a1a11, #17120f);
}

.gh-advantage-panel .gh-eyebrow {
  color: #ffab75;
}

.gh-advantage-panel > h2 {
  color: #fff;
}

.gh-advantage-panel > p {
  color: #c7bcb5;
}

.gh-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.gh-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 21px;
  width: 1px;
  background: #edc5ac;
  content: "";
}

.gh-timeline-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 0 0 24px;
}

.gh-timeline-item:last-child {
  padding-bottom: 0;
}

.gh-timeline-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 5px solid var(--gh-soft);
  border-radius: 50%;
  color: #fff;
  background: var(--gh-orange);
  box-shadow: 0 7px 18px rgba(216, 73, 8, 0.2);
  font-size: 10px;
  font-weight: 800;
}

.gh-timeline-item h3,
.gh-advantage-item h3 {
  margin: 2px 0 5px;
  font-size: 16px;
}

.gh-timeline-item p,
.gh-advantage-item p {
  margin: 0;
  color: var(--gh-text);
  font-size: 12px;
  line-height: 1.65;
}

.gh-advantage-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.gh-advantage-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.gh-advantage-item > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #ffab75;
  background: rgba(255, 123, 48, 0.12);
}

.gh-advantage-item svg {
  width: 21px;
  height: 21px;
}

.gh-advantage-item h3 {
  color: #fff;
}

.gh-advantage-item p {
  color: #bfb4ad;
}

.gh-faq {
  background: var(--gh-soft);
}

.gh-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px 18px;
}

.gh-faq-item {
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-faq-item.is-open {
  border-color: #f0aa7d;
  box-shadow: 0 12px 35px rgba(91, 45, 19, 0.08);
}

.gh-faq-question {
  display: flex;
  width: 100%;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px;
  border: 0;
  color: var(--gh-ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.gh-faq-question i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--gh-orange-soft);
}

.gh-faq-question i::before,
.gh-faq-question i::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: var(--gh-orange-dark);
  content: "";
  transition: transform 0.2s ease;
}

.gh-faq-question i::after {
  transform: rotate(90deg);
}

.gh-faq-item.is-open .gh-faq-question i::after {
  transform: rotate(0);
}

.gh-faq-answer {
  padding: 0 19px 19px;
}

.gh-faq-answer p {
  padding-top: 15px;
  margin: 0;
  border-top: 1px solid var(--gh-line);
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.7;
}

.gh-home-blog {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 145, 59, 0.1), transparent 22rem),
    linear-gradient(180deg, #fffdfb, #fff6ee);
}

.gh-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gh-orange-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.gh-section-link::after {
  content: ">";
}

.gh-home-blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gh-home-blog-card {
  overflow: hidden;
  border: 1px solid rgba(133, 69, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(111, 45, 8, 0.08);
}

.gh-home-blog-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gh-home-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.gh-home-blog-body {
  display: grid;
  min-height: 225px;
  padding: 18px 16px 17px;
  align-content: start;
}

.gh-home-blog-meta {
  margin-bottom: 10px;
  color: var(--gh-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-home-blog-body h3 {
  margin: 0 0 10px;
  color: var(--gh-ink);
  font-size: 18px;
  line-height: 1.28;
}

.gh-home-blog-body h3 a {
  text-decoration: none;
}

.gh-home-blog-body p {
  margin: 0 0 16px;
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.68;
}

.gh-home-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gh-orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.gh-home-blog-link::after {
  content: ">";
}

.gh-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #c3440c, #f36b21 58%, #ff8c45);
}

.gh-cta::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.11), transparent 42%);
  content: "";
}

.gh-cta-orb {
  position: absolute;
  top: -190px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.gh-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding-block: 34px;
}

.gh-cta-inner > div:first-child {
  max-width: 750px;
}

.gh-cta-inner > div > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-cta h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.14;
}

.gh-cta p {
  margin: 0;
  color: #ffe6d7;
}

.gh-cta .gh-button-row {
  flex: 0 0 auto;
  margin-top: 0;
}

.gh-button-white {
  color: var(--gh-orange-dark);
  background: #fff;
  box-shadow: 0 13px 30px rgba(86, 30, 5, 0.18);
}

.gh-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.gh-button-outline:hover {
  color: var(--gh-orange-dark);
  background: #fff;
}

.gh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.gh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .gh-brand {
    min-width: 235px;
  }

  .gh-brand-copy strong {
    font-size: 12px;
  }

  .gh-nav > ul {
    gap: 3px;
  }

  .gh-nav li > a {
    padding-inline: 10px;
    font-size: 14px;
  }

  .gh-header-quote {
    padding-inline: 14px;
  }

  .gh-hero-grid {
    gap: 42px;
  }

  .gh-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (max-width: 1024px) {
  body.gh-home,
  body.gh-has-home-nav {
    padding-top: calc(var(--gh-topbar-height, 38px) + var(--gh-header-height, 74px));
  }

  .gh-menu-toggle {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin-left: auto;
  }

  .gh-menu-toggle span {
    width: 21px;
    height: 2px;
    margin: 0;
  }

  .gh-nav-panel {
    position: fixed;
    top: var(--gh-mobile-top, 112px);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: calc(100vh - var(--gh-mobile-top, 112px));
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(243, 107, 33, 0.14);
    margin-left: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 50px rgba(52, 29, 14, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
    backdrop-filter: blur(20px);
  }

  .gh-menu-open .gh-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gh-nav > ul {
    display: grid;
    gap: 8px;
  }

  .gh-nav li {
    border-bottom: 0;
  }

  .gh-nav li > a {
    padding: 14px 14px;
    border: 1px solid var(--gh-line);
    border-radius: 9px;
    font-size: 15px;
    background: #fff;
  }

  .gh-nav li > a::after {
    display: none;
  }

  .gh-dropdown-toggle {
    position: absolute;
    top: 6px;
    right: 7px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    color: #fff;
    border-radius: 9px;
    background: var(--gh-orange);
    cursor: pointer;
  }

  .gh-dropdown {
    position: static;
    display: none;
    width: auto;
    padding: 8px 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gh-has-dropdown.is-open .gh-dropdown {
    display: grid;
    transform: none;
  }

  .gh-dropdown a {
    background: #fff;
    border-left: 2px solid #f3b38c;
    border-radius: 0 8px 8px 0;
  }

  .gh-header-quote {
    width: 100%;
    margin-top: 18px;
  }

  .gh-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .gh-hero-content {
    max-width: 800px;
  }

  .gh-banner-badges {
    grid-template-columns: repeat(2, auto);
    align-self: auto;
    justify-self: start;
    padding-bottom: 0;
  }

  .gh-needs-grid,
  .gh-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-product-grid,
  .gh-solution-grid,
  .gh-strength-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-strength-stats,
  .gh-stat-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .gh-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gh-process-grid {
    grid-template-columns: 1fr;
  }

  .gh-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gh-home-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gh-topbar-inner {
    min-height: auto;
    padding-block: 6px;
    justify-content: flex-end;
  }

  .gh-topbar-benefits {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .gh-topbar .gh-container {
    width: 100%;
    padding-inline: 14px;
  }

  .gh-topbar .gh-language-toggle {
    min-height: 28px;
    max-width: min(210px, calc(100vw - 28px));
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
  }

  .gh-topbar .gh-language-current-label {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .gh-topbar-message,
  .gh-topbar-benefits > span:nth-child(1),
  .gh-topbar-benefits > span:nth-child(2),
  .gh-topbar-benefits > span:nth-child(3) {
    display: none;
  }

  .gh-header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .gh-brand {
    min-width: 0;
  }

  .gh-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .gh-company-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .gh-brand-copy strong {
    max-width: 180px;
    font-size: 11px;
  }

  .gh-brand-copy small {
    font-size: 7px;
  }

  .gh-hero h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .gh-hero {
    background-image:
      linear-gradient(180deg, rgba(124, 40, 4, 0.03), rgba(18, 6, 2, 0.06));
  }

  .gh-hero-photo img {
    object-position: 64% center;
  }

  .gh-hero-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-floating-card-top {
    left: -10px;
  }

  .gh-floating-card-bottom {
    right: -5px;
  }

  .gh-section {
    padding: 75px 0;
  }

  .gh-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .gh-faq-grid {
    grid-template-columns: 1fr;
  }

  .gh-home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-cta .gh-button-row {
    width: 100%;
  }

}

@media (max-width: 540px) {
  .gh-container {
    width: min(calc(100% - 28px), var(--gh-container));
  }

  .gh-brand-copy strong {
    max-width: 170px;
  }

  .gh-brand-copy small {
    display: none;
  }

  .gh-hero-grid {
    padding-block: 58px 70px;
  }

  .gh-hero-content > p {
    font-size: 15px;
  }

  .gh-banner-badges {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .gh-banner-badge {
    min-width: 0;
  }

  .gh-button-row {
    width: 100%;
    flex-direction: column;
  }

  .gh-button {
    width: 100%;
  }

  .gh-hero-image-shell {
    padding: 8px;
    border-radius: 20px;
  }

  .gh-hero-image-shell > img {
    min-height: 360px;
    border-radius: 14px;
  }

  .gh-floating-card {
    padding: 11px;
  }

  .gh-floating-card-top {
    top: 18px;
  }

  .gh-floating-card-top strong {
    font-size: 22px;
  }

  .gh-needs-grid,
  .gh-product-grid,
  .gh-solution-grid,
  .gh-why-grid,
  .gh-home-blog-grid,
  .gh-strength-stats,
  .gh-strength-gallery,
  .gh-stat-strip {
    grid-template-columns: 1fr;
  }

  .gh-stat {
    border-right: 0;
  }

  .gh-process-panel,
  .gh-advantage-panel {
    padding: 30px 22px;
  }

  .gh-strength-card,
  .gh-strength-card img {
    min-height: 300px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .gh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gh-button,
  .gh-product-image img,
  .gh-solution-image img,
  .gh-strength-card img {
    transition: none;
  }
}

/* Guoshun bundled footer styles */

.gsf-footer {
  position: relative;
  overflow: hidden;
  color: #d7bdae;
  background:
    linear-gradient(135deg, rgba(255, 125, 48, 0.06), transparent 36%),
    linear-gradient(120deg, #2a0e05 0%, #451706 52%, #5b210c 100%);
}

.gsf-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9470d, #ff8537 50%, #ffb079);
  content: "";
}

.gsf-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.gsf-glow-one {
  top: -240px;
  left: -190px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 116, 23, 0.16), transparent 68%);
}

.gsf-glow-two {
  right: -210px;
  bottom: -270px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255, 153, 88, 0.055);
}

.gsf-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1240px);
  margin-inline: auto;
}

.gsf-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.9fr 0.95fr 1.25fr;
  gap: 42px;
  align-items: end;
  padding: 74px 0 24px;
}

.gsf-grid > .gsf-column:nth-child(3) {
  align-self: start;
}

.gsf-about,
.gsf-contact {
  display: flex;
  flex-direction: column;
}

.gsf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.gsf-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff944f, #e45614);
  box-shadow: 0 12px 28px rgba(20, 5, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  font-size: 14px;
  font-weight: 900;
}

.gsf-logo-shell {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid rgba(255, 190, 150, 0.25);
  border-radius: 50%;
  background: #fffaf7;
  box-shadow: 0 12px 28px rgba(20, 5, 0, 0.26);
}

.gsf-company-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.gsf-brand-copy {
  display: grid;
  line-height: 1.1;
}

.gsf-brand-copy strong {
  color: #fff7f1;
  font-size: 14px;
  letter-spacing: 0.015em;
}

.gsf-brand-copy small {
  margin-top: 5px;
  color: #c99f88;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.gsf-about p {
  margin: 22px 0;
  color: #c9aa99;
  font-size: 12px;
  line-height: 1.8;
}

.gsf-about-note {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}

.gsf-mini-list {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
}

.gsf-contact ul {
  margin-top: 0;
}

.gsf-mini-list span {
  display: grid;
  gap: 3px;
  padding-left: 13px;
  border-left: 2px solid rgba(255, 106, 32, 0.7);
}

.gsf-mini-list strong {
  color: #fff3eb;
  font-size: 12px;
}

.gsf-mini-list small {
  color: #b99483;
  font-size: 11px;
  line-height: 1.35;
}

.gsf-social-row {
  display: flex;
  justify-content: center;
  margin-top: -6px;
  padding: 0 0 34px;
}

.gsf-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
}

.gsf-socials a {
  display: grid;
  min-width: 66px;
  justify-items: center;
  gap: 8px;
  color: #f1d7c8;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gsf-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.gsf-socials a > svg {
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 190, 150, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gsf-socials span {
  color: #d7bcad;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.gsf-social-instagram svg,
.gsf-social-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gsf-social-youtube .gsf-icon-cutout {
  fill: #3c1507;
}

.gsf-social-whatsapp .gsf-icon-line {
  fill: none;
}

.gsf-socials a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.gsf-socials a:hover > svg {
  border-color: #ff8a42;
  background: #e95e19;
}

.gsf-socials a:focus-visible {
  outline: 2px solid #ffb079;
  outline-offset: 3px;
}

.gsf-social-whatsapp:hover > svg {
  border-color: #31d46f;
  background: #19a856;
}

.gsf-column h3 {
  margin: 4px 0 20px;
  color: #fff3eb;
  font-size: 14px;
}

.gsf-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gsf-column li,
.gsf-column a {
  color: #c9aa99;
  font-size: 12px;
  line-height: 1.55;
}

.gsf-column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.gsf-column a:hover {
  color: #ffac78;
}

.gsf-bottom {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 190, 150, 0.13);
  color: #99725e;
  font-size: 11px;
}

.gsf-bottom > div {
  display: flex;
  gap: 20px;
}

.gsf-bottom a {
  color: #a77c65;
}

.gsf-bottom a:hover {
  color: #ffac78;
}

@media (max-width: 1024px) {
  .gsf-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gsf-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .gsf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gsf-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .gsf-container {
    width: min(calc(100% - 28px), 1240px);
  }

  .gsf-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 28px;
  }

  .gsf-social-row {
    margin-top: 0;
  }

  .gsf-about {
    grid-column: auto;
  }

  .gsf-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

/* Guoshun bundled language styles */

.gh-language {
  position: relative;
  z-index: 120;
}

.gh-language-toggle {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.gh-language-current-flag {
  display: inline-flex;
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  align-items: center;
  overflow: hidden;
  place-items: center;
  line-height: 1;
}

.gh-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 28px));
  max-height: 420px;
  padding: 10px;
  border: 1px solid rgba(70, 42, 25, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(35, 19, 10, 0.18);
  color: #1c1b1a;
  opacity: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.gh-home .gh-language-menu {
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 28px));
  max-height: 420px;
  padding: 10px;
  border: 1px solid rgba(70, 42, 25, 0.12);
  border-radius: 10px;
  color: #1c1b1a;
  background: rgba(255, 255, 255, 0.98);
}

.gh-language.is-open .gh-language-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.gh-home .gh-language.is-open .gh-language-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.gh-language-search-wrap {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 8px;
  background: rgba(255, 255, 255, 0.98);
}

.gh-language-search {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #eadbd0;
  border-radius: 8px;
  outline: none;
  color: #302b27;
  background: #fff;
  font: inherit;
  font-size: 13px;
}

.gh-language-search:focus {
  border-color: #f36b21;
  box-shadow: 0 0 0 3px rgba(243, 107, 33, 0.12);
}

.gh-language-list {
  display: grid;
  gap: 2px;
  overflow: auto;
  overscroll-behavior: contain;
}

.gh-language-option {
  display: grid;
  width: 100%;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border: 0;
  border-radius: 7px;
  color: #302b27;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gh-language-option[hidden] {
  display: none !important;
}

.gh-language-option:hover,
.gh-language-option.is-active {
  color: #cf4810;
  background: #fff1e8;
}

.gh-language-flag {
  display: inline-flex;
  width: 24px;
  height: 16px;
  align-items: center;
  overflow: hidden;
  line-height: 1;
}

.gh-language-flag-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(48, 43, 39, 0.1);
}

.gh-language-country {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gh-language-name {
  color: #7a726c;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.skiptranslate,
#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

body {
  top: 0 !important;
}

@media (max-width: 760px) {
  .gh-language-menu {
    right: -8px;
    width: min(330px, calc(100vw - 20px));
    max-height: 360px;
  }

  .gh-language-current-label {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* WooCommerce controls inside the Guoshun single-product layout. */
.product-single-price {
  margin: 18px 0 4px;
  color: #cf4810;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.product-single-price del {
  margin-right: 8px;
  color: #8a7a71;
  font-size: 16px;
  font-weight: 600;
}

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

.guoshun-wc-cart {
  margin-top: 24px;
}

.guoshun-wc-cart form.cart,
.guoshun-wc-cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.guoshun-wc-cart .quantity input.qty {
  width: 76px;
  height: 50px;
  padding: 8px;
  border: 1px solid #dfd4cc;
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

.guoshun-wc-cart .single_add_to_cart_button {
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid #ed5a12;
  border-radius: 6px;
  color: #fff;
  background: #ed5a12;
  font-weight: 800;
  cursor: pointer;
}

.guoshun-wc-cart .single_add_to_cart_button:hover {
  border-color: #c94008;
  background: #c94008;
}

.guoshun-wc-cart table.variations {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: collapse;
}

.guoshun-wc-cart table.variations th,
.guoshun-wc-cart table.variations td {
  padding: 7px 10px 7px 0;
  border: 0;
  text-align: left;
}

.guoshun-wc-cart table.variations select {
  min-width: 220px;
  min-height: 44px;
  padding: 8px 36px 8px 12px;
  border: 1px solid #dfd4cc;
  border-radius: 6px;
  background: #fff;
}

.guoshun-wc-cart .reset_variations {
  margin-left: 10px;
  color: #cf4810;
  font-size: 13px;
  font-weight: 700;
}

.guoshun-wc-single .product-single-tagline p:last-child,
.product-description-panel .article-content > :last-child {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .guoshun-wc-cart form.cart,
  .guoshun-wc-cart .woocommerce-variation-add-to-cart {
    align-items: stretch;
  }

  .guoshun-wc-cart .single_add_to_cart_button {
    flex: 1;
  }
}

/* Prevent WordPress and page-builder global spacing from separating the header and first hero. */
.gh-topbar,
.gh-header,
.gh-header-inner,
#gh-main,
#gh-main > .gh-hero:first-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.gh-topbar {
  height: 38px;
  padding-block: 0 !important;
}

.gh-topbar-inner {
  height: 38px;
  min-height: 38px;
  padding-block: 0 !important;
}

.gh-header {
  height: 86px;
  padding-block: 0 !important;
}

.gh-header-inner {
  height: 86px;
  min-height: 86px;
  padding-block: 0 !important;
}

#gh-main {
  padding-top: 0 !important;
}

#gh-main > .gh-hero:first-child {
  display: block;
}

@media (max-width: 1024px) {
  .gh-header,
  .gh-header-inner {
    height: 74px;
    min-height: 74px;
  }
}

.guoshun-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: #ed5a12;
  box-shadow: 0 12px 28px rgba(105, 40, 8, 0.28);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  pointer-events: none;
}

.guoshun-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.guoshun-back-to-top:hover,
.guoshun-back-to-top:focus-visible {
  background: #c94008;
}

.guoshun-back-to-top:focus-visible {
  outline: 3px solid rgba(237, 90, 18, 0.28);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .guoshun-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Keep the fixed site bars aligned with the WordPress admin toolbar. */
body.admin-bar .gh-topbar {
  top: 32px;
}

body.admin-bar .gh-header {
  top: calc(32px + var(--gh-topbar-height, 38px));
}

@media (max-width: 782px) {
  body.admin-bar .gh-topbar {
    top: 46px;
  }

  body.admin-bar .gh-header {
    top: calc(46px + var(--gh-topbar-height, 38px));
  }
}

/* WordPress blog archive hardening */
body.blog .section-soft,
body.home .section-soft {
  background: #fff7f0 !important;
}

body.blog .post-grid.blog-list,
body.home .post-grid.blog-list {
  display: grid !important;
  width: min(calc(100% - 40px), 1240px);
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  padding: 70px 0 !important;
  margin: 0 auto !important;
}

body.blog .blog-list .post-card,
body.home .blog-list .post-card {
  display: flex !important;
  overflow: hidden !important;
  height: 450px !important;
  min-height: 450px !important;
  flex-direction: column !important;
  border: 1px solid rgba(133, 69, 31, 0.17) !important;
  border-radius: 8px !important;
  color: #2b1a12 !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(111, 45, 8, 0.1) !important;
}

body.blog .blog-list .post-thumb,
body.home .blog-list .post-thumb {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #f3e7dd !important;
}

body.blog .blog-list .post-thumb img,
body.home .blog-list .post-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.blog .blog-list .post-placeholder,
body.home .blog-list .post-placeholder {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  place-items: center !important;
  color: #c64a00 !important;
  background: linear-gradient(135deg, #fff5ec, #f4ded0) !important;
  font-size: 54px !important;
  font-weight: 900 !important;
}

body.blog .blog-list .post-body,
body.home .blog-list .post-body {
  display: grid !important;
  flex: 1 !important;
  grid-template-rows: 42px 84px 72px 1fr auto !important;
  gap: 12px !important;
  min-height: 0 !important;
  padding: 22px !important;
  color: #2b1a12 !important;
  background: #fff !important;
}

body.blog .blog-list .post-meta,
body.home .blog-list .post-meta {
  display: grid !important;
  align-content: start !important;
  gap: 4px !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #c64a00 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

body.blog .blog-list .post-card h2,
body.home .blog-list .post-card h2 {
  display: -webkit-box !important;
  overflow: hidden !important;
  margin: 0 !important;
  color: #241006 !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

body.blog .blog-list .post-card h2 a,
body.home .blog-list .post-card h2 a {
  color: inherit !important;
  text-decoration: none !important;
}
/* Shared Fluent Forms inquiry panels. */
.gh-form-panel {
  min-width: 0;
  padding: 44px;
  border: 1px solid var(--gh-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(58, 32, 17, 0.08);
}

.gh-form-panel > h2 {
  margin-bottom: 12px;
}

.gh-form-panel > p {
  margin: 0 0 26px;
  color: var(--gh-text);
  line-height: 1.7;
}

.gh-fluent-form,
.guoshun-fluent-form {
  min-width: 0;
}

.gh-fluent-form .ff-el-group,
.guoshun-fluent-form .ff-el-group {
  margin-bottom: 16px;
}

.gh-fluent-form .ff-el-input--label label,
.guoshun-fluent-form .ff-el-input--label label {
  color: #2d2019;
  font-size: 13px;
  font-weight: 800;
}

.gh-fluent-form .ff-el-form-control,
.guoshun-fluent-form .ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9cec7;
  border-radius: 6px;
  color: #2d2019;
  background: #fffdfb;
  box-shadow: none;
}

.gh-fluent-form textarea.ff-el-form-control,
.guoshun-fluent-form textarea.ff-el-form-control {
  min-height: 122px;
  resize: vertical;
}

.gh-fluent-form .ff-el-form-control:focus,
.guoshun-fluent-form .ff-el-form-control:focus {
  border-color: var(--gh-orange);
  box-shadow: 0 0 0 3px rgba(240, 88, 22, 0.12);
}

.gh-fluent-form .ff-btn-submit,
.guoshun-fluent-form .ff-btn-submit {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--gh-orange);
  font-weight: 800;
  cursor: pointer;
}

.gh-static-form-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gh-static-form-preview label {
  display: grid;
  gap: 7px;
  color: #2d2019;
  font-size: 13px;
  font-weight: 800;
}

.gh-static-form-preview label:nth-of-type(4),
.gh-static-form-preview button {
  grid-column: 1 / -1;
}

.gh-static-form-preview input,
.gh-static-form-preview textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9cec7;
  border-radius: 6px;
  color: #2d2019;
  background: #fffdfb;
  font: inherit;
  font-weight: 400;
}

.gh-static-form-preview textarea {
  min-height: 122px;
  resize: vertical;
}

.gh-static-form-preview button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--gh-orange);
  font-weight: 800;
}

@media (max-width: 640px) {
  .gh-form-panel {
    padding: 28px 20px;
  }

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

  .gh-static-form-preview label:nth-of-type(4),
  .gh-static-form-preview button {
    grid-column: auto;
  }
}


body.blog .blog-list .post-card p,
body.home .blog-list .post-card p {
  display: -webkit-box !important;
  overflow: hidden !important;
  margin: 0 !important;
  color: #7d6a60 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

/* Liquid glass visual system. */
:root {
  --glass-surface: rgba(255, 255, 255, 0.68);
  --glass-surface-strong: rgba(255, 255, 255, 0.82);
  --glass-line: rgba(255, 255, 255, 0.9);
  --glass-edge: rgba(204, 218, 226, 0.72);
  --glass-shadow: 0 16px 40px rgba(34, 54, 65, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  --glass-shadow-hover: 0 22px 54px rgba(34, 54, 65, 0.18), inset 0 1px 0 #fff;
}

body {
  background-color: #edf3f5;
  background-attachment: fixed;
}

.preview-page,
.site-main,
.gs-about-page {
  background-color: rgba(248, 251, 252, 0.64);
}

.gh-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 10px 32px rgba(38, 55, 64, 0.1), inset 0 -1px 0 rgba(197, 214, 222, 0.46);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.gh-nav li > a,
.category-nav a,
.product-category-tabs a {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}

.gh-nav li > a,
.gh-nav li > a:hover,
.gh-nav li > a:focus,
.gh-nav li > a.is-active {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.gh-nav li > a:hover,
.category-nav a:hover,
.product-category-tabs a:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(54, 72, 82, 0.12), inset 0 1px 0 #fff;
}

.category-nav a:hover,
.category-nav a:focus-visible,
.product-category-tabs a:hover,
.product-category-tabs a:focus-visible {
  color: #c94708 !important;
  border-color: rgba(231, 86, 20, 0.58) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.product-card,
.sku-card,
.product-detail-card,
.product-spec-card,
.related-product-card,
.value-card,
.post-card,
.contact-card,
.gh-info-card,
.gh-product-card,
.gh-solution-card,
.gh-strength-card,
.gh-home-blog-card,
.gh-process-panel,
.gh-advantage-panel,
.gh-form-panel,
.gs-about-category-card,
.gs-about-video-card,
.gs-customer-fixed-card,
.gs-qr-card,
.gs-map-card,
.gs-service-grid > div,
.gs-contact-card,
.gs-warehouse-feature,
.gs-warehouse-stack article {
  border: 1px solid var(--glass-line) !important;
  background-color: var(--glass-surface) !important;
  box-shadow: var(--glass-shadow) !important;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.product-card:hover,
.sku-card:hover,
.product-detail-card:hover,
.related-product-card:hover,
.post-card:hover,
.gh-info-card:hover,
.gh-product-card:hover,
.gh-solution-card:hover,
.gs-about-category-card:hover {
  border-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--glass-shadow-hover) !important;
  transform: translateY(-4px);
}

.product-card-body,
.product-detail-card-body,
.post-card .post-body,
.gh-product-card > div,
.gh-solution-card > div,
.gh-home-blog-card > div {
  background-color: rgba(255, 255, 255, 0.48) !important;
}

.gh-fluent-form .ff-el-form-control,
.guoshun-fluent-form .ff-el-form-control,
.gh-static-form-preview input,
.gh-static-form-preview textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(44, 62, 72, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gh-button,
.gh-header-quote,
.product-inquiry-button,
.product-outline-button,
.gs-text-button,
.gh-fluent-form .ff-btn-submit,
.guoshun-fluent-form .ff-btn-submit,
.gh-static-form-preview button {
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  box-shadow: 0 10px 24px rgba(208, 77, 14, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.gh-button:hover,
.gh-header-quote:hover,
.product-inquiry-button:hover,
.product-outline-button:hover,
.gs-text-button:hover {
  box-shadow: 0 15px 32px rgba(208, 77, 14, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  transform: translateY(-2px);
}

.section-soft,
.gh-section-soft,
.gs-about-soft {
  background-color: rgba(235, 243, 246, 0.52) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .gh-header,
  .product-card,
  .sku-card,
  .product-detail-card,
  .post-card,
  .contact-card,
  .gh-info-card,
  .gh-product-card,
  .gh-solution-card,
  .gs-about-category-card,
  .gs-qr-card,
  .gh-form-panel {
    background-color: rgba(255, 255, 255, 0.94) !important;
  }
}

body.blog .blog-list .text-link,
body.home .blog-list .text-link {
  align-self: end !important;
  color: #c64a00 !important;
  font-weight: 800 !important;
}

body.blog .blog-list .post-card,
body.home .blog-list .post-card {
  height: 580px !important;
  min-height: 580px !important;
}

body.blog .blog-list .post-placeholder,
body.home .blog-list .post-placeholder {
  color: #a84d22 !important;
  background: #d9ecff !important;
}

body.blog .blog-list .post-category-label,
body.home .blog-list .post-category-label {
  color: #b64e20;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  body.blog .post-grid.blog-list,
  body.home .post-grid.blog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.blog .post-grid.blog-list,
  body.home .post-grid.blog-list {
    width: min(calc(100% - 28px), 1240px);
    grid-template-columns: 1fr !important;
    padding: 44px 0 !important;
  }

  body.blog .blog-list .post-card,
  body.home .blog-list .post-card {
    height: auto !important;
    min-height: 540px !important;
  }
}
