:root {
  --company-bg: #fffdfa;
  --text-main: #000000;
  --text-soft: #4f4f4f;
  --text-faint: #858585;
  --text-muted: #b6b9bf;
  --line: #eff2f6;
  --line-dark: #313b4a;
  --card-shadow: 0 20px 50px rgba(18, 17, 39, 0.08);
  --nav-shadow: 0 4px 50px rgba(0, 0, 0, 0.06);
  --gradient-main: linear-gradient(90deg, #ffc341 0%, #ff6200 100%);
  --gradient-soft: linear-gradient(180deg, #ffece0 0%, #fffbf9 42.442%, #ffffff 100%);
  --footer-bg: #1c1609;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1280px;
  font-family: Inter, "Noto Sans SC", "Noto Sans JP", sans-serif;
  color: var(--text-main);
  background: var(--company-bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.company-page {
  background: var(--company-bg);
}

.company-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  background: #ffffff;
  box-shadow: var(--nav-shadow);
}

.company-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #efefef;
}

.company-topbar__inner {
  width: min(1862px, calc(100vw - 58px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.company-brand {
  position: relative;
  width: 128px;
  margin-right: 92px;
}

.company-brand__wordmark {
  width: 128px;
}

.company-nav {
  display: flex;
  gap: 42px;
  font-size: 16px;
  line-height: 33.6px;
  color: #505050;
}

.company-nav__link--active {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.company-lang {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 33.6px;
}

.company-lang img {
  width: 17px;
  height: 17px;
}

.company-shell {
  width: 1200px;
  margin: 0 auto;
}

.company-header {
  position: relative;
  padding-top: 26px;
}

.company-header__cover {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(18, 17, 39, 0.12);
}

.company-header__identity {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  width: calc(100% - 48px);
  margin: -62px auto 0;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(18, 17, 39, 0.12);
  backdrop-filter: blur(14px);
  z-index: 1;
}

.company-header__logo {
  flex: 0 0 95px;
  width: 95px;
  height: 96px;
  object-fit: cover;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(18, 17, 39, 0.14);
}

.company-header__name {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.28;
}

.company-header__text {
  flex: 1;
  min-width: 0;
}

.company-header__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
}

.company-header__meta {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.6px;
  color: var(--text-soft);
}

.company-header__badge,
.company-header__social {
  width: 25px;
  height: 25px;
}

.company-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 16px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--text-faint);
}

.company-breadcrumb img {
  width: 15px;
  height: 15px;
}

.company-layout {
  display: grid;
  grid-template-columns: 250px 935px;
  gap: 15px;
  align-items: start;
}

.company-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company-card {
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.company-profile {
  position: relative;
  min-height: 349px;
  background: var(--gradient-soft);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.company-profile__overlay {
  position: absolute;
  left: 50%;
  top: -1px;
  width: 250px;
  height: 249px;
  transform: translateX(-50%);
  opacity: 0.5;
  object-fit: cover;
}

.company-profile__body {
  position: relative;
  z-index: 1;
  padding: 26px 25px 24px;
}

.company-profile__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.company-profile__member {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1px;
}

.company-profile__member img {
  width: 20px;
  height: 20px;
}

.company-profile__member span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.company-profile__divider {
  margin: 13px -25px 12px;
  border-top: 1px solid var(--line);
}

.company-profile__rows {
  display: grid;
  grid-template-columns: 78px 1fr;
  row-gap: 9px;
  column-gap: 10px;
  font-size: 13px;
  letter-spacing: 1px;
}

.company-profile__rows dt {
  margin: 0;
  line-height: 26px;
  color: var(--text-soft);
  white-space: pre-wrap;
}

.company-profile__rows dd {
  margin: 0;
  line-height: 26px;
  color: var(--text-main);
}

.company-profile__stars {
  display: flex;
  gap: 15px;
  align-items: center;
}

.company-profile__stars img {
  width: 16px;
  height: 16px;
}

.company-category {
  min-height: 376px;
  border-top: 1px solid var(--line);
  padding: 26px 25px 28px;
}

.company-category__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.company-category__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--text-main);
}

.company-category__list a {
  display: block;
}

.company-category__list a.is-active {
  color: #ff7c00;
  font-weight: 600;
}

.company-main {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company-section {
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.company-section__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 29px 18px;
}

.company-section__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
}

.company-section__header h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.company-section__more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.company-section__more img {
  width: 15px;
  height: 15px;
}

.product-strip,
.supply-grid {
  display: grid;
  grid-template-columns: repeat(4, 206.076px);
  gap: 19px;
}

.product-strip {
  padding: 32px 29px 30px;
}

.supply-grid {
  padding: 32px 29px 37px;
}

.supply-grid--four {
  grid-template-rows: repeat(4, auto);
}

.product-card-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card-mini img {
  width: 206.076px;
  height: 229px;
  object-fit: cover;
}

.product-card-mini h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.company-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 289px;
  gap: 20px;
  padding: 24px 24px 27px;
}

.company-summary__text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
}

.company-summary__text span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.company-summary__image {
  width: 289px;
  height: 400px;
  object-fit: cover;
}

.company-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  padding: 24px;
}

