/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
  font-family: modam;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/ModamFaNumWeb-Light.woff2") format("woff2");
}

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

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

@font-face {
  font-family: modam;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ModamFaNumWeb-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: modam;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ModamFaNumWeb-Bold.woff2") format("woff2");
}

@font-face {
  font-family: modam;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ModamFaNumWeb-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: modam;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/ModamFaNumWeb-Black.woff2") format("woff2");
}

/* ==========================================================================
   Table of Contents
   ==========================================================================
   1.  Fonts
   2.  Design Tokens (:root)
   3.  Reset & Base
   4.  Shared UI
   5.  Header & Navigation
   6.  Home — Hero
   7.  Home — Brands
   8.  Home — Consult
   9.  Home — Products
   10. Home — About
   11. Home — Blog
   12. Blog Archive
   13. Promo
   14. Footer
   15. Responsive — Site
   16. Single Post
   17. Comments
   18. Single Product
   19. Single Product — Rating
   20. Product Archive
   21. Sibling Categories (cpdav)
   22. Search
   23. 404
   24. Accessibility
   ========================================================================== */

/* ==========================================================================
   Design Tokens (:root)
   ========================================================================== */

:root {
  --red: #971c20;
  --red-dark: #6f1115;
  --red-deep: #721014;
  --gold: #b99a7a;
  --gold-dark: #927254;
  --ink: #171717;
  --text: #2a211f;
  --muted: #737373;
  --line: #ece9e5;
  --white: #fff;
  --container: 1400px;
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 22px;
  --radius-xl: 25px;
  --shadow-card: 0 12px 30px rgba(54, 36, 28, 0.08);
  --shadow-pop: 0 24px 65px rgba(35, 18, 12, 0.15);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: modam, Tahoma, sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

body.is-locked {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal;
}

.is-drawer .sheet-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(25, 12, 8, 0.48);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s;
}

.is-drawer.is-open .sheet-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.is-drawer .sheet {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 95;
  width: min(92vw, 430px);
  height: 100dvh;
  overflow: auto;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.3s;
}

.is-drawer.is-open .sheet {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.is-drawer .sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 18px;
  background: linear-gradient(100deg, var(--red-deep), var(--red));
  color: var(--white);
}

.is-drawer .sheet-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 901px) {
  .main-navigation.is-drawer .sheet {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .main-navigation.is-drawer .sheet-backdrop,
  .main-navigation.is-drawer .sheet-head {
    display: none;
  }
}

@media (min-width: 1025px) {
  .product-archive-sidebar.is-drawer .sheet {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    height: auto;
    overflow: visible;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .product-archive-sidebar.is-drawer .sheet-backdrop,
  .product-archive-sidebar.is-drawer .sheet-head {
    display: none;
  }
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

/* ==========================================================================
   Shared UI
   ========================================================================== */

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

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

.section-head__titles {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.section-head h2,
.brand-panel__head h2,
.consult-head h2 {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.3;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.link-more svg {
  width: 8px;
  height: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.btn-inquiry {
  justify-self: end;
  min-height: 52px;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.btn-inquiry svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-inquiry:hover {
  background: var(--gold);
}

.btn-product {
  width: 100%;
  min-height: 43px;
  margin-top: auto;
  padding: 9px 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

.btn-product svg {
  width: 7px;
  height: 12px;
  fill: currentColor;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  z-index: 60;
}

body.admin-bar .site-header {
  top: 42px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 56px;
  }
}

.header-bar {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 78px;
  padding: 0 10px;
  overflow: visible;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(35, 18, 12, 0.06);
}

.header-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("https://chinpars.com/wp-content/uploads/2026/06/dk-icon.png") center / 1% auto repeat;
  opacity: 0.08;
  pointer-events: none;
}

.header-bar > * {
  position: relative;
  z-index: 1;
}

.site-logo {
  justify-self: start;
  max-width: 150px;
}

.site-logo img {
  width: 100%;
  max-width: 150px;
}

.main-navigation {
  position: relative;
  justify-self: center;
  align-self: stretch;
  display: flex;
  align-items: center;
  z-index: 50;
}

.menu-toggle,
.sheet-backdrop,
.sheet-head,
.menu-top svg {
  display: none;
}

.menu-bar .icon-car {
  display: block;
  width: 19px;
  height: 19px;
}

.menu-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  transition: 0.22s;
}

.menu-top i {
  width: 6px;
  height: 6px;
  margin-top: -2px;
  margin-right: 3px;
  border-left: 1.7px solid;
  border-bottom: 1.7px solid;
  transform: rotate(-45deg);
  transition: 0.2s;
}

.menu-top:hover,
.menu-top:focus,
.menu-top.is-active {
  color: var(--red);
  background: #f1f1f1;
}

.menu-top.is-active i {
  margin-top: 3px;
  transform: rotate(135deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 50%;
  width: min(1180px, calc(100vw - 30px));
  transform: translateX(50%);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(151, 28, 32, 0.1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-pop);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: 0 -8px;
  transition: opacity 0.2s, translate 0.2s, visibility 0.2s;
}

.main-navigation.is-mega-open::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 8px;
}

.main-navigation.is-mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: 0 0;
}

.mega-panel {
  display: none;
}

.mega-panel.is-open {
  display: block;
}

.mega-panel__head {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, #fbf7f4);
}

.mega-panel__head > div {
  line-height: 1.35;
}

.mega-panel__head span {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.mega-panel__head small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.mega-panel__head > a {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.mega-car-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 390px;
  height: min(520px, 68vh);
}

.mega-brands-wrap {
  position: relative;
  background: #f7f4f1;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.mega-brands {
  height: 100%;
  padding: 12px 10px 58px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.mega-brand {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #4b4744;
  font-size: 13px;
  font-weight: 600;
}

.mega-brand b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red);
}

.mega-brand b svg {
  width: 15px;
  height: 15px;
}

.mega-brand:hover {
  background: var(--white);
  color: var(--red);
}

.mega-brand.is-active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 7px 18px rgba(151, 28, 32, 0.2);
}

.mega-brand.is-active b {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.mega-scroll-hint {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 9px;
  transform: translateX(50%);
  width: 156px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(151, 28, 32, 0.22);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(151, 28, 32, 0.16), rgba(185, 154, 122, 0.22));
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  animation: hint-bob 1.5s ease-in-out infinite;
}

.mega-scroll-hint svg {
  width: 19px;
  height: 19px;
}

.mega-scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes hint-bob {
  50% { transform: translate(50%, 3px); }
}

.mega-cars {
  height: 100%;
  padding: 22px 24px 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-car-group {
  display: none;
}

.mega-car-group.is-active {
  display: block;
}

.mega-mobile-brand {
  display: none;
}

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

.car-card {
  display: block;
  min-width: 0;
  padding: 7px 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: 0.2s;
}

.car-card:hover {
  border-color: rgba(151, 28, 32, 0.35);
  box-shadow: 0 12px 24px rgba(60, 30, 20, 0.08);
  transform: translateY(-3px);
}

.car-card__photo {
  position: relative;
  height: 100px;
  display: flex;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8f5f2, #eee8e2);
  overflow: hidden;
}

.car-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.car-card strong {
  display: block;
  margin: 9px 5px 1px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.car-card:hover strong {
  color: var(--red);
}

.car-card small {
  display: block;
  margin: 0 5px;
  color: var(--muted);
  font-size: 10px;
}

.mega-all-brand {
  height: 42px;
  margin-top: 16px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  background: #f8f2ef;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.mega-all-brand span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(151, 28, 32, 0.09);
}

.mega-all-brand svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.mega-all-brand:hover {
  background: var(--red);
  color: var(--white);
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: #f8f6f4;
}

.part-box {
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 6px 20px rgba(40, 20, 12, 0.035);
}

.part-box__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.part-box__head svg {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  padding: 7px;
  border-radius: 8px;
  background: var(--red);
  fill: var(--white);
  color: var(--white);
}

.part-box__head h3 {
  font-size: 14px;
  font-weight: 600;
}

.part-box ul {
  padding-top: 8px;
}

.part-box li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 5px;
  color: #555;
  font-size: 12px;
  border-radius: 7px;
}

.part-box li a:hover {
  background: #faf4f1;
  color: var(--red);
}

.part-box li span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f2efec;
  color: #766b64;
}

.part-box li svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Home — Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  padding: 140px 20px 80px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://chinpars.com/wp-content/uploads/2026/06/banner-1.webp") center / cover no-repeat;
}

.hero__inner {
  width: min(100%, 620px);
}

.hero h1 {
  margin-bottom: 25px;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.15;
}

.hero__subtitle {
  margin-bottom: 28px;
  font-size: 23px;
  font-weight: 300;
}

.search-form {
  position: relative;
  z-index: 8;
  margin: 0;
}

.search-field {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 6px 7px 6px 6px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(185, 154, 122, 0.32);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(35, 24, 24, 0.055);
}

.search-form:focus-within .search-field {
  border-color: rgba(151, 28, 32, 0.42);
  box-shadow: 0 12px 30px rgba(151, 28, 32, 0.09), 0 0 0 3px rgba(151, 28, 32, 0.045);
}

.search-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--red);
  background: linear-gradient(145deg, rgba(151, 28, 32, 0.08), rgba(185, 154, 122, 0.12));
}

.search-icon svg {
  width: 20px;
  height: 20px;
}

.search-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

.search-input::placeholder {
  color: #9a9391;
}

.search-input::-webkit-search-cancel-button {
  display: none;
}

.search-clear {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #9a9391;
}

.search-clear[hidden] {
  display: none;
}

.search-clear svg,
.search-submit svg {
  width: 16px;
  height: 16px;
}

.search-submit svg {
  transform: rotate(180deg);
}

.search-submit {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 7px 16px rgba(151, 28, 32, 0.17);
}

.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 8;
  overflow: hidden;
  border: 1px solid rgba(185, 154, 122, 0.28);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(35, 18, 12, 0.14);
  text-align: right;
}

.search-suggest__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 88px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.search-suggest__loading[hidden] {
  display: none;
}

.search-suggest__spinner {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(151, 28, 32, 0.16);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: search-spin 0.7s linear infinite;
}

@keyframes search-spin {
  to {
    transform: rotate(360deg);
  }
}

.search-form.is-loading .search-icon {
  color: var(--red);
}

.search-suggest__status {
  margin: 0;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.search-suggest__list {
  margin: 0;
  max-height: min(52vh, 380px);
  padding: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(151, 28, 32, 0.35) transparent;
}

.search-suggest__list:empty {
  display: none;
}

.search-suggest__list::-webkit-scrollbar {
  width: 6px;
}

.search-suggest__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(151, 28, 32, 0.28);
}

.search-suggest__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
}

.search-suggest__list a:hover {
  background: #faf6f2;
}

.search-suggest__list img {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  background: #f4f1ee;
}

.search-suggest__list span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.search-suggest__list strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggest__list small {
  color: var(--muted);
  font-size: 12px;
}

