:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #fff7eb;
  --surface-strong: #1f1808;
  --text: #161616;
  --text-soft: #6e6e73;
  --line: rgba(20, 20, 20, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #ff9e22;
  --accent-strong: #ff6f11;
  --accent-soft: rgba(255, 158, 34, 0.12);
  --blue-soft: #eff6ff;
  --blue-line: #d8e9ff;
  --shadow-soft: 0 18px 42px rgba(255, 159, 34, 0.12);
  --shadow-card: 0 18px 54px rgba(17, 17, 17, 0.08);
  --shadow-dark: 0 26px 72px rgba(0, 0, 0, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

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

button {
  cursor: pointer;
}

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

.page {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-brand img {
  width: 174px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.site-header__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4f4f54;
  font-size: 13px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 50%;
  color: #5f5f67;
  font-size: 12px;
  font-weight: 700;
}

.site-main {
  min-height: calc(100vh - 460px);
}

.section {
  padding: 80px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ffb84d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 158, 34, 0));
}

.hero-subpage {
  position: relative;
  padding: 88px 0 56px;
}

.hero-subpage--light {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.98)),
    url("../images/contact/Frame 2087326541.png") center top / cover no-repeat;
}

.hero-subpage--question {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 255, 255, 0.98)),
    url("../images/question/常见问题.png") center top / cover no-repeat;
}

.hero-subpage__inner {
  position: relative;
  text-align: center;
}

.hero-subpage__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-subpage__desc {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.hero-subpage__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  width: min(680px, 100%);
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-card);
}

.hero-subpage__search input {
  height: 56px;
  border: 0;
  outline: 0;
  padding: 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb640, var(--accent-strong));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(255, 126, 17, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.btn--ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(255, 158, 34, 0.5);
  box-shadow: none;
}

.btn--inline {
  height: 56px;
  border-radius: 0;
  box-shadow: none;
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.panel--rounded {
  border-radius: var(--radius-lg);
}

.subgrid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sidebar-card,
.content-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.sidebar-card {
  padding: 22px;
}

.content-card {
  padding: 26px;
}

.company-banner {
  overflow: hidden;
  border-radius: 0;
}

.company-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.breadcrumb {
  color: #b3a58f;
  font-size: 12px;
  padding: 18px 0 14px;
}

.tag-list,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
}

.meta-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 12px;
}

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

.info-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.info-block:last-child {
  border-bottom: 0;
}

.info-block h3,
.content-card__header h2 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.3;
}

.sidebar-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.sidebar-info dt {
  color: #9c8b74;
}

.sidebar-links a {
  display: block;
  padding: 8px 0;
  color: #434349;
  font-size: 14px;
}

.sidebar-links a:hover,
.sidebar-links a.is-current {
  color: var(--accent);
}

.content-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.content-card__more {
  color: #9b8b76;
  font-size: 13px;
  font-weight: 600;
}

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

.product-card {
  padding: 16px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card__image {
  display: grid;
  place-items: center;
  min-height: 160px;
  background: linear-gradient(180deg, #fffdfa, #fff5e7);
}

.product-card__image img {
  max-height: 136px;
  object-fit: contain;
}

.product-card h3 {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.7;
}

.supplier-showcase {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.supplier-card {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.98)),
    url("../images/caigou/Frame 2087326518.png") center / cover no-repeat;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-card);
}

.supplier-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.supplier-card__head strong {
  display: block;
  font-size: 16px;
}

.supplier-card__head span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
}

.supplier-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  color: #ff7f28;
  font-weight: 800;
}

.supplier-card .btn {
  width: 100%;
  margin-top: 16px;
}

.showcase-products {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(255, 255, 255, 0.98)),
    url("../images/caigou/Frame 2087326500.png") center / cover no-repeat;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-card);
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #fff5e9;
}

.tabs button {
  min-width: 108px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7e7162;
  font-size: 14px;
  font-weight: 700;
}

.tabs button.is-active {
  background: linear-gradient(90deg, #ffb640, var(--accent-strong));
  color: #fff;
}

.tab-panel[hidden] {
  display: none;
}

.procurement-hero {
  position: relative;
  padding: 26px 0 48px;
}

.procurement-hero__banner {
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 29, 0.82), rgba(5, 8, 32, 0.9)),
    url("../images/caigou/新轮播 (4) 1.png") center / cover no-repeat;
}

.procurement-hero__banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  min-height: 360px;
  padding: 42px 50px;
  color: #fff;
}

.procurement-hero__banner h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.procurement-hero__banner p {
  margin: 22px 0 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.85;
}