.company-detail__text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #333333;
}

.company-detail__image {
  width: 280px;
  height: 320px;
  object-fit: cover;
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
}

.meta-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 24px;
}

.meta-table td:first-child {
  width: 180px;
  color: var(--text-soft);
}

.product-detail {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  padding: 28px 24px 36px;
}

.gallery {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery__thumbs button {
  padding: 0;
  border: 1px solid transparent;
  background: #ffffff;
  cursor: pointer;
}

.gallery__thumbs button.is-active {
  border-color: #ffc341;
}

.gallery__thumbs img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.gallery__main img {
  width: 274px;
  height: 274px;
  object-fit: cover;
}

.eyebrow {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.detail-title {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.18;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-soft);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.price-row strong {
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 46px;
  padding: 0 20px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #ffffff;
  border: 0;
  cursor: pointer;
}

.spec-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.spec-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 24px;
}

.spec-table td:first-child {
  width: 120px;
  color: var(--text-soft);
}

.article-copy {
  padding: 24px;
  font-size: 16px;
  line-height: 32px;
  color: #333333;
}

.inquiry-form {
  padding: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff3e4;
  color: #ff7c00;
  font-size: 14px;
  line-height: 24px;
}

.field {
  margin-top: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #ffffff;
}

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

.product-view-card,
.product-info-card,
.product-inquiry-card {
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

.product-view-card__header,
.product-info-card__header,
.product-inquiry-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 25px 18px 26px;
  border-bottom: 1px solid var(--line);
}

.product-view-card__header h2,
.product-info-card__header h2,
.product-inquiry-card__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.product-view-card__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.product-view-card__more img {
  width: 15px;
  height: 15px;
}

.product-view-card__body {
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr);
  gap: 40px;
  padding: 27px 32px 30px;
}

.product-view-media__main {
  width: 295px;
  height: 295px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-view-media__main img {
  width: 206.076px;
  height: 229px;
  object-fit: cover;
}

.product-view-media__thumbs {
  display: flex;
  gap: 21px;
  margin-top: 14px;
}

.product-view-media__thumb {
  width: 84px;
  height: 83px;
  border: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-view-media__thumb button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-view-media__thumb.is-active {
  border-color: #ffc341;
}

.product-view-media__thumb img {
  width: 55px;
  height: 61px;
  object-fit: cover;
}

.product-view-meta h3 {
  margin: 1px 0 0;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  color: #222222;
}

.product-view-meta__views {
  margin: 12px 0 0;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #4f4f4f;
}

.product-view-meta__stats {
  margin: 26px 0 0;
}

.product-view-meta__stats-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
}

.product-view-meta__stats-row dt {
  margin: 0;
  color: #4f4f4f;
  white-space: pre;
}

.product-view-meta__stats-row dd {
  margin: 0;
  color: #000000;
}

.product-view-meta__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 45px;
  margin-top: 18px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1px;
}

.product-info-card__body {
  padding: 18px 21px 24px;
}

.product-info-specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 7px;
}

.product-info-specs td {
  background: #eef2f6;
  padding: 1px 10px;
  font-size: 11px;
  line-height: 16px;
  color: #1e1e1e;
  vertical-align: middle;
}

.product-info-specs td:first-child {
  width: 78px;
  color: #4f4f4f;
}

.product-overview {
  margin-top: 18px;
}

.product-overview h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.product-overview p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #333333;
  letter-spacing: 0.4px;
}

.product-inquiry-card__body {
  padding: 17px 28px 46px;
}