.search-suggest__more {
  display: block;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.search-suggest__more[hidden] {
  display: none;
}

.search-suggest__more:hover {
  background: #faf6f2;
}

.search-form--quiet {
  z-index: 7;
}

.search-form--quiet .search-field {
  min-height: 42px;
  padding: 3px 4px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.search-form--quiet:focus-within .search-field {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.search-form--quiet .search-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.search-form--quiet .search-icon svg {
  width: 17px;
  height: 17px;
}

.search-form--quiet:focus-within .search-icon {
  color: var(--red);
}

.search-form--quiet .search-input {
  height: 34px;
  padding: 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.search-form--quiet .search-input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.search-form--quiet:focus-within .search-input {
  color: var(--text);
}

.search-form--quiet:focus-within .search-input::placeholder {
  color: #9a9391;
}

.search-form--quiet .search-clear {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.search-form--quiet:focus-within .search-clear {
  color: #9a9391;
}

.search-form--quiet .search-submit span {
  display: none;
}

.search-form--quiet .search-submit {
  height: 32px;
  padding: 0 8px;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.78);
}

.search-form--quiet:focus-within .search-submit {
  color: var(--red);
}

.search-form.is-suggest-open,
.search-form.is-loading {
  z-index: 35;
}

.site-header:has(.main-navigation.is-open) {
  z-index: 120;
}

/* ==========================================================================
   Home — Brands
   ========================================================================== */

.brand-section {
  position: relative;
  z-index: 2;
  margin-top: -120px;
}

.brand-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 34px 38px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(185, 154, 122, 0.2), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(151, 28, 32, 0.1), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #fff 48%, #fbf6ef 100%);
  box-shadow: 0 22px 60px rgba(65, 42, 31, 0.1);
}

.brand-panel::after {
  content: "";
  position: absolute;
  right: 40px;
  left: 40px;
  bottom: 0;
  height: 5px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.brand-panel__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.brand-panel__head .section-kicker {
  font-size: 23px;
  font-weight: 700;
}

.brand-panel__head h2 {
  position: relative;
  color: var(--red);
  font-size: 38px;
  font-weight: 800;
}

.brand-panel__head h2::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -12px;
  width: 78px;
  height: 4px;
  border-radius: 50px;
  transform: translateX(50%);
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.brand-panel__note {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 18px;
  padding: 10px 18px;
  border: 1px solid rgba(185, 154, 122, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #6b5a50;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(65, 42, 31, 0.06);
}

.brand-grid-wrap {
  position: relative;
}

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

.slider__arrow,
.brand-grid__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 48px;
  border: 1px solid var(--red);
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(151, 28, 32, 0.32);
  transform: translateY(-50%);
  pointer-events: auto;
}

.slider__arrow:active,
.brand-grid__arrow:active {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.slider__arrow:disabled,
.brand-grid__arrow:disabled {
  border-color: #cfc8c2;
  background: #ded8d2;
  color: #8a837c;
  box-shadow: none;
  cursor: default;
}

.slider__arrow svg,
.brand-grid__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
}

.brand-grid__arrow {
  display: none;
}

.brand-card {
  position: relative;
  isolation: isolate;
  height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px 14px;
  overflow: hidden;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.94));
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(151, 28, 32, 0.14), transparent 42%),
    radial-gradient(circle at bottom left, rgba(185, 154, 122, 0.22), transparent 45%);
  transition: opacity 0.25s;
}

.brand-card:hover {
  border-color: rgba(151, 28, 32, 0.38);
  box-shadow: 0 18px 38px rgba(54, 36, 28, 0.16);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card__media,
.brand-card__title {
  position: relative;
  z-index: 1;
}

.brand-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
}

.brand-card__media img {
  width: auto;
  height: auto;
  max-width: 165px;
  max-height: 148px;
  object-fit: contain;
  transition: transform 0.25s, filter 0.25s;
}

.brand-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.08);
}

.brand-card__title {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.brand-card:hover .brand-card__title {
  color: var(--red);
}

/* ==========================================================================
   Home — Consult
   ========================================================================== */

.consult-section {
  padding: 70px 0 40px;
}

.consult-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.consult-head .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.consult-head .eyebrow::before,
.consult-head .eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.consult-head p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 200;
}

@media (min-width: 1025px) {
  .consult-head__next {
    display: block;
  }
}

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

.consult-card {
  --c: #cf1c20;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 8px;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 4px 4px 5px -3px rgba(0, 0, 0, 0.05);
  color: var(--c);
  font-size: 14px;
  transition: 0.2s;
}

.consult-card--whatsapp { --c: #25cc64; }
.consult-card--telegram { --c: #27a3e3; }
.consult-card--bale { --c: #0ac496; }

.consult-card__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
}

.consult-card__icon svg {
  width: 22px;
  height: 22px;
}

.consult-card:hover {
  background: color-mix(in srgb, var(--c) 8%, transparent);
  border-color: var(--c);
}

/* ==========================================================================
   Home — Products
   ========================================================================== */

.products-wrap {
  padding: 100px 0 40px;
}

.product-section {
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--gold) 17%, transparent);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.product-section + .product-section {
  margin-top: 100px;
}

.slider {
  position: relative;
}

.slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  overflow-anchor: none;
  overscroll-behavior-x: contain;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider__viewport::-webkit-scrollbar {
  display: none;
}

.slider__track {
  display: flex;
  gap: 10px;
}

.slider__track > .product-card {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.slider__arrow--next { left: 6px; }
.slider__arrow--prev { right: 6px; }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 13px 13px 16px;
  overflow: hidden;
  border: 1px solid rgba(185, 154, 122, 0.3);
  border-radius: 19px;
  background: linear-gradient(155deg, #fff 70%, #faf4ee);
  box-shadow: 0 8px 24px rgba(55, 31, 25, 0.065);
}

.product-card::after {
  content: "";
  position: absolute;
  left: -65px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(185, 154, 122, 0.09);
}

.product-card__media {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 16px;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.product-card__title {
  min-height: 57px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card .product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  margin: 12px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(151, 28, 32, 0.065), rgba(185, 154, 122, 0.11));
  color: var(--red);
}

.product-card .product-price__label {
  padding: 3px 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #786b64;
  font-size: 10px;
  font-weight: 700;
}

.product-card .product-price__value {
  font-size: 15px;
  font-weight: 800;
}

.product-price__value small {
  margin-right: 5px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.product-card .product-price__value .korean-price,
.product-card .product-price__value .chinese-price,
.product-card .product-price__value .woocommerce-Price-amount,
.product-card .product-price__value bdi,
.product-summary .product-price__value .korean-price,
.product-summary .product-price__value .chinese-price,
.product-summary .product-price__value .woocommerce-Price-amount,
.product-summary .product-price__value bdi {
  font: inherit;
  color: inherit;
}

.product-card .product-price__value .korean-price__before:empty,
.product-card .product-price__value .korean-price__after:empty,
.product-card .product-price__value .chinese-price__before:empty,
.product-card .product-price__value .chinese-price__after:empty,
.product-summary .product-price__value .korean-price__before:empty,
.product-summary .product-price__value .korean-price__after:empty,
.product-summary .product-price__value .chinese-price__before:empty,
.product-summary .product-price__value .chinese-price__after:empty {
  display: none;
}

.product-inquire {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  margin: 12px 0 12px;
  padding: 7px 11px;
  border: 1px solid rgba(151, 28, 32, 0.13);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(151, 28, 32, 0.055), rgba(185, 154, 122, 0.1));
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
}

.product-inquire__icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(151, 28, 32, 0.14);
  border-radius: 50%;
  background: var(--white);
}

.product-inquire svg {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   Home — About
   ========================================================================== */

.about-section {
  padding: 20px 0 10px;
}

.about-box {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.33fr 1fr;
  align-items: center;
  min-height: 532px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background-color: var(--red);
  color: var(--white);
}

.about-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://chinpars.com/wp-content/uploads/2026/06/pngtree-lines-seamless-abstract-pattern-vector-png-image_6698976.png") center / auto repeat;
  opacity: 0.5;
  pointer-events: none;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.about-visual img {
  width: 100%;
}

.about-copy {
  padding: 40px 40px 40px 90px;
}

.about-mark {
  width: 5%;
  margin-bottom: 8px;
}

.about-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0;
  padding: 15px 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 300;
}

.about-copy .eyebrow::before,
.about-copy .eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.about-copy h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
}

.about-copy > p:last-of-type {
  margin-bottom: 20px;
  font-weight: 200;
  text-align: justify;
}

.about-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 9px 16px;
  border: 1px solid #eee;
  border-radius: 14px;
  background: var(--white);
  color: var(--red);
  transition: 0.25s;
}

.about-phone__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(151, 28, 32, 0.08);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.72),
    0 6px 14px rgba(151, 28, 32, 0.14);
}

.about-phone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  transform: rotate(-90deg);
}

.about-phone span {
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 800;
}

.about-phone > span:last-child,
.contact-page__phone > span:last-child {
  direction: ltr;
  unicode-bidi: isolate;
}

.about-phone:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 154, 122, 0.85);
  background: linear-gradient(135deg, #fff, #fff8f1);
}

/* ==========================================================================
   Home — Blog
   ========================================================================== */

.blog-section {
  padding: 50px 0 0;
}

.blog-section .section-head {
  align-items: flex-end;
}

.blog-section .section-head__titles {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.blog-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 300;
}

.blog-section .eyebrow::before,
.blog-section .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px 30px;
  margin: 40px 0 0;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.25s;
}

.blog-card:hover {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

.blog-card__media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #f8f8f8;
}

.blog-card__media img {
  width: 100%;
  aspect-ratio: 1.91 / 1;
  object-fit: contain;
}

.blog-card__badge,
.single-cat {
  z-index: 5;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: -18px 14px 0;
  padding: 5px 10px;
  border: 1px solid rgba(151, 28, 32, 0.16);
  border-radius: 8px;
  background: #fff7f7;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2px 14px 8px;
  background: var(--white);
}

.blog-card__title {
  margin: 0 0 4px;
  line-height: 1.65;
}

.blog-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #252525;
  font-weight: 800;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-top: auto;
  padding-top: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.blog-card__more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  margin: 6px 0 0;
  padding: 9px 14px;
  border-top: 1px solid #eaeaea;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
}

/* ==========================================================================
   Blog Archive
   ========================================================================== */

.archive-main {
  padding: 0 0 70px;
}

.archive-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  margin-top: -128px;
  padding: 250px 0 130px;
  background-color: #1a1210;
  background-image:
    linear-gradient(rgba(23, 14, 12, 0.75), rgba(23, 14, 12, 0.75)),
    url("https://chinpars.com/wp-content/uploads/2026/06/archive-blog.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.archive-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.archive-hero__mark {
  display: block;
  width: min(3%, 48px);
  height: auto;
  margin: 0 auto;
}

.archive-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.archive-breadcrumb a {
  color: var(--white);
}

.archive-breadcrumb a:hover {
  color: var(--gold);
}

.archive-title {
  margin: 0;
  color: var(--white);
  font-size: 55px;
  font-weight: 600;
  line-height: 1.35;
}

.archive-body {
  position: relative;
  z-index: 1;
  margin-top: -111px;
}

.archive-grid {
  margin: 0 0 36px;
}

.archive-grid .archive-empty {
  grid-column: 1 / -1;
}

.archive-empty {
  margin: 0;
  padding: 28px 18px;
  border: 1px dashed #e5ddd7;
  border-radius: 14px;
  background: #faf8f6;
  color: #8a8080;
  font-size: 14px;
  text-align: center;
}

.archive-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.archive-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 28px;
  border: 1px solid rgba(151, 28, 32, 0.18);
  border-radius: 12px;
  background: rgba(151, 28, 32, 0.06);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.archive-more__btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.archive-more__btn:disabled,
.archive-more__btn.is-loading {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
}

.archive-more__btn.is-loading::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: search-spin 0.7s linear infinite;
}

.archive-more__empty {
  margin: 0;
  color: #8a8080;
  font-size: 13px;
  font-weight: 500;
}