.procurement-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.procurement-hero__visual img {
  width: min(100%, 560px);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.quick-card {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.quick-card__media {
  overflow: hidden;
  border-radius: 14px;
}

.quick-card__media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.quick-card h3 {
  margin: 14px 0 0;
  font-size: 17px;
}

.quick-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.filter-bar__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(460px, 100%);
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
}

.filter-bar__search input {
  height: 48px;
  border: 0;
  padding: 0 16px;
  outline: 0;
}

.filter-bar__search button {
  width: 120px;
  height: 48px;
  border-radius: 0;
  box-shadow: none;
}

.news-layout {
  position: relative;
  padding-top: 24px;
}

.news-orb {
  position: absolute;
  top: -48px;
  left: 50%;
  width: min(720px, 84vw);
  transform: translateX(-50%);
  opacity: 0.95;
  pointer-events: none;
}

.news-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.news-feature {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.news-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.news-feature__body,
.news-item__body {
  padding: 18px 22px;
}

.news-feature__body h3,
.news-item__body h3 {
  margin: 0;
  font-size: 22px;
}

.news-feature__body p,
.news-item__body p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  color: #9a8b77;
  font-size: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.news-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.pager a,
.pager button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 50%;
  background: #fff;
  color: #5f5f65;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pager a.is-active {
  border-color: rgba(255, 158, 34, 0.5);
  color: var(--accent);
}

.case-feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0.97), rgba(255, 255, 255, 0.98)),
    url("../images/case/Frame 2087326579.png") center top / cover no-repeat;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.case-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 44px;
}

.case-feature__media img {
  width: 100%;
  border-radius: 0;
}

.case-feature__content h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
}

.case-feature__content p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.arrow-btn--prev {
  left: 16px;
}

.arrow-btn--next {
  right: 16px;
}

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

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-card__body {
  padding: 18px 20px 22px;
}

.case-card__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.case-card__body p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

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

.faq-card {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.faq-card__art {
  overflow: hidden;
  border-radius: 14px;
  background: #f7fbff;
}

.faq-card__art img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.faq-card h3 {
  margin: 14px 0 0;
  font-size: 17px;
}

.faq-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.85;
}

.contact-map {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(255, 255, 255, 0.96)),
    url("../images/contact/Frame 2087326540.png") center / cover no-repeat;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.contact-map__surface {
  position: relative;
  min-height: 340px;
  background:
    linear-gradient(135deg, rgba(255, 224, 177, 0.4), rgba(219, 236, 255, 0.4)),
    radial-gradient(circle at 20% 30%, rgba(255, 184, 77, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(245, 250, 255, 0.9));
}

.contact-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
}

.contact-map__marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  color: #3a3a3f;
  font-size: 13px;
  font-weight: 700;
}

.contact-map__marker::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffba4a, var(--accent-strong));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  margin-top: 32px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.contact-item img {
  width: 56px;
  height: 56px;
}

.contact-item h3 {
  margin: 0;
  font-size: 16px;
}

.contact-item p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.8;
}

.contact-form {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.contact-form h2 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 500;
  color: #6a6a70;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: #9a8b77;
  font-size: 12px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
  outline: 0;
  padding: 10px 2px 12px;
  background: transparent;
}

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

.address-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0 34px;
}

.address-tabs button {
  min-width: 80px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #6d6255;
  font-size: 13px;
  font-weight: 700;
}

.address-tabs button.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #ffb640, var(--accent-strong));
  color: #fff;
}

.address-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(255, 255, 255, 0.98)),
    url("../images/contact/Frame 2087326541.png") center / cover no-repeat;
  border: 1px solid rgba(20, 20, 20, 0.05);
  box-shadow: var(--shadow-card);
}

.address-panel[hidden] {
  display: none;
}

.address-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.address-panel h3 {
  margin: 0;
  font-size: 26px;
}

.address-panel dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  margin: 16px 0 0;
  color: var(--text-soft);
}

.address-panel dt {
  color: #9a8b77;
}

.company-sections {
  display: grid;
  gap: 22px;
}

.article-copy {
  color: #45454a;
  font-size: 14px;
  line-height: 1.95;
}

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

.category-card {
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(20, 20, 20, 0.06);
  background: #fff;
}

.category-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.category-card h3 {
  margin: 0;
  font-size: 15px;
}

.company-meta-table,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.company-meta-table td,
.spec-table td {
  padding: 10px 12px;
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.company-meta-table td:first-child,
.spec-table td:first-child {
  width: 140px;
  color: #9b8b77;
  background: #fff9f1;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
}

.gallery__thumbs {
  display: grid;
  gap: 10px;
}

.gallery__thumbs button {
  width: 70px;
  height: 70px;
  padding: 8px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
}

.gallery__thumbs button.is-active {
  border-color: rgba(255, 158, 34, 0.55);
}

.gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery__main {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  background: #fff;
}

.gallery__main img {
  max-height: 280px;
  object-fit: contain;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
}

.price-row strong {
  color: var(--accent-strong);
  font-size: 28px;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 13px;
}

.form-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow-card);
}

.site-footer {
  margin-top: 0;
  color: #f6efe2;
  background: #211809;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 1fr;
  gap: 40px;
  padding: 52px 0;
}

.site-footer__brand img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin: 16px 0 0;
  color: rgba(246, 239, 226, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__links h3,
.site-footer__social h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 28px;
}

.footer-link-grid a {
  color: rgba(246, 239, 226, 0.72);
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.site-footer__copyright {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(246, 239, 226, 0.66);
  font-size: 12px;
}