.product-inquiry-row {
  display: grid;
  grid-template-columns: 65px 485px;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
}

.product-inquiry-row:first-child {
  margin-top: 0;
}

.product-inquiry-row > label {
  padding-top: 1px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #4f4f4f;
}

.product-inquiry-input,
.product-inquiry-textarea {
  width: 100%;
  border: 0.5px solid #e8e8e8;
  border-radius: 6px;
  background: #f6f6f6;
  color: #818181;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
}

.product-inquiry-input {
  height: 28px;
  padding: 1px 12px 0;
}

.product-inquiry-textarea {
  min-height: 131px;
  padding: 1px 12px 0;
  resize: none;
}

.product-inquiry-row--contact {
  grid-template-columns: 65px 485px auto;
}

.product-inquiry-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding-top: 1px;
}

.product-inquiry-option,
.product-inquiry-gender {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
  color: #000000;
}

.product-inquiry-option input,
.product-inquiry-gender input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-inquiry-option img,
.product-inquiry-gender img,
.product-inquiry-option-mark,
.product-inquiry-gender-mark {
  width: 14px;
  height: 14px;
}

.product-inquiry-option-mark,
.product-inquiry-gender-mark {
  flex: 0 0 14px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.product-inquiry-option input:checked + .product-inquiry-option-mark {
  background-image: url("../images/figma/ebcab97c-5bc5-4dce-9fb1-41fb015bc8be.svg");
}

.product-inquiry-option input:not(:checked) + .product-inquiry-option-mark {
  background-image: url("../images/figma/f2f93d0c-2a55-4b5e-b8a9-19553c64a657.svg");
}

.product-inquiry-gender input:checked + .product-inquiry-gender-mark {
  background-image: url("../images/figma/f2f93d0c-2a55-4b5e-b8a9-19553c64a657.svg");
}

.product-inquiry-gender input:not(:checked) + .product-inquiry-gender-mark {
  background-image: url("../images/figma/ebcab97c-5bc5-4dce-9fb1-41fb015bc8be.svg");
}

.product-inquiry-genders {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 1px;
}

.product-inquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 45px;
  margin-top: 14px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding: 24px 0 32px;
}

.pager__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 56px;
  border-radius: 32px;
  background: #ffffff;
}

.pager__icon img {
  width: 24px;
  height: 24px;
}

.pager span {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 37.333px;
  letter-spacing: -0.2px;
  color: #9b9b9b;
}

.pager span.is-active {
  color: #000000;
  font-weight: 600;
}

.company-footer {
  margin-top: 50px;
  background: var(--footer-bg);
  color: #ffffff;
}

.company-footer__main {
  width: min(1660px, calc(100vw - 260px));
  margin: 0 auto;
  padding: 80px 0 104px;
  display: grid;
  grid-template-columns: 320px 177px 199px 160px 1fr;
  gap: 120px;
  align-items: start;
}

.company-footer__brand {
  width: 166px;
}

.company-footer__brand img {
  width: 166px;
}

.company-footer__brand p {
  margin: 26px 0 0;
  width: 220px;
  font-size: 18.667px;
  line-height: 1.6;
  color: var(--text-muted);
}

.company-footer__title {
  margin: 0 0 21px;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 26.667px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.2667px;
}

.company-footer__links {
  display: flex;
  flex-direction: column;
  gap: 26.667px;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 21.333px;
  line-height: 1.6;
  color: var(--text-muted);
  letter-spacing: 0.2133px;
}