.page-article {
  padding: 32px 28px;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page-article__media {
  margin: 0 0 22px;
}

.page-article__media img {
  width: 100%;
  border-radius: 16px;
}

.page-article__pages {
  margin-top: 22px;
}

.page-main .single-comments {
  margin-top: 22px;
}

@media (max-width: 767px) {
  .page-article {
    padding: 22px 16px;
  }
}

/* ==========================================================================
   Promo
   ========================================================================== */

.promo-section {
  --promo-pad-top: 0px;
  --promo-pad-bottom: 48px;
  padding: var(--promo-pad-top) 0 var(--promo-pad-bottom);
}

.blog-section + .promo-section {
  --promo-pad-top: 56px;
}

.promo-grid {
  display: flex;
  justify-content: center;
}

.promo-grid a {
  display: block;
  width: min(100%, 880px);
}

.promo-grid a.promo-grid__mobile {
  display: none;
}

.promo-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.promo-grid__desktop img {
  aspect-ratio: 1024 / 341;
}

.promo-grid__mobile img {
  aspect-ratio: 600 / 257;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(185, 154, 122, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(151, 28, 32, 0.38), transparent 36%),
    linear-gradient(135deg, #140b0c 0%, var(--red-dark) 48%, #12090a 100%);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://chinpars.com/wp-content/uploads/2026/06/dk-icon.png") center / 1% auto repeat;
  opacity: 0.33;
  filter: brightness(70%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 28px;
}

.footer-col {
  padding: 24px;
  border: 1px solid rgba(185, 154, 122, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-col img {
  max-width: 185px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.footer-lead,
.footer-col p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.footer-col h3 {
  position: relative;
  margin: 0 0 18px;
  padding-right: 14px;
  font-size: 18px;
  font-weight: 800;
}

.footer-col h3::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  position: relative;
  display: block;
  padding: 8px 14px 8px 8px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transform: translateX(-4px);
}

.footer-partner {
  display: inline-block;
  margin-top: 18px;
}

.footer-partner img {
  width: 185px;
  max-width: 100%;
  filter: none;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s;
}

.footer-contact__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--c);
  background: color-mix(in srgb, var(--c) 16%, rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.06),
    0 8px 18px color-mix(in srgb, var(--c) 18%, transparent);
  transition: 0.25s;
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-contact__icon svg path {
  fill: currentColor;
}

.footer-contact--phone { --c: #b99a7a; }
.footer-contact--telegram { --c: #27a3e3; }
.footer-contact--whatsapp { --c: #25d366; }

.footer-contact:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c) 38%, rgba(255, 255, 255, 0.12));
  background: color-mix(in srgb, var(--c) 10%, rgba(255, 255, 255, 0.06));
  color: var(--white);
}

.footer-contact:hover .footer-contact__icon {
  background: var(--c);
  color: var(--white);
  box-shadow:
    0 12px 28px color-mix(in srgb, var(--c) 34%, transparent),
    0 0 0 6px color-mix(in srgb, var(--c) 12%, transparent);
}

.copyright {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

/* ==========================================================================
   Responsive — Site
   ========================================================================== */

@media (max-width: 1024px) {
  .archive-hero {
    min-height: 500px;
    margin-top: -100px;
    padding: 210px 0 110px;
  }

  .archive-title {
    font-size: 40px;
  }

  .archive-body {
    margin-top: -100px;
  }

  .archive-hero__mark {
    width: min(6%, 56px);
  }
}

@media (max-width: 767px) {
  .archive-hero {
    min-height: 440px;
    margin-top: -90px;
    padding: 190px 0 100px;
    background-image:
      linear-gradient(rgba(23, 14, 12, 0.62), rgba(23, 14, 12, 0.62)),
      url("https://chinpars.com/wp-content/uploads/2026/06/archiveblog-mobile-e1782215856787.webp");
  }

  .archive-hero__mark {
    width: 10%;
    max-width: 64px;
  }

  .archive-title {
    font-size: 30px;
  }

  .archive-breadcrumb {
    font-size: 13px;
  }

  .archive-body {
    margin-top: -100px;
  }
}

.product-archive .brand-section {
  z-index: 2;
  margin-top: -110px;
}

.product-archive:has(.brand-section) .archive-body {
  margin-top: 24px;
}

@media (min-width: 1025px) {
  .brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 14px;
  }

  .brand-grid .brand-card {
    width: calc((100% - 98px) / 8);
  }

  .brand-grid .brand-card:nth-child(n + 9) {
    width: calc((100% - 112px) / 9);
  }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 55px; }
  .consult-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slider__track > .product-card { flex-basis: calc((100% - 10px) / 2); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-box { grid-template-columns: 1fr; }
  .about-copy { padding: 25px; }
  .about-copy h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .header-bar {
    display: flex;
    min-width: 0;
  }

  .site-logo {
    flex: 0 1 auto;
    min-width: 0;
  }

  .main-navigation {
    flex: 0 0 auto;
  }

  .main-navigation.is-drawer .sheet {
    display: flex;
    flex-direction: column;
  }

  .main-navigation.is-drawer .sheet-head,
  .main-navigation.is-drawer .menu-bar {
    flex-shrink: 0;
  }

  .btn-inquiry {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    margin-inline-start: auto;
    margin-inline-end: 8px;
    padding: 9px 14px;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
  }

  .btn-inquiry svg {
    width: 15px;
    height: 15px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--ink);
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    border-radius: 5px;
    background: currentColor;
  }

  .menu-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .menu-bar > li.has-mega {
    grid-column: span 3;
  }

  .menu-bar > li.menu-item--catalog {
    grid-column: 1 / -1;
  }

  .menu-bar > li:not(.has-mega):not(.menu-item--catalog) {
    grid-column: span 2;
  }

  .menu-top {
    width: 100%;
    height: 68px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px;
    border-radius: 12px;
    background: #f6f6f6;
    font-size: 11px;
  }

  .menu-item--catalog .menu-top {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
  }

  .menu-top svg,
  .menu-bar .icon-car {
    display: block;
    width: 20px;
    height: 20px;
  }

  .menu-item--catalog .icon-china-flag {
    display: block;
    width: 22px;
    height: 15px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  }

  .menu-top i {
    display: none;
  }

  .mega-menu {
    position: static;
    width: auto;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    translate: none;
    overflow: visible;
  }

  .main-navigation:not(.is-mega-open) .mega-menu {
    display: none;
  }

  .main-navigation.is-mega-open .mega-menu,
  .main-navigation.is-open .mega-menu {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }

  .mega-panel.is-open {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }

  .mega-panel__head {
    height: 62px;
    padding: 0 16px;
  }

  .mega-car-layout {
    display: block;
    height: auto;
    min-height: 0;
  }

  .mega-brands-wrap {
    border: 0;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }

  .mega-brands {
    display: flex;
    height: auto;
    gap: 7px;
    padding: 10px 10px 13px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .mega-brand {
    flex: 0 0 auto;
    width: auto;
    height: 37px;
    padding: 0 14px;
    background: #f5f2ef;
  }

  .mega-brand b,
  .mega-scroll-hint {
    display: none;
  }

  .mega-cars {
    overflow: visible;
    padding: 14px 12px 22px;
  }

  .mega-mobile-brand {
    display: block;
    margin: 0 2px 10px;
    font-size: 14px;
    font-weight: 800;
  }

  .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .parts-grid {
    flex: 1 1 auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 12px 18px;
    align-content: start;
  }

  .part-box {
    padding: 0;
    overflow: hidden;
  }

  .part-box__head {
    padding: 12px 14px;
    border-bottom: 0;
    cursor: pointer;
    pointer-events: auto;
  }

  .part-box__head::after {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-inline-start: auto;
    border-right: 2px solid #8a7f78;
    border-bottom: 2px solid #8a7f78;
    transform: rotate(-135deg);
    transition: transform 0.2s;
  }

  .part-box__toggle:checked + .part-box__head {
    border-bottom: 1px solid var(--line);
  }

  .part-box__toggle:checked + .part-box__head::after {
    transform: rotate(45deg);
  }

  .part-box ul {
    display: none;
    padding: 4px 8px 8px;
  }

  .part-box__toggle:checked + .part-box__head + ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .part-box li a {
    justify-content: flex-start;
    padding: 10px 8px;
    font-size: 13px;
    border-bottom: 1px solid #f1ece8;
  }

  .part-box li:last-child a {
    border-bottom: 0;
  }

  .part-box li span {
    display: none;
  }
}

@media (max-width: 767px) {
  .container { width: min(100% - 18px, var(--container)); }

  .header-bar {
    padding: 4px 6px;
    border-radius: var(--radius-md);
  }

  .header-bar::before {
    background-size: 25px auto;
  }

  .site-logo { flex: 0 1 28%; max-width: 110px; }
  .btn-inquiry { padding: 8px 12px; min-height: 44px; margin-inline-end: 6px; gap: 7px; font-size: 13px; }

  .hero {
    min-height: 620px;
    padding-top: 150px;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("https://chinpars.com/wp-content/uploads/2026/06/banner-m.webp");
  }

  .hero h1 { margin-bottom: 0; }
  .hero__subtitle { font-size: 18px; }

  .search-submit span { display: none; }

  .brand-section { margin-top: -130px; }

  .brand-panel {
    margin: 18px auto;
    padding: 24px 10px 22px;
    border-radius: var(--radius-lg);
  }

  .brand-panel__head h2 { font-size: 28px; }
  .brand-panel__head .section-kicker { font-size: 17px; }

  .brand-panel__note {
    width: 100%;
    font-size: 12.5px;
    border-radius: 16px;
  }

  .brand-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .brand-grid::-webkit-scrollbar { display: none; }

  .brand-grid__arrow {
    display: grid;
    top: 42%;
    width: 34px;
    height: 44px;
  }

  .brand-grid__arrow--next { left: 4px; }
  .brand-grid__arrow--prev { right: 4px; }

  .brand-card {
    flex: 0 0 44%;
    height: 185px;
    scroll-snap-align: start;
  }

  .brand-card__media { height: 132px; }
  .brand-card__media img { max-width: 150px; max-height: 128px; }
  .brand-card__title { font-size: 12.5px; }

  .consult-grid { grid-template-columns: 1fr; }
  .consult-card { font-size: 14px; width: 100%; }

  .product-section {
    margin: 0 0 10px;
    padding: 15px;
    border: 0;
  }

  .product-section + .product-section { margin-top: 0; }

  .product-card {
    padding: 6px 6px 9px;
    border-radius: 13px;
  }

  .product-card::after {
    width: 90px;
    height: 90px;
    left: -42px;
    bottom: -42px;
  }

  .product-card__media {
    margin-bottom: 7px;
    border-radius: 12px;
  }

  .product-card__title {
    min-height: 41px;
    font-size: 10.8px;
    line-height: 1.65;
  }

  .product-card .product-price {
    justify-content: center;
    min-height: 34px;
    margin-top: 6px;
    padding: 4px 3px;
    border-radius: 8px;
  }

  .product-card .product-price__label { display: none; }

  .product-card .product-price__value { font-size: 11px; }

  .product-inquire {
    min-height: 32px;
    margin: 10px 0;
    padding: 4px 5px;
    border-radius: 8px;
    font-size: 10px;
    gap: 5px;
  }

  .product-inquire__icon {
    width: 22px;
    height: 22px;
  }

  .product-inquire svg {
    width: 9px;
    height: 9px;
  }

  .btn-product {
    min-height: 34px;
    margin-top: auto;
    padding: 5px 3px;
    border-radius: 8px;
    font-size: 9.4px;
  }

  .slider__arrow {
    top: 42%;
    width: 34px;
    height: 44px;
  }

  .slider__arrow--next { left: 4px; }
  .slider__arrow--prev { right: 4px; }

  .about-box { min-height: 0; }
  .about-visual { display: none; }
  .about-copy { text-align: center; }
  .about-copy h2 { font-size: 25px; }
  .about-copy .eyebrow { margin-inline: auto; }
  .about-mark { width: 10%; margin-inline: auto; }
  .about-phones { flex-direction: column; align-items: center; }
  .about-phone {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    width: 100%;
    gap: 0 10px;
  }
  .about-phone__icon { justify-self: center; }
  .about-phone > span:last-child { justify-self: center; }
  .about-phone span { font-size: 15px; }

  .blog-section .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-section .section-head__titles {
    align-items: center;
  }

  .blog-section .eyebrow::before,
  .blog-section .eyebrow::after {
    width: 40px;
  }

  .blog-section .section-head h2 {
    font-size: 25px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 10px 0 0;
  }

  .blog-grid.archive-grid {
    margin-bottom: 36px;
  }

  .blog-section + .promo-section {
    --promo-pad-top: 40px;
  }

  .blog-card {
    border-radius: 9px;
  }

  .blog-card__media {
    border-radius: 9px 9px 0 0;
  }

  .blog-card__meta {
    border-radius: 0 0 9px 9px;
    padding: 8px 11px;
  }

  .blog-card__badge {
    margin: -18px 11px 0;
    padding: 4px 8px;
    border-radius: 7px;
    font-size: 10px;
  }

  .blog-card__body {
    padding: 2px 11px 6px;
  }

  .promo-grid a.promo-grid__desktop { display: none; }
  .promo-grid a.promo-grid__mobile { display: block; }

  .site-footer { padding: 34px 0 26px; }
  .footer-col { padding: 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
}

@media (max-width: 380px) {
  .product-card__title { font-size: 10px; }
  .product-card .product-price__value { font-size: 10px; }
  .product-inquire { font-size: 9.2px; }
  .btn-product { font-size: 8.8px; }
  .brand-card { flex-basis: 48%; height: 172px; }
  .car-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.single-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: 28px 36px;
  align-items: start;
}

.single-article {
  min-width: 0;
}

.single-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.5;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.single-meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #ebe4df;
  border-radius: 8px;
  background: #faf8f6;
  color: #6f6666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.single-meta svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--red);
}

.single-meta__comment {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
}

.single-meta__comment:hover {
  color: var(--red);
}

.single-ai-summary-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 32px;
  padding: 14px 16px;
  border: 1px solid #ebe4df;
  border-radius: 8px;
  background: #faf8f6;
}

.single-ai-summary-group__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  flex: 0 1 auto;
  color: #6f6666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.single-ai-summary-group__label svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--red);
}

.single-ai-summary-group__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-inline-start: auto;
}

.single-ai-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid #0d0d0d;
  border-radius: 12px;
  background: #0d0d0d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(13, 13, 13, 0.12);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.single-ai-summary__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: inherit;
}

.single-ai-summary__icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.single-ai-summary__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: inherit;
}

.single-ai-summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 13, 13, 0.16);
}

.single-ai-summary:hover .single-ai-summary__icon {
  transform: scale(1.06);
}

.single-ai-summary:active {
  transform: translateY(0) scale(0.985);
}

.single-ai-summary:focus-visible {
  outline: 3px solid rgba(13, 13, 13, 0.28);
  outline-offset: 3px;
}

.single-ai-summary--chatgpt {
  border-color: #0d0d0d;
  background: #0d0d0d;
  color: #fff;
}

.single-ai-summary--chatgpt:hover {
  border-color: #2a2a2a;
  background: #2a2a2a;
  color: #fff;
}

.single-ai-summary--grok {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

.single-ai-summary--grok:hover {
  border-color: #333;
  background: #333;
  color: #fff;
}

.single-ai-summary--gemini {
  border-color: #1a73e8;
  background: linear-gradient(135deg, #4285f4 0%, #9b72cb 48%, #d96570 100%);
  color: #fff;
}

.single-ai-summary--gemini:hover {
  border-color: #1967d2;
  filter: brightness(1.05);
  color: #fff;
}

.single-ai-summary--gemini:focus-visible {
  outline-color: rgba(66, 133, 244, 0.45);
}

.single-ai-summary--claude {
  border-color: #d97757;
  background: #d97757;
  color: #fff;
}

.single-ai-summary--claude:hover {
  border-color: #c46342;
  background: #c46342;
  color: #fff;
}

.single-ai-summary--claude:focus-visible {
  outline-color: rgba(217, 119, 87, 0.45);
}

.single-media {
  position: relative;
  z-index: 2;
}

.single-media + .single-title {
  margin-top: 28px;
}

.single-cat {
  gap: 7px;
  margin: 0 0 14px;
}

.single-cat svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
}

.single-media .single-cat {
  position: absolute;
  left: 14px;
  bottom: 0;
  margin: 0;
  transform: translateY(50%);
}

.single-cat:hover {
  color: var(--red-dark);
}

.single-thumb {
  margin: 0;
}

.single-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(23, 14, 12, 0.22);
}

.single-content {
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

.single-content > *:first-child {
  margin-top: 0;
}

.single-content > *:last-child {
  margin-bottom: 0;
}

.single-content p,
.single-content ul,
.single-content ol,
.single-content blockquote,
.single-content table,
.single-content figure {
  margin: 0 0 1.15em;
}

.single-content h3,
.single-content h4 {
  margin: 1.5em 0 0.7em;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
  scroll-margin-top: 30px;
}

.single-content h2 {
  position: relative;
  margin: 42px 0 18px;
  padding: 5px 17px 5px 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.7;
  text-align: right;
  scroll-margin-top: 30px;
}

.single-content h2::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 10px;
  background: var(--red);
}

.single-content h2:first-child {
  margin-top: 0;
}

.single-content h3 { font-size: 19px; }
.single-content h4 { font-size: 17px; }

.single-content a {
  color: var(--red);
  text-decoration: none;
}

.single-content a:hover {
  opacity: 0.85;
}

.single-content ul,
.single-content ol {
  padding-inline-start: 1.4em;
}

.single-content li {
  margin-bottom: 0.35em;
}

.single-content blockquote {
  padding: 14px 18px;
  border-right: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #faf8f6;
  color: #4f4747;
  font-style: normal;
}

.single-content img,
.single-content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 12px;
}

.single-content figure,
.single-content .wp-block-image,
.single-content .alignleft,
.single-content .alignright,
.single-content .aligncenter {
  float: none;
  margin-inline: auto;
  text-align: center;
}

.single-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.single-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #e8e2de;
  border-radius: 12px;
  background: var(--white);
  font-size: 14px;
}

.single-content th,
.single-content td {
  padding: 11px 14px;
  border: 0;
  border-inline-end: 1px solid #eee9e5;
  border-block-end: 1px solid #eee9e5;
  vertical-align: top;
}

.single-content th:last-child,
.single-content td:last-child {
  border-inline-end: 0;
}

.single-content tr:last-child th,
.single-content tr:last-child td {
  border-block-end: 0;
}

.single-content th {
  background: #3d2f2c;
  color: #fff;
  font-weight: 700;
}

.single-content thead th,
.single-content tbody tr:first-child th {
  border-block-end-color: #2a201e;
  border-inline-end-color: rgba(255, 255, 255, 0.12);
}

.single-content tbody tr {
  transition: background 0.18s;
}

.single-content tbody tr:hover td {
  background: #f8f2ef;
}

.single-content .wp-block-table {
  overflow: visible;
}

.car-glossary-tooltip {
  display: inline-block;
  cursor: help;
  border-bottom: 1px dotted currentColor;
  white-space: nowrap;
  word-break: keep-all;
  font-style: inherit;
  font-weight: inherit;
}

.car-glossary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-inline-start: 0.2em;
  color: var(--red, #971c20);
  line-height: 1;
}

.car-glossary-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

.car-glossary-content {
  --arrow-offset: 50%;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  box-sizing: border-box;
  min-width: 180px;
  max-width: min(280px, calc(100vw - 24px));
  padding: 0.65em 0.85em;
  background: #1e293b;
  color: #f8fafc;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  text-align: start;
  white-space: normal;
}

.car-glossary-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.car-glossary-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: var(--arrow-offset);
  right: auto;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1e293b;
}

.car-glossary-content.is-below::before {
  top: auto;
  bottom: 100%;
}

.car-glossary-content.is-below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #1e293b;
}

.car-glossary-tooltip.is-visible + .car-glossary-content {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  .car-glossary-tooltip:hover + .car-glossary-content,
  .car-glossary-tooltip:focus + .car-glossary-content,
  .car-glossary-tooltip:focus-within + .car-glossary-content,
  .car-glossary-content:hover {
    opacity: 1;
    visibility: visible;
  }
}

@media (hover: none), (pointer: coarse) {
  .car-glossary-tooltip:hover + .car-glossary-content,
  .car-glossary-content:hover {
    opacity: 0;
    visibility: hidden;
  }

  .car-glossary-tooltip.is-visible + .car-glossary-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.single-article .single-table-wrap {
  max-width: 100%;
  margin: 0 0 1.15em;
  overflow: visible;
}

.single-article .single-table-wrap:not(.is-fits) {
  margin-bottom: 1.75em;
}

.single-article .single-table-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(151, 28, 32, 0.22);
  border-radius: 10px;
  background: #f8ecec;
  color: #5c1a1c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.single-article .single-table-hint[hidden] {
  display: none !important;
}

.single-article .single-table-hint svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #971c20;
}

.single-article .single-table-scroll {
  margin: 0;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(151, 28, 32, 0.35) transparent;
  }

  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(151, 28, 32, 0.35);
  }

  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll table {
    width: auto;
    min-width: 100%;
    margin-bottom: 0;
  }

  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll th,
  .single-article .single-table-wrap:not(.is-fits) .single-table-scroll td {
    height: auto;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }
}

.single-content .wp-block-table table {
  margin-bottom: 0;
}

.single-toc {
  position: relative;
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid #e8e2de;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(45, 32, 31, 0.035);
  cursor: pointer;
}

.single-toc::after {
  content: "";
  position: absolute;
  inset: -20% -15%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(151, 28, 32, 0.045) 46%,
    rgba(151, 28, 32, 0.11) 50%,
    rgba(151, 28, 32, 0.045) 54%,
    transparent 64%
  );
  transform: translateX(75%);
  opacity: 0;
  animation: none;
}

.single-toc.is-collapsed::after {
  opacity: 1;
  animation: single-toc-wave 2.8s linear infinite;
}

@keyframes single-toc-wave {
  0% {
    transform: translateX(75%);
  }
  100% {
    transform: translateX(-75%);
  }
}

.single-toc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee9e5;
}

.single-toc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
}

.single-toc__title strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.single-toc__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid rgba(151, 28, 32, 0.08);
  border-radius: 999px;
  background: rgba(151, 28, 32, 0.065);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.single-toc__icon {
  display: flex;
  flex: 0 0 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(151, 28, 32, 0.09);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(151, 28, 32, 0.1), rgba(151, 28, 32, 0.04));
}

.single-toc__icon i {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 4px;
  background: var(--red);
}

.single-toc__icon i:nth-child(2) { width: 11px; }
.single-toc__icon i:nth-child(3) { width: 8px; }

.single-toc__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 9px;
  border: 1px solid #ece7e3;
  border-radius: 9px;
  background: #faf9f8;
  color: #756f73;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.single-toc__toggle:hover {
  border-color: rgba(151, 28, 32, 0.13);
  background: rgba(151, 28, 32, 0.065);
  color: var(--red);
}

.single-toc__toggle i {
  display: block;
  width: 8px;
  height: 8px;
  border-left: 1.75px solid currentColor;
  border-bottom: 1.75px solid currentColor;
  transform: translateY(2px) rotate(135deg);
  transition: transform 0.2s;
}

.single-toc.is-collapsed .single-toc__toggle i {
  transform: translateY(-2px) rotate(-45deg);
}

.single-toc.is-collapsed .single-toc__head {
  border-bottom: 0;
}

.single-toc.is-collapsed .single-toc__body {
  display: none;
}

.single-toc__body {
  padding: 4px 8px 10px;
}

.single-content .single-toc__list,
.single-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-content .single-toc__item {
  margin-bottom: 0;
}

.single-toc__item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 5px 8px 5px 2px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #4b464a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.single-toc__item a:hover {
  border-color: rgba(151, 28, 32, 0.095);
  background: linear-gradient(90deg, rgba(151, 28, 32, 0.015), rgba(151, 28, 32, 0.07));
  color: var(--red);
}

.single-toc__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: var(--red);
  transform: translateY(-50%);
  transition: height 0.18s;
}

.single-toc__item a:hover::after {
  height: 20px;
}

.single-toc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid #eee9e5;
  border-radius: 8px;
  background: #faf9f8;
  color: #95877c;
  direction: ltr;
  font-size: 9px;
  font-weight: 800;
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@keyframes single-tg-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(42, 171, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0);
  }
}

@keyframes single-tg-float {
  0%,
  100% {
    transform: translate(-6px, 4px) rotate(-12deg);
  }
  50% {
    transform: translate(4px, -6px) rotate(-6deg);
  }
}

@keyframes single-tg-shine {
  from {
    transform: translateX(80%);
  }
  to {
    transform: translateX(-80%);
  }
}

.single-tg {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  padding: 22px 18px 20px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(90% 80% at 0% 100%, rgba(42, 171, 238, 0.22), transparent 48%),
    radial-gradient(70% 60% at 100% 0%, rgba(185, 154, 122, 0.2), transparent 44%),
    linear-gradient(165deg, #8a1a1f 0%, #6b1217 42%, #3e0b0e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 28px rgba(62, 11, 14, 0.28);
  color: var(--white);
  text-decoration: none;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.single-tg::before,
.single-tg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.single-tg::before {
  right: -28%;
  bottom: -52%;
  width: 170%;
  height: 140%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 0 36px rgba(42, 171, 238, 0.06);
}

.single-tg::after {
  top: -40px;
  left: -30px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(185, 154, 122, 0.28);
  border-radius: 50%;
}

.single-tg__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 64%
  );
  transform: translateX(80%);
  opacity: 0;
  pointer-events: none;
}