.company-footer__company {
  margin: 59px 0 34px;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.company-footer__socials {
  display: flex;
  gap: 10.667px;
}

.company-footer__social {
  width: 42.667px;
  height: 42.667px;
  border: 1.333px solid #ffffff;
  border-radius: 53.333px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-footer__social img {
  width: 21.333px;
  height: 21.333px;
}

.company-footer__copyright {
  border-top: 1.333px solid var(--line-dark);
  text-align: center;
  padding: 49.333px 20px;
  font-family: Poppins, "Noto Sans SC", sans-serif;
  font-size: 18.667px;
  line-height: 1.6;
}

@media (max-width: 1500px) {
  body {
    min-width: 0;
  }

  .company-topbar__inner,
  .company-shell,
  .company-footer {
    min-width: 1280px;
  }
}

@media (max-width: 1180px) {
  body.company-page {
    min-width: 0;
  }

  .company-shell {
    width: min(1200px, calc(100% - 32px));
    min-width: 0;
  }

  .company-header__cover {
    width: 100%;
    height: 280px;
    border-radius: 24px;
  }

  .company-header__identity {
    width: calc(100% - 32px);
    margin-top: -48px;
    padding: 22px 24px;
  }

  .company-layout,
  .company-summary,
  .company-detail,
  .product-view-card__body {
    grid-template-columns: 1fr;
  }

  .product-strip,
  .supply-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-mini img,
  .company-summary__image,
  .company-detail__image {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .product-card-mini img {
    max-width: 206px;
  }

  .company-summary__image,
  .company-detail__image {
    justify-self: stretch;
  }

  .product-view-media__main {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-view-media__main img {
    width: min(70%, 206px);
    height: auto;
  }

  .product-view-media__thumbs {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-view-meta__cta,
  .product-inquiry-submit {
    width: 100%;
    max-width: 320px;
  }

  .product-inquiry-row,
  .product-inquiry-row--contact {
    grid-template-columns: 1fr;
  }

  .product-inquiry-row > label {
    padding-top: 0;
  }

  .pager {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  body.company-page {
    font-size: 14px;
  }

  .company-shell {
    width: calc(100% - 24px);
  }

  .company-header {
    padding-top: 16px;
  }

  .company-header__cover {
    height: 190px;
    border-radius: 18px;
  }

  .company-header__identity {
    width: calc(100% - 16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: -36px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .company-header__logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-basis: 72px;
  }

  .company-header__text {
    width: 100%;
  }

  .company-header__name {
    font-size: 24px;
  }

  .company-header__meta-row {
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .company-header__meta {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.3px;
  }

  .company-breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 12px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.2px;
  }

  .company-layout {
    gap: 12px;
  }

  .company-profile {
    min-height: 0;
  }

  .company-profile__overlay {
    width: 100%;
    height: 180px;
  }

  .company-profile__body,
  .company-category {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-profile__member {
    margin-top: 20px;
  }

  .company-profile__rows {
    grid-template-columns: 70px 1fr;
    row-gap: 8px;
    column-gap: 8px;
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .company-category {
    min-height: 0;
  }

  .company-category__list {
    margin-top: 14px;
    gap: 8px;
  }

  .company-section__header,
  .product-view-card__header,
  .product-info-card__header,
  .product-inquiry-card__header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
  }

  .product-strip,
  .supply-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px 24px;
  }

  .product-card-mini {
    gap: 10px;
  }

  .product-card-mini img {
    max-width: none;
  }

  .product-card-mini h3 {
    white-space: normal;
    font-size: 14px;
  }

  .company-summary,
  .company-detail {
    gap: 16px;
    padding: 20px 16px 24px;
  }

  .company-summary__text,
  .company-detail__text,
  .product-overview p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.2px;
  }

  .product-view-card__body,
  .product-info-card__body,
  .product-inquiry-card__body {
    padding: 20px 16px 24px;
  }

  .product-view-media__main {
    max-width: none;
  }

  .product-view-media__thumbs {
    gap: 10px;
  }

  .product-view-media__thumb {
    width: 72px;
    height: 72px;
  }

  .product-view-meta h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .product-view-meta__views {
    font-size: 14px;
  }

  .product-view-meta__stats {
    margin-top: 18px;
  }

  .product-view-meta__stats-row {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.2px;
  }

  .product-view-meta__stats-row dt {
    white-space: normal;
  }

  .product-view-meta__cta,
  .product-inquiry-submit {
    max-width: none;
    height: 52px;
    margin-top: 20px;
    font-size: 18px;
  }

  .product-info-specs {
    border-spacing: 0;
  }

  .product-info-specs tr {
    display: grid;
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-info-specs td {
    display: block;
    width: 100% !important;
    padding: 8px 10px;
  }

  .product-inquiry-row {
    margin-top: 12px;
  }

  .product-inquiry-input {
    height: 40px;
    padding: 6px 12px;
  }

  .product-inquiry-textarea {
    min-height: 120px;
    padding: 10px 12px;
  }

  .product-inquiry-options,
  .product-inquiry-genders {
    gap: 10px 16px;
  }

  .pager {
    gap: 10px;
    padding: 0 16px 20px;
  }

  .pager span,
  .pager__icon {
    width: 40px;
    height: 40px;
  }
}