.single-tg__mark {
  position: absolute;
  left: -10px;
  bottom: -18px;
  z-index: 0;
  width: 118px;
  height: 118px;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  animation: single-tg-float 6s ease-in-out infinite;
}

.single-tg__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.single-tg__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  text-align: center;
}

.single-tg__kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.single-tg__title {
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.single-tg__points {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  margin: 6px auto 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
}

.single-tg__points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-tg__points li::before {
  content: "";
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.single-tg__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 8px;
  padding-block: 6px;
  padding-inline-start: 6px;
  padding-inline-end: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(16, 8, 8, 0.28);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.single-tg__icon {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2aabee;
  color: var(--white);
  animation: single-tg-pulse 2.4s ease-out infinite;
}

.single-tg__icon svg {
  width: 17px;
  height: 17px;
  margin-inline-start: 1px;
}

.single-tg:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(62, 11, 14, 0.34);
}

.single-tg:hover .single-tg__shine {
  opacity: 1;
  animation: single-tg-shine 0.85s ease-out;
}

.single-tg:hover .single-tg__cta {
  background: #2aabee;
  border-color: #2aabee;
  transform: translateY(-1px);
}

.single-tg:hover .single-tg__icon {
  background: var(--white);
  color: #2aabee;
  animation: none;
}

.single-tg:active {
  transform: translateY(-1px);
}

.single-related {
  overflow: hidden;
  border: 1px solid #ebe7e4;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(43, 31, 31, 0.04);
}

.single-related__title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px 14px;
  border-bottom: 1px solid #eee9e5;
  background: #fcfbfa;
  color: var(--ink);
}

.single-related__title strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.single-related__icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(151, 28, 32, 0.1);
  border-radius: 8px;
  background: rgba(151, 28, 32, 0.065);
}

.single-related__icon::before,
.single-related__icon::after {
  content: "";
  position: absolute;
  right: 7px;
  left: 7px;
  height: 2px;
  border-radius: 3px;
  background: var(--red);
}

.single-related__icon::before { top: 9px; }
.single-related__icon::after { top: 15px; width: 9px; left: auto; }

.single-related__list {
  margin: 0;
  padding: 6px 13px 9px;
  list-style: none;
}

.single-related__list li {
  border-bottom: 1px solid #f1eeeb;
}

.single-related__list li:last-child {
  border-bottom: 0;
}

.single-related__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 2px;
  color: #353033;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  text-decoration: none;
  transition: color 0.18s;
}

.single-related__list a span {
  min-width: 0;
}

.single-related__list i,
.single-related__list svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  color: #b39b86;
  transition: transform 0.18s, color 0.18s;
}

.single-related__list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-related__list svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-related__list a:hover {
  color: var(--red);
}

.single-related__list a:hover i,
.single-related__list a:hover > svg {
  color: var(--red);
  transform: translateX(-2px);
}

@property --cp-google-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes cp-google-border {
  to {
    --cp-google-angle: 360deg;
  }
}

@keyframes cp-google-shine {
  from {
    transform: translateX(75%);
  }
  to {
    transform: translateX(-75%);
  }
}

.cp-google-source {
  --cp-google-angle: 0deg;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  isolation: isolate;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: right;
  text-decoration: none;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.cp-google-source::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--cp-google-angle),
    #4285f4,
    #34a853,
    #fbbc05,
    #ea4335,
    #4285f4
  );
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.cp-google-source::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  border-radius: 14px;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.78) 50%,
    transparent 68%
  );
  transform: translateX(75%);
  opacity: 0;
  pointer-events: none;
}

.cp-google-source:hover {
  color: #1a73e8;
  background: #f8fbff;
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(66, 133, 244, 0.16),
    0 6px 14px rgba(52, 168, 83, 0.08),
    0 0 0 1px rgba(66, 133, 244, 0.06);
}

.cp-google-source:hover::before {
  animation: cp-google-border 1.5s linear infinite;
}

.cp-google-source:hover::after {
  opacity: 1;
  animation: cp-google-shine 0.85s ease-out;
}

.cp-google-source:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 6px 14px rgba(66, 133, 244, 0.12);
}

.cp-google-source:focus-visible {
  outline: 3px solid rgba(66, 133, 244, 0.35);
  outline-offset: 3px;
}

.cp-google-source__icon {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cp-google-source:hover .cp-google-source__icon {
  transform: scale(1.14) rotate(-8deg);
}

.cp-google-source__text {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 auto;
}

.single-article > .cp-google-source {
  display: none;
  margin-top: 22px;
}

.single-consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.single-consult__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 300;
}

.single-consult__eyebrow::before,
.single-consult__eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold);
}

.single-consult h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.single-consult__text {
  margin: 0;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 200;
  line-height: 1.9;
  text-align: justify;
}

.single-consult__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.single-consult__list .consult-card {
  width: 100%;
  font-size: 13px;
}

.single-author {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 34px 0 0;
  padding: 20px;
  border: 1px solid #e8e2de;
  border-radius: 14px;
  background: var(--white);
}

.archive-author {
  margin: 0 0 28px;
}

.single-author__photo {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border: 1px solid #e5d7cd;
  border-radius: 50%;
  background: #f7efec;
}

.single-author__photo a,
.single-author__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.single-author__photo img {
  object-fit: cover;
}

.single-author__label {
  display: block;
  margin: 0 0 2px;
  color: #8a7f78;
  font-size: 11px;
  font-weight: 600;
}

.single-author__heading :is(h2, h3) {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.single-author__heading a {
  color: inherit;
}

.single-author__bio {
  color: #686166;
  font-size: 13px;
  line-height: 2;
  text-align: justify;
}

.single-author__bio p {
  margin: 0;
}

.single-author__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid #f0ece9;
}

.single-author__articles,
.single-author__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.single-author__articles {
  gap: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(151, 28, 32, 0.16);
  background: rgba(151, 28, 32, 0.065);
  color: var(--red);
}

.single-author__articles svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.single-author__articles:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.single-author__linkedin {
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(10, 102, 194, 0.18);
  background: rgba(10, 102, 194, 0.06);
  color: #0a66c2;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.single-author__linkedin-mark {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.single-author__linkedin:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #fff;
  transform: translateY(-1px);
}

.single-author__linkedin:hover .single-author__linkedin-mark {
  background: #fff;
  color: #0a66c2;
}

@media (max-width: 1024px) {
  .single-stage {
    grid-template-columns: 1fr;
  }

  .single-title {
    font-size: 31px;
  }

  .single-tg {
    padding: 18px 20px;
  }

  .single-tg__mark {
    top: 50%;
    bottom: auto;
    left: 8px;
    width: 86px;
    height: 86px;
    color: rgba(255, 255, 255, 0.16);
    animation: none;
    transform: translateY(-50%) rotate(-8deg);
  }

  .single-article > .cp-google-source {
    display: flex;
  }

  .single-sidebar > .cp-google-source {
    display: none;
  }

  .single-media .single-cat {
    transform: translateY(28%);
  }

  .single-toc__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .single-title {
    font-size: 26px;
  }

  .cp-google-source {
    min-height: 60px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .cp-google-source__icon {
    width: 30px;
    height: 30px;
  }

  .single-ai-summary-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px;
  }

  .single-ai-summary-group__label {
    font-size: 12px;
  }

  .single-ai-summary-group__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    margin-inline-start: 0;
  }

  .single-ai-summary {
    width: auto;
    min-height: 36px;
    padding: 6px 8px;
    gap: 5px;
    font-size: 12px;
  }

  .single-ai-summary__icon {
    flex: 0 0 1em;
    width: 1em;
    height: 1em;
  }

  .single-ai-summary__name {
    font-size: 1em;
  }

  .single-toc__body {
    padding: 4px 6px 10px;
  }

  .single-content .single-toc__item a,
  .single-toc__item a {
    padding: 5px 4px 5px 2px;
    gap: 6px;
  }

  .single-content {
    font-size: 16px;
  }

  .single-content h2 {
    margin-top: 34px;
    padding-right: 14px;
    font-size: 20px;
    line-height: 1.75;
  }

  .single-author {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
    padding: 14px;
  }

  .single-author__photo {
    width: 68px;
    height: 68px;
  }

  .single-author__content {
    display: contents;
  }

  .single-author__heading {
    grid-column: 2;
    grid-row: 1;
  }

  .single-author__heading :is(h2, h3) {
    margin-bottom: 0;
    font-size: 16px;
  }

  .single-author__bio {
    grid-column: 1 / -1;
    font-size: 12.5px;
  }

  .single-author__links {
    grid-column: 1 / -1;
  }

  .single-author__articles,
  .single-author__linkedin {
    width: 100%;
  }
}

/* ==========================================================================
   Comments
   ========================================================================== */

.single-comments {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #eee8e4;
}

.comments-head {
  margin-bottom: 22px;
}

.comments-head__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.comments-head__title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.comments-head__icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 10px;
  background: rgba(151, 28, 32, 0.06);
}

.comments-head__icon::before,
.comments-head__icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 3px;
}

.comments-head__icon::before {
  top: 10px;
  right: 9px;
  left: 9px;
  height: 2px;
}

.comments-head__icon::after {
  top: 15px;
  right: 9px;
  width: 10px;
  height: 2px;
}

.comments-head__text {
  margin: 0;
  color: #7a7171;
  font-size: 13px;
  line-height: 1.8;
}

.comments-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.comments-list > .comments-item + .comments-item {
  margin-top: 14px;
}

.comments-empty {
  padding: 22px 18px;
  border: 1px dashed #e5ddd7;
  border-radius: 14px;
  background: #faf8f6;
  color: #8a8080;
  font-size: 13px;
  text-align: center;
}

.comments-card {
  padding: 16px 16px 14px;
  border: 1px solid #ece6e1;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(43, 31, 31, 0.035);
  animation: comments-in 0.35s ease;
}

.comments-item.is-new .comments-card {
  border-color: rgba(151, 28, 32, 0.28);
  box-shadow: 0 10px 28px rgba(151, 28, 32, 0.08);
}

@keyframes comments-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.comments-item__avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #e8ddd6;
  object-fit: cover;
}

.comments-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.comments-card__author {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.comments-card__date {
  color: #8f8585;
  font-size: 12px;
  font-weight: 500;
}

.comments-card__body {
  color: #4a4448;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}

.comments-card__body p {
  margin: 0 0 0.6em;
}

.comments-card__body p:last-child {
  margin-bottom: 0;
}

.comments-form-wrap {
  padding: 20px;
  border: 1px solid #ece6e1;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfbfa 0, #fff 48px);
  scroll-margin-top: 120px;
}

.comments-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  animation: comments-in 0.28s ease;
}

.comments-notice.is-success {
  border: 1px solid rgba(34, 140, 78, 0.22);
  background: rgba(34, 140, 78, 0.08);
  color: #1f7a48;
}

.comments-notice.is-error {
  border: 1px solid rgba(151, 28, 32, 0.22);
  background: rgba(151, 28, 32, 0.07);
  color: var(--red);
}

.comments-logged {
  margin: 0 0 14px;
  color: #6f6666;
  font-size: 13px;
}

.comments-logged strong {
  color: var(--ink);
}

.comments-field {
  margin-bottom: 14px;
}

.comments-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.comments-field label span {
  color: var(--red);
}

.comments-field input,
.comments-field textarea {
  width: 100%;
  border: 1px solid #e6dfda;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.comments-field input {
  min-height: 46px;
  padding: 10px 14px;
}

.comments-field textarea {
  min-height: 128px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.9;
}

.comments-field input:focus,
.comments-field textarea:focus {
  outline: 0;
  border-color: rgba(151, 28, 32, 0.35);
  box-shadow: 0 0 0 3px rgba(151, 28, 32, 0.08);
}

.comments-field.is-invalid input,
.comments-field.is-invalid textarea {
  border-color: rgba(151, 28, 32, 0.45);
  background: rgba(151, 28, 32, 0.025);
}

.comments-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.comments-form {
  position: relative;
}

.comments-captcha {
  margin: 4px 0 16px;
}

.comments-captcha.is-invalid .arcaptcha {
  outline: 1px solid rgba(151, 28, 32, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

.comments-form__foot {
  display: flex;
  justify-content: flex-start;
}

.comments-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 22px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, opacity 0.18s;
}

.comments-submit:hover {
  background: var(--gold);
}

.comments-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.comments-submit.is-loading {
  pointer-events: none;
}

.comments-closed {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: #faf8f6;
  color: #7a7171;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 767px) {
  .single-comments {
    margin-top: 28px;
    padding-top: 22px;
  }

  .comments-head__title h2 {
    font-size: 19px;
  }

  .comments-form-wrap {
    padding: 16px 12px;
  }

  .comments-item__avatar {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .comments-submit {
    width: 100%;
  }
}

/* ==========================================================================
   Single Product
   ========================================================================== */

.product-main,
.single-main {
  overflow-x: clip;
}

.product-hero {
  min-height: 580px;
  margin-top: -128px;
  background-color: #1a1210;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://chinpars.com/wp-content/uploads/2026/06/single-product-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-hero {
  background-image:
    linear-gradient(rgba(23, 14, 12, 0.75), rgba(23, 14, 12, 0.75)),
    url("https://chinpars.com/wp-content/uploads/2026/06/archive-blog.webp");
}

.product-body {
  position: relative;
  z-index: 2;
  margin-top: -280px;
  margin-bottom: 56px;
}

.product-breadcrumb {
  justify-content: flex-start;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.33fr) minmax(0, 0.67fr);
  gap: 24px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  overflow: hidden;
  border-radius: 25px;
  background: var(--white);
  border: 1px solid #e6e6e6;
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #faf8f6;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.product-gallery__thumb {
  display: block;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
}

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

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(151, 28, 32, 0.12);
}

.product-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 32px;
  min-width: 0;
  padding: 30px;
  border: 1px solid #e6e6e6;
  border-radius: 25px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-summary__info,
.product-summary__order {
  min-width: 0;
}

.product-summary > .product-highlights,
.product-summary > .product-rating {
  grid-column: 1 / -1;
}

.product-rating {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 154, 122, 0.12), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fffaf8 55%, #fff6f3 100%);
  box-shadow:
    0 5px 16px rgba(151, 28, 32, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-family: modam, Tahoma, sans-serif;
}

.product-rating--split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
}

.product-rating--split .product-rating__input {
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(151, 28, 32, 0.1);
}

.product-rating__summary,
.product-rating__input {
  min-width: 0;
}

.product-rating__summary {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LPR inside product box — layout + brand only (base styles from plugin) */
.product-rating .lpr-rating-summary,
.product-rating .lpr-rating-form {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.product-rating .lpr-rating-summary {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-rating .lpr-rating-summary .lpr-stars {
  flex: 0 0 auto;
  gap: 4px;
  font-size: 20px;
}

.product-rating .lpr-star-fill {
  color: #971c20;
}

.product-rating .lpr-star-empty {
  color: #ead7d6;
}

.product-rating .lpr-compact-score-star {
  color: #971c20;
}

.product-rating .lpr-rating-summary .lpr-rating-label,
.product-rating .lpr-compact-score-number {
  color: #786d6a;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.product-rating .lpr-rating-form {
  align-items: center;
  gap: 8px;
}

.product-rating .lpr-rating-form .lpr-rating-input-label {
  margin: 0;
  color: #302a28;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.product-rating .lpr-rating-form .lpr-input-options {
  justify-content: center;
  gap: 7px;
}

.product-rating .lpr-stars-input label.is-selected,
.product-rating .lpr-stars-input label:hover {
  color: #971c20;
}

.product-rating .lpr-star-number {
  color: #786d6a;
}

.product-rating .lpr-submit-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 4px;
  padding: 8px 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #a52429, #971c20 55%, #7e171b);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.product-rating .lpr-rating-message {
  position: relative;
  width: 100%;
  margin: 4px 0 0;
  padding: 9px 34px 9px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  text-align: right;
  box-sizing: border-box;
}

.product-rating .lpr-rating-message:empty {
  display: none;
}

.product-rating .lpr-rating-message::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.product-rating .lpr-rating-message.is-success {
  color: #42624b;
  background: rgba(70, 128, 85, 0.08);
  border: 1px solid rgba(70, 128, 85, 0.16);
}

.product-rating .lpr-rating-message.is-success::before {
  background-color: rgba(70, 128, 85, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2342624b' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5z'/%3E%3C/svg%3E");
}

.product-rating .lpr-rating-message.is-error {
  color: #971c20;
  background: rgba(151, 28, 32, 0.06);
  border: 1px solid rgba(151, 28, 32, 0.14);
}

.product-rating .lpr-rating-message.is-error::before {
  background-color: rgba(151, 28, 32, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23971c20' d='M8 1.5A6.5 6.5 0 1 0 14.5 8 6.51 6.51 0 0 0 8 1.5Zm0 10.2a.85.85 0 1 1 .85-.85A.85.85 0 0 1 8 11.7Zm.8-2.9h-1.6l-.2-4.4h2z'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .product-rating .lpr-rating-summary {
    gap: 9px;
  }

  .product-rating .lpr-rating-summary .lpr-stars {
    font-size: 19px;
  }

  .product-rating .lpr-rating-summary .lpr-rating-label {
    font-size: 10.8px;
  }

  .product-rating .lpr-rating-form .lpr-rating-input-label {
    font-size: 11px;
  }

  .product-rating .lpr-rating-message {
    padding: 8px 30px 8px 10px;
    font-size: 10px;
  }
}

.product-stock {
  --cp-green: #1f9d55;
  --cp-green-dark: #147a40;
  --cp-text: #1f1f1f;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  margin: 0 0 14px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 157, 85, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(31, 157, 85, 0.07), rgba(185, 154, 122, 0.1)),
    #fff;
  color: var(--cp-text);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.product-stock::before {
  content: "";
  position: absolute;
  top: 0;
  right: -45%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: right 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

.product-stock__icon {
  position: relative;
  z-index: 2;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(31, 157, 85, 0.09);
  color: var(--cp-green);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.78),
    0 8px 18px rgba(31, 157, 85, 0.16);
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.product-stock__icon svg {
  display: block;
  width: 29px;
  height: 29px;
}

.product-stock__icon svg path,
.product-stock__icon svg rect,
.product-stock__icon svg polyline {
  fill: currentColor;
  transition: fill 0.28s ease;
}

.product-stock__icon svg .product-stock__muted {
  fill: #d8d8d8;
}

.product-stock__text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
  transition: color 0.28s ease;
}

.product-stock__text::after {
  content: "";
  align-self: flex-start;
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--cp-green);
  box-shadow: 0 0 0 5px rgba(31, 157, 85, 0.1);
  animation: stock-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes stock-dot-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(31, 157, 85, 0.1);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 3px rgba(31, 157, 85, 0.04);
  }
}

.product-stock:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 157, 85, 0.34);
  background:
    linear-gradient(135deg, rgba(31, 157, 85, 0.1), rgba(185, 154, 122, 0.14)),
    #fff;
  box-shadow: 0 14px 30px rgba(31, 157, 85, 0.13);
}

.product-stock:hover::before {
  right: 105%;
  opacity: 1;
}

.product-stock:hover .product-stock__icon {
  background: linear-gradient(135deg, var(--cp-green), var(--cp-green-dark));
  color: #fff;
  box-shadow:
    0 12px 26px rgba(31, 157, 85, 0.28),
    0 0 0 6px rgba(31, 157, 85, 0.08);
}

.product-stock:hover .product-stock__icon svg .product-stock__muted {
  fill: rgba(255, 255, 255, 0.65);
}

.product-stock:hover .product-stock__text {
  color: var(--cp-green-dark);
}

.product-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.45;
}

.product-cats {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.product-cats__label {
  margin-inline-end: 4px;
  color: var(--text);
  font-weight: 600;
}

.product-cats a {
  color: var(--red);
}

.product-cats a:hover {
  color: var(--gold-dark);
}

.product-summary .product-price {
  --cp-red: #971c20;
  --cp-red-dark: #741316;
  --cp-text: #302526;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 15px;
  padding: 10px 13px 10px 13px;
  padding-inline-start: 13px;
  overflow: hidden;
  border: 1px solid rgba(151, 28, 32, 0.14);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 154, 122, 0.13), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fffaf8 55%, #fff6f3 100%);
  box-shadow:
    0 5px 16px rgba(151, 28, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--cp-text);
  line-height: 1.4;
}

.product-summary .product-price__label {
  color: #756967;
  font-size: 13px;
  font-weight: 600;
}

.product-summary .product-price__value {
  color: var(--cp-red);
  font-size: 23px;
  font-weight: 700;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-highlights__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid rgba(151, 28, 32, 0.13);
  border-radius: 15px;
  background: linear-gradient(135deg, #a62429 0%, #971c20 52%, #80171b 100%);
  box-shadow:
    0 7px 20px rgba(151, 28, 32, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-highlights__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 246, 0.94));
  box-shadow:
    0 4px 12px rgba(92, 17, 20, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-highlights__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.product-highlights__text {
  flex: 0 1 auto;
  min-width: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

@media (hover: hover) and (min-width: 1025px) {
  .product-highlights__item:hover {
    transform: translateY(-3px);
    border-color: rgba(185, 154, 122, 0.55);
    box-shadow:
      0 12px 28px rgba(151, 28, 32, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .product-highlights__item:hover .product-highlights__icon {
    transform: scale(1.06);
    box-shadow:
      0 6px 16px rgba(91, 17, 20, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

.product-order {
  display: grid;
  gap: 10px;
}

.product-order .consult-card {
  width: 100%;
  min-height: 56px;
}

.product-lower {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.product-tabs {
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.product-cat-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 88px;
  margin: 0;
  padding: 10px 18px;
  border: 1px solid rgba(151, 28, 32, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 50%, rgba(185, 154, 122, 0.22), transparent 42%),
    linear-gradient(135deg, #971c20 0%, #741316 100%);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(151, 28, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-decoration: none;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.product-cat-cta:hover {
  color: #fff;
  filter: brightness(1.05);
  box-shadow:
    0 14px 32px rgba(151, 28, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.product-cat-cta__media {
  flex: 0 0 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 66px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.product-cat-cta__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-cat-cta__copy {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.product-cat-cta__kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.product-cat-cta__text {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.product-cat-cta__arrow {
  position: absolute;
  left: 16px;
  top: 50%;
  flex: 0 0 auto;
  width: 16px;
  height: 24px;
  color: #fff;
  opacity: 0.92;
  transform: translateY(-50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.product-cat-cta:hover .product-cat-cta__arrow {
  opacity: 1;
  transform: translate(-3px, -50%);
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(151, 28, 32, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(185, 154, 122, 0.13) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(151, 28, 32, 0.055) 100%);
  box-shadow:
    0 7px 22px rgba(108, 40, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.product-benefits__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 78px;
  padding: 12px 13px;
  overflow: hidden;
  border: 1px solid rgba(151, 28, 32, 0.09);
  border-radius: 15px;
  background: linear-gradient(145deg, #fff 0%, #fffaf8 100%);
  box-shadow:
    0 3px 11px rgba(99, 39, 41, 0.045),
    inset 0 1px 0 #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-benefits__item::before {
  content: "";
  position: absolute;
  left: -38px;
  bottom: -45px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 154, 122, 0.16) 0%, rgba(151, 28, 32, 0.045) 50%, transparent 72%);
  pointer-events: none;
}

.product-benefits__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(151, 28, 32, 0.22);
  border-radius: 13px;
  background: linear-gradient(145deg, #a52429 0%, #971c20 55%, #7e171b 100%);
  color: #fff;
  box-shadow:
    0 5px 14px rgba(151, 28, 32, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-benefits__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.product-benefits__text {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: #342b2b;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.45;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .product-benefits__item:hover {
    transform: translateY(-3px);
    border-color: rgba(151, 28, 32, 0.22);
    box-shadow:
      0 10px 24px rgba(112, 40, 43, 0.1),
      inset 0 1px 0 #fff;
  }

  .product-benefits__item:hover .product-benefits__icon {
    transform: scale(1.05);
    box-shadow:
      0 8px 18px rgba(151, 28, 32, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .product-benefits__item:hover .product-benefits__text {
    color: #971c20;
  }
}

.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 16px;
  list-style: none;
  border-bottom: 1px solid #ececec;
  background: var(--white);
}

.product-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 22px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.product-tabs__btn:hover {
  color: #d71920;
  border-color: rgba(215, 25, 32, 0.35);
  background: #fff6f6;
}

.product-tabs__btn.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #d71920, #b51218);
  box-shadow: 0 8px 18px rgba(215, 25, 32, 0.22);
}

.product-tabs__panel {
  display: none;
  padding: 30px;
  background: var(--white);
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__heading {
  position: relative;
  margin: 0 0 18px;
  padding-inline-start: 14px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
}

.product-tabs__heading::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 5px;
  height: 24px;
  border-radius: 20px;
  background: #d71920;
}

.product-attrs {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 14px;
}

.product-attrs th,
.product-attrs td {
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
  text-align: start;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}

.product-attrs th {
  width: 38%;
  background: #fafafa;
  color: var(--ink);
  font-weight: 700;
}

.product-attrs td {
  color: #303030;
}

.product-attrs tr:last-child th,
.product-attrs tr:last-child td {
  border-bottom: 0;
}

.product-attrs tr:nth-child(even) th,
.product-attrs tr:nth-child(even) td {
  background: #fcfcfc;
}

.product-tabs__panel .single-comments {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1024px) {
  .product-hero {
    min-height: 480px;
  }

  .product-body {
    margin-top: -200px;
  }

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

  .product-summary {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .product-rating--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-rating--split .product-rating__input {
    padding-inline-start: 0;
    padding-top: 12px;
    border-inline-start: 0;
    border-top: 1px solid rgba(151, 28, 32, 0.1);
  }

  .product-cat-cta {
    gap: 10px;
    min-height: 78px;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .product-cat-cta__media {
    flex-basis: 72px;
    width: 72px;
    height: 54px;
    border-radius: 8px;
  }

  .product-cat-cta__kicker {
    font-size: 11px;
  }

  .product-cat-cta__text {
    font-size: 15px;
  }

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

  .product-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-highlights__item {
    justify-content: flex-start;
    min-height: 56px;
    padding: 10px 14px;
    border-radius: 13px;
  }

  .product-highlights__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: 10px;
  }

  .product-highlights__icon svg {
    width: 21px;
    height: 21px;
  }

  .product-highlights__text {
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .product-hero {
    min-height: 360px;
  }

  .product-body {
    margin-top: -120px;
    margin-bottom: 24px;
  }

  .product-breadcrumb {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .product-stage {
    gap: 16px;
  }

  .product-cat-cta {
    justify-content: flex-start;
    padding: 8px 12px 8px 40px;
    text-align: right;
  }

  .product-cat-cta__copy {
    align-items: flex-start;
  }

  .product-benefits {
    gap: 8px;
    margin-top: 14px;
    padding: 8px;
    border-radius: 16px;
  }

  .product-benefits__item {
    min-height: 68px;
    padding: 10px 11px;
    gap: 10px;
    border-radius: 13px;
  }

  .product-benefits__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .product-benefits__icon svg {
    width: 20px;
    height: 20px;
  }

  .product-benefits__text {
    font-size: 12.5px;
  }

  .product-summary {
    padding: 15px;
    border-radius: 18px;
    gap: 16px;
  }

  .product-gallery__main {
    border-radius: 18px;
  }

  .product-gallery__thumb {
    width: 62px;
    height: 62px;
    border-radius: 12px;
  }

  .product-summary .product-price {
    width: 100%;
    max-width: 100%;
  }

  .product-summary .product-price__value {
    font-size: 21px;
  }

  .product-highlights {
    gap: 8px;
  }

  .product-highlights__item {
    justify-content: flex-start;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow:
      0 5px 14px rgba(151, 28, 32, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }

  .product-highlights__icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 10px;
  }

  .product-highlights__icon svg {
    width: 20px;
    height: 20px;
  }

  .product-highlights__text {
    font-size: 12.5px;
    white-space: nowrap;
  }

  .product-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .product-tabs__btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 13px;
  }

  .product-tabs__panel {
    padding: 18px 14px;
  }

  .product-attrs th,
  .product-attrs td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .product-attrs th {
    width: 42%;
  }
}

@media (max-width: 480px) {
  .product-body {
    margin-top: -100px;
  }

  .product-breadcrumb {
    font-size: 12px;
    gap: 6px;
  }

  .product-stock {
    min-height: 58px;
    padding: 10px 14px;
    gap: 9px;
    border-radius: 14px;
  }

  .product-stock__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .product-stock__icon svg {
    width: 25px;
    height: 25px;
  }

  .product-stock__text {
    font-size: 14px;
  }

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

  .product-highlights {
    gap: 7px;
  }

  .product-highlights__item {
    min-height: 52px;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 11px;
  }

  .product-highlights__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .product-highlights__icon svg {
    width: 19px;
    height: 19px;
  }

  .product-highlights__text {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* ==========================================================================
   Product Archive
   ========================================================================== */

.product-archive .archive-hero__inner,
.search-archive .archive-hero__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 32px, var(--container));
  text-align: right;
}

.product-archive__heading,
.search-archive__heading {
  flex: 1 1 auto;
  min-width: 0;
}

.product-archive .archive-breadcrumb,
.search-archive .archive-breadcrumb {
  justify-content: flex-start;
}

.product-archive .archive-title,
.search-archive .archive-title {
  text-align: right;
}

.product-archive .archive-hero__inner .search-form,
.search-archive .archive-hero__inner .search-form {
  flex: 0 0 400px;
  width: 400px;
  max-width: 100%;
}

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

.product-archive-sidebar {
  min-height: 1px;
}

.archive-filters-open {
  display: none;
}

.archive-filters {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.archive-filters__title {
  margin: 0 4px 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.archive-filter {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #faf8f6;
}

.archive-filter + .archive-filter {
  margin-top: 12px;
}

.archive-filter.is-active {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  background:
    linear-gradient(165deg, #fbf7f3 0%, #f3eee8 100%);
}

.archive-filter__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  color: var(--text);
}

.archive-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: right;
  cursor: pointer;
}

.archive-filter__label {
  font-size: 14px;
  font-weight: 700;
}

.archive-filter__picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.archive-filter.is-active .archive-filter__picks,
.archive-filter.is-active .archive-filter__body {
  border-top-color: color-mix(in srgb, var(--gold) 35%, var(--line));
}

.archive-filter__pick {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  padding-inline-start: 10px;
  border: 1px solid color-mix(in srgb, var(--red) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--red) 9%, var(--white));
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.archive-filter__pick-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-filter__pick-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--red);
  cursor: pointer;
}

.archive-filter__pick-remove svg {
  width: 12px;
  height: 12px;
}

.archive-filter__pick-remove:hover {
  background: var(--red);
  color: var(--white);
}

.archive-filter__icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}

.archive-filter:not(.is-collapsed) .archive-filter__icon {
  transform: rotate(-90deg);
}

.archive-filter__body {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.archive-filter__search {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  margin: 10px 12px 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.archive-filter__scroll {
  max-height: 320px;
  overflow: auto;
  padding: 8px 12px 12px;
}

.archive-filter__search-icon {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
}

.archive-filter__search-input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  outline: none;
}

.archive-filter__search-input::placeholder {
  color: var(--muted);
}

.archive-filter__empty {
  margin: 8px 4px 4px;
  color: var(--muted);
  font-size: 12px;
}

.archive-filter__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-filter__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}

.archive-filter__check {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--red);
}

.archive-filter__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.archive-filter__item .archive-filter__list > .archive-filter__item > .archive-filter__choice {
  padding-inline-start: 18px;
}

.archive-filter__item .archive-filter__list > .archive-filter__item .archive-filter__name {
  font-weight: 400;
}

.archive-filter__item.is-current-parent > .archive-filter__choice {
  color: var(--gold-dark);
}

.archive-filter__item.is-current > .archive-filter__choice,
.archive-filter__item.is-selected > .archive-filter__choice {
  border-color: color-mix(in srgb, var(--red) 24%, var(--line));
  background: color-mix(in srgb, var(--red) 9%, var(--white));
  color: var(--red);
}

.archive-filter__item.is-current > .archive-filter__choice .archive-filter__name,
.archive-filter__item.is-selected > .archive-filter__choice .archive-filter__name {
  font-weight: 700;
}

.archive-filter__item-remove {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-inline-start: auto;
  border-radius: 50%;
  background: color-mix(in srgb, var(--red) 12%, transparent);
  color: var(--red);
}

.archive-filter__item-remove svg {
  width: 12px;
  height: 12px;
}

.archive-filter__item.is-selected > .archive-filter__choice .archive-filter__item-remove {
  display: inline-flex;
}

.archive-filter__choice:hover .archive-filter__item-remove {
  background: var(--red);
  color: var(--white);
}

.product-archive__content {
  min-width: 0;
  scroll-margin-top: 88px;
}

.product-archive__content.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

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

.product-archive__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  margin: 8px auto 12px;
  padding: 40px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 18, 12, 0.06);
  text-align: center;
}

.product-archive__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(151, 28, 32, 0.08);
  color: var(--red);
}

.product-archive__empty-icon svg {
  width: 26px;
  height: 26px;
}

.product-archive__empty-title {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.product-archive__empty-text {
  margin: 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.product-archive__empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.product-archive__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf8f6;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.product-archive__empty-btn:hover {
  border-color: rgba(151, 28, 32, 0.22);
  color: var(--red);
}

.product-archive__empty-btn--solid {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.product-archive__empty-btn--solid:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.product-archive__pager {
  margin-top: 28px;
}

.product-archive__pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-archive__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.product-archive__pager .page-numbers.current,
.product-archive__pager a.page-numbers:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

@media (max-width: 1024px) {
  .product-archive .archive-hero,
  .search-archive .archive-hero {
    padding-bottom: 100px;
  }

  .product-archive:has(.brand-section) .archive-hero {
    padding-bottom: 110px;
  }

  .product-archive .brand-section {
    margin-top: -90px;
  }

  .product-archive .archive-body,
  .search-archive .archive-body {
    z-index: 30;
    margin-top: -80px;
  }

  .product-archive:has(.brand-section) .archive-body {
    margin-top: 16px;
  }

  .product-archive .archive-hero__inner,
  .search-archive .archive-hero__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: right;
  }

  .product-archive .archive-hero__inner .search-form,
  .search-archive .archive-hero__inner .search-form {
    width: 100%;
    flex-basis: auto;
  }

  .search-empty {
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .search-empty__title {
    font-size: 19px;
  }

  .product-archive__empty {
    padding: 32px 18px 26px;
    border-radius: 16px;
  }

  .product-archive__empty-title {
    font-size: 18px;
  }

  .product-archive__layout {
    display: block;
  }

  .product-archive-sidebar {
    height: 0;
    margin: 0;
    min-height: 0;
  }

  .archive-filters-open {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    z-index: 50;
    bottom: 20px;
    left: 50%;
    width: max-content;
    min-height: 50px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(100deg, var(--red-deep), var(--red));
    box-shadow: 0 3px 8px rgba(116, 19, 22, 0.22);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    transform: translateX(-50%);
    cursor: pointer;
  }

  .product-archive-sidebar.is-open .archive-filters-open {
    visibility: hidden;
    pointer-events: none;
  }

  .archive-filters-open svg {
    width: 18px;
    height: 18px;
  }

  .product-archive-sidebar.is-drawer .sheet {
    padding: 0 14px 24px;
    border: 0;
    border-radius: 0;
  }

  .product-archive-sidebar.is-drawer .sheet-head {
    margin: 0 -14px 14px;
  }

  .archive-body:has(.product-archive-sidebar.is-open) {
    z-index: 120;
  }

  .archive-filters__title {
    display: none;
  }

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

@media (max-width: 480px) {
  .product-archive__grid {
    gap: 10px;
  }
}

/* ==========================================================================
   Sibling Categories (cpdav)
   ========================================================================== */

.cpdav {
  --cpdav-gap: 14px;
  --cpdav-cols: 5;

  margin-top: 48px;
  padding: 28px 0 12px;
  overflow-x: clip;
}

.archive-body > .cpdav:first-child {
  margin-top: 0;
  margin-bottom: 32px;
}

.cpdav--children {
  padding: 22px 22px 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 22%, transparent);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 154, 122, 0.16), transparent 42%),
    linear-gradient(165deg, #fbf7f3 0%, #f3eee8 100%);
}

.cpdav__head,
.cpdav__heading,
.cpdav__carousel-tools,
.cpdav__swipe-hint {
  display: flex;
  align-items: center;
}

.cpdav__head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.cpdav__heading {
  gap: 12px;
  min-width: 0;
}

.cpdav__heading-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f8f2ef;
  color: var(--red);
}

.cpdav__heading-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cpdav__titles {
  min-width: 0;
}

.cpdav__eyebrow {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.cpdav__title {
  color: var(--ink);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.cpdav__carousel-tools {
  flex: 0 0 auto;
  gap: 8px;
}

.cpdav__nav,
.cpdav__swipe-hint {
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.cpdav__nav {
  width: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s, color 0.2s, opacity 0.2s;
}

.cpdav__nav svg {
  width: 16px;
  height: 16px;
}

.cpdav__nav:hover:not(:disabled) {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.cpdav__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.cpdav__swipe-hint {
  justify-content: center;
  width: 40px;
  padding: 0;
  border-color: rgba(151, 28, 32, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(151, 28, 32, 0.1), rgba(185, 154, 122, 0.18));
  color: var(--red);
  pointer-events: none;
}

.cpdav__swipe-hint svg {
  width: 20px;
  height: 20px;
  animation: cpdav-swipe 1.4s ease-in-out infinite;
}

.cpdav:not(.cpdav--scrollable) .cpdav__carousel-tools {
  display: none;
}

@keyframes cpdav-swipe {
  50% { transform: translateX(-4px); }
}

.cpdav__grid {
  display: flex;
  gap: var(--cpdav-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cpdav__grid::-webkit-scrollbar {
  display: none;
}

.cpdav__card {
  flex: 0 0 calc((100% - (var(--cpdav-cols) - 1) * var(--cpdav-gap)) / var(--cpdav-cols));
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 154, 122, 0.3);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff 70%, #faf4ee);
  box-shadow: 0 8px 20px rgba(55, 31, 25, 0.06);
  scroll-snap-align: start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cpdav__card:hover {
  border-color: rgba(151, 28, 32, 0.35);
  box-shadow: 0 12px 24px rgba(60, 30, 20, 0.08);
  transform: translateY(-3px);
}

.cpdav__card-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  padding: 10px 10px 12px;
}

.cpdav__photo {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 118px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8f5f2, #eee8e2);
}

.cpdav__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cpdav__content,
.cpdav__arrow {
  margin-top: 10px;
}

.cpdav__content {
  min-width: 0;
}

.cpdav__content strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cpdav__card:hover strong {
  color: var(--red);
}

.cpdav__content small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.cpdav__arrow {
  display: grid;
  place-items: center;
  width: 18px;
  color: var(--red);
  opacity: 0.85;
  transition: transform 0.2s, opacity 0.2s;
}

.cpdav__arrow svg {
  width: 10px;
  height: 14px;
  fill: currentColor;
}

.cpdav__card:hover .cpdav__arrow {
  opacity: 1;
  transform: translateX(-3px);
}

@media (max-width: 1200px) {
  .cpdav {
    --cpdav-cols: 4;
  }
}

@media (max-width: 900px) {
  .cpdav {
    --cpdav-cols: 2.25;
    --cpdav-gap: 12px;
    margin-top: 36px;
    padding-top: 20px;
  }

  .archive-body > .cpdav:first-child {
    margin-top: 0;
  }

  .cpdav--children {
    padding: 16px 14px 10px;
  }

  .cpdav__head {
    align-items: flex-start;
    gap: 12px;
  }

  .cpdav__heading-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .cpdav__title {
    font-size: 16px;
  }

  .cpdav__nav,
  .cpdav__swipe-hint {
    width: 36px;
    height: 36px;
  }

  .cpdav__photo {
    height: 100px;
  }
}

@media (max-width: 560px) {
  .cpdav {
    --cpdav-cols: 1.35;
    margin-top: 28px;
  }

  .cpdav__heading {
    gap: 10px;
  }

  .cpdav__eyebrow {
    font-size: 12px;
  }
}

/* ==========================================================================
   Search
   ========================================================================== */

.search-archive__block {
  margin-bottom: 36px;
}

.search-archive__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(35, 18, 12, 0.08);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.search-archive .archive-grid {
  margin-bottom: 0;
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto 24px;
  padding: 36px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 18, 12, 0.08);
  text-align: center;
}

.search-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(151, 28, 32, 0.08);
  color: var(--red);
}

.search-empty__icon svg {
  width: 24px;
  height: 24px;
}

.search-empty__title {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.search-empty__text {
  margin: 0;
  max-width: 36em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.search-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf8f6;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.search-empty__btn:hover {
  border-color: rgba(151, 28, 32, 0.22);
  color: var(--red);
}

.search-empty__btn--solid {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.search-empty__btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ==========================================================================
   404
   ========================================================================== */

.error-404 {
  min-height: 100vh;
  margin-top: -128px;
  padding: 280px 0 90px;
  background-color: #12090a;
  background-image:
    linear-gradient(115deg, rgba(14, 7, 8, 0.9) 0%, rgba(20, 9, 10, 0.7) 50%, rgba(114, 16, 20, 0.4) 100%),
    url("https://chinpars.com/wp-content/uploads/2026/06/archive-blog.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.error-404__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px 32px;
}

.error-404__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid rgba(185, 154, 122, 0.28);
  border-radius: var(--radius-xl);
  background: rgba(16, 9, 10, 0.78);
}

.error-404__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
}

.error-404__crumb a {
  color: rgba(255, 255, 255, 0.82);
}

.error-404__crumb a:hover {
  color: var(--gold);
}

.error-404__title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
}

.error-404__lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.9;
}

.error-404__copy .search-form {
  width: 100%;
  margin-bottom: 18px;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.error-404__btn svg {
  width: 8px;
  height: 13px;
}

.error-404__btn--solid {
  background: var(--red);
  color: var(--white);
}

.error-404__btn--solid:hover {
  background: var(--gold);
  color: var(--ink);
}

.error-404__btn--ghost {
  border: 1px solid rgba(185, 154, 122, 0.55);
  color: var(--gold);
}

.error-404__btn--ghost:hover {
  background: rgba(185, 154, 122, 0.14);
  color: var(--white);
}

.error-404__num {
  margin: 0;
  min-width: 0;
  color: #f4e6d2;
  font-size: clamp(92px, 11vw, 160px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  user-select: none;
}

@media (max-width: 1024px) {
  .error-404 {
    align-items: flex-start;
    min-height: 0;
    margin-top: -100px;
    padding: 230px 0 64px;
  }

  .error-404__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .error-404__num {
    order: -1;
    font-size: clamp(132px, 36vw, 180px);
  }
}

@media (max-width: 767px) {
  .error-404 {
    margin-top: -90px;
    padding: 210px 0 48px;
    background-image:
      linear-gradient(180deg, rgba(14, 7, 8, 0.88), rgba(20, 9, 10, 0.7)),
      url("https://chinpars.com/wp-content/uploads/2026/06/archiveblog-mobile-e1782215856787.webp");
  }

  .error-404__actions {
    flex-direction: column;
  }

  .error-404__btn {
    width: 100%;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   About Us + Contact Us pages
   ========================================================================== */

.about-page__lead,
.contact-page__lead {
  margin: 10px 0 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about-page__body,
.contact-page__body {
  position: relative;
  z-index: 1;
  margin-top: -111px;
  padding-bottom: 48px;
}

.about-page__story,
.contact-page__intro,
.contact-page__order {
  padding: 34px 36px;
  border: 1px solid #e8e2de;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(35, 18, 12, 0.06);
}

.about-page__story-head,
.contact-page__intro-head,
.contact-page__order-head {
  margin-bottom: 22px;
}

.about-page__consult-head {
  margin-bottom: 18px;
}

.about-page__story-head .eyebrow,
.about-page__consult-head .eyebrow,
.contact-page__intro-head .eyebrow,
.contact-page__order-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.about-page__story-head .eyebrow::before,
.about-page__story-head .eyebrow::after,
.about-page__consult-head .eyebrow::before,
.about-page__consult-head .eyebrow::after,
.contact-page__intro-head .eyebrow::before,
.contact-page__intro-head .eyebrow::after,
.contact-page__order-head .eyebrow::before,
.contact-page__order-head .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.about-page__story-head h2,
.contact-page__intro-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.55;
}

.about-page__consult-head h2,
.contact-page__order-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.55;
}

.about-page__prose,
.contact-page__prose {
  color: #4f4747;
  font-size: 15.5px;
  line-height: 2.05;
  text-align: justify;
}

.about-page__prose p,
.contact-page__prose p {
  margin: 0 0 1.05em;
}

.about-page__prose p:last-child,
.contact-page__prose p:last-child {
  margin-bottom: 0;
}

.about-page__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.about-page__pillar {
  padding: 20px 18px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 16px;
  background: linear-gradient(165deg, #fff 0%, #faf5f1 100%);
}

.about-page__pillar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
}

.about-page__pillar p {
  margin: 0;
  color: #686166;
  font-size: 13.5px;
  line-height: 1.9;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.about-page__action svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}

.about-page__action--primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark, #6b1217));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(151, 28, 32, 0.2);
}

.about-page__action--primary:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.about-page__action--ghost {
  border: 1px solid #e5ddd7;
  background: var(--white);
  color: var(--ink);
}

.about-page__action--ghost:hover {
  border-color: rgba(151, 28, 32, 0.28);
  color: var(--red);
}

.about-page__action-icon,
.contact-page__phone-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(151, 28, 32, 0.08);
  color: var(--red);
  flex-shrink: 0;
}

.about-page__action-icon svg,
.contact-page__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  transform: rotate(-90deg);
}

.about-page__consult {
  margin-top: 36px;
  padding: 28px 30px;
  border: 1px solid #e8e2de;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.contact-page__tagline {
  color: var(--red) !important;
  font-weight: 700;
  text-align: right !important;
}

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

.contact-page__card {
  padding: 24px 22px;
  border: 1px solid rgba(151, 28, 32, 0.12);
  border-radius: 16px;
  background: linear-gradient(165deg, #fff 0%, #faf5f1 100%);
}

.contact-page__card-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-page__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-page__phone:hover {
  border-color: rgba(151, 28, 32, 0.28);
  color: var(--red);
  transform: translateY(-2px);
}

.contact-page__address {
  margin: 0;
  color: #4f4747;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.contact-page__order {
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .about-page__body,
  .contact-page__body {
    margin-top: -100px;
  }

  .about-page__story,
  .contact-page__intro,
  .contact-page__order {
    padding: 28px 22px;
  }

  .about-page__story-head h2,
  .contact-page__intro-head h2 {
    font-size: 26px;
  }

  .about-page__pillars,
  .contact-page__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-page__lead,
  .contact-page__lead {
    font-size: 14.5px;
  }

  .about-page__body,
  .contact-page__body {
    margin-top: -80px;
    padding-bottom: 32px;
  }

  .about-page__story,
  .contact-page__intro,
  .contact-page__order {
    padding: 22px 16px;
  }

  .about-page__story-head h2,
  .contact-page__intro-head h2 {
    font-size: 22px;
  }

  .about-page__prose,
  .contact-page__prose {
    font-size: 14.5px;
    line-height: 1.95;
  }

  .about-page__actions {
    flex-direction: column;
  }

  .about-page__action,
  .contact-page__phone {
    width: 100%;
  }

  .about-page__consult {
    margin-top: 24px;
    padding: 22px 16px;
  }

  .about-page__consult-head h2,
  .contact-page__order-head h2 {
    font-size: 20px;
  }

  .contact-page__card {
    padding: 18px 16px;
  }
}
