/*
功能说明：定义展示站首页、分类页、全部产品页与产品详情页的样式。
主要职责：控制 Hero、产品中心、分类分组、支持页、产品详情和统一卡片版式。
关键依赖：front-page.php、template-products.php、template-company.php、template-contact.php、woocommerce.php、template-parts/showcase_product_card.php。
*/

body.is-image-lightbox-open {
  overflow: hidden;
}

.alpsoptics-home-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.alpsoptics-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 47, 55, 0.2), rgba(102, 108, 118, 0.52));
}

.alpsoptics-home-hero__inner,
.alpsoptics-showcase-groups,
.alpsoptics-product-detail__grid {
  position: relative;
  z-index: 1;
}

.alpsoptics-home-hero__inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 88px;
  text-align: center;
}

.alpsoptics-home-hero__inner h1 {
  margin: 0 0 18px;
  max-width: none;
  color: #fff;
  font-family: var(--ao-font-body);
  font-size: clamp(1.95rem, 3.45vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.23;
  white-space: pre-line;
  text-transform: none;
  text-align: center;
  text-shadow: 0 4px 18px rgba(42, 47, 55, 0.24);
}

.alpsoptics-home-hero__inner p,
.alpsoptics-home-hero__meta {
  margin: 0 auto;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 3px 14px rgba(42, 47, 55, 0.2);
}

.alpsoptics-home-hero__inner > p {
  max-width: none;
  font-size: clamp(0.92rem, 1.15vw, 1rem);
  line-height: 1.55;
  white-space: nowrap;
  text-align: center;
}

.alpsoptics-home-hero__meta {
  margin-top: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.alpsoptics-showcase-section {
  padding: 44px 0 0;
}

.alpsoptics-showcase-section__heading,
.alpsoptics-showcase-group__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.alpsoptics-showcase-section__heading {
  align-items: flex-start;
}

.alpsoptics-showcase-section__heading h2,
.alpsoptics-showcase-group__heading h2,
.alpsoptics-product-detail__copy h1 {
  margin: 8px 0 0;
  font-family: var(--ao-font-body);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.alpsoptics-showcase-section__heading h2,
.alpsoptics-showcase-group__heading h2 {
  font-size: 1.125rem;
}

.alpsoptics-showcase-section__heading h2 {
  margin-top: 0;
}

.alpsoptics-showcase-section__heading .button--ghost {
  display: inline-flex !important;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  color: #fff !important;
  border: 1px solid #E25E29 !important;
  background: #E25E29 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.1;
  text-align: center;
  transition: opacity 0.18s ease;
}

.alpsoptics-showcase-section__heading .button--ghost:hover {
  opacity: 0.85;
}

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

.alpsoptics-showcase-card {
  border: 1px solid rgba(156, 162, 173, 0.24);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(156, 162, 173, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.alpsoptics-showcase-card:hover,
.alpsoptics-showcase-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(118, 124, 136, 0.34);
  box-shadow: 0 16px 34px rgba(156, 162, 173, 0.12);
}

.alpsoptics-showcase-card__link-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.alpsoptics-showcase-card__media {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 20px;
  background: #fff;
}

.alpsoptics-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.alpsoptics-showcase-card:hover .alpsoptics-showcase-card__media img,
.alpsoptics-showcase-card:focus-within .alpsoptics-showcase-card__media img {
  transform: scale(1.03);
}

.alpsoptics-showcase-card__placeholder,
.alpsoptics-product-detail__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 12px;
  background: #eef1f4;
  color: var(--ao-accent-dark);
  text-align: center;
}

.alpsoptics-showcase-card__placeholder span,
.alpsoptics-product-detail__placeholder span {
  max-width: 14ch;
  font-family: var(--ao-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.alpsoptics-showcase-card__body {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 20px;
  background: #f4f5f7;
  border-top: 1px solid rgba(156, 162, 173, 0.12);
}

.alpsoptics-showcase-card__body h3 {
  margin: 0;
  min-height: 2.55em;
  flex: 1 1 auto;
  font-family: var(--ao-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ao-text);
}

.alpsoptics-showcase-card__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156, 162, 173, 0.2);
  border-radius: 999px;
  color: var(--ao-muted);
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.alpsoptics-showcase-card__icon svg {
  width: 15px;
  height: 15px;
}

.alpsoptics-showcase-card__link-wrap:hover .alpsoptics-showcase-card__icon,
.alpsoptics-showcase-card__link-wrap:focus-visible .alpsoptics-showcase-card__icon {
  transform: translateX(2px);
  border-color: rgba(96, 102, 114, 0.32);
  color: var(--ao-text);
  background: rgba(247, 248, 250, 0.98);
}

.alpsoptics-product-detail__copy h1 {
  font-size: 1.125rem;
}

.alpsoptics-product-detail__visual,
.alpsoptics-product-detail__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.alpsoptics-product-detail__visual h1,
.alpsoptics-product-detail__copy h2 {
  margin: 0;
  font-family: var(--ao-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ao-text);
}

.alpsoptics-product-detail__copy p {
  max-width: 70ch;
  color: var(--ao-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.alpsoptics-product-inquiry {
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(156, 162, 173, 0.16);
}

.alpsoptics-product-inquiry h3 {
  margin: 0 0 14px;
  font-family: var(--ao-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ao-text);
}

.alpsoptics-product-inquiry__notice {
  margin: 0 0 14px;
  color: #E25E29;
  font-size: 0.875rem;
  line-height: 1.5;
}

.alpsoptics-product-inquiry__notice--error {
  color: #c72d2d;
}

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

.alpsoptics-product-inquiry__form input,
.alpsoptics-product-inquiry__form textarea {
  width: 100%;
  border: 1px solid rgba(118, 124, 136, 0.34);
  border-radius: 10px;
  background: #fff;
  color: var(--ao-text);
  font-family: var(--ao-font-body);
  font-size: 0.875rem;
  line-height: 1.5;
}

.alpsoptics-product-inquiry__form input {
  height: 46px;
  padding: 0 14px;
}

.alpsoptics-product-inquiry__form textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.alpsoptics-product-inquiry__form button {
  justify-self: start;
  cursor: pointer;
}

.alpsoptics-showcase-group {
  padding: 14px 0 0;
}

.alpsoptics-showcase-group + .alpsoptics-showcase-group {
  margin-top: 34px;
}

.alpsoptics-product-detail__media,
.alpsoptics-product-detail__copy {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(156, 162, 173, 0.07);
  border-radius: 18px;
  box-shadow: var(--ao-shadow);
}

.alpsoptics-product-detail__copy {
  padding: 28px;
}

.alpsoptics-form label span,
.alpsoptics-form input,
.alpsoptics-form textarea,
.alpsoptics-product-detail__highlights {
  font-size: 0.875rem;
  line-height: 1.6;
}

.alpsoptics-contact-page {
  display: block;
}

.alpsoptics-contact-card {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.alpsoptics-contact-card h2 {
  margin: 0 0 22px;
  text-align: left;
  font-family: var(--ao-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ao-text);
}

.alpsoptics-contact-card--success {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: min(80%, 864px);
  margin: 0;
  padding: 0;
  text-align: left;
}

.alpsoptics-contact-card--success p {
  max-width: 42ch;
  margin: 0;
  color: var(--ao-text);
  font-size: 0.875rem;
  line-height: 1.6;
}

.alpsoptics-legal-page {
  display: grid;
  gap: 24px;
}

.alpsoptics-legal-page__header {
  display: block;
  margin-bottom: 0;
}

.alpsoptics-legal-page__header h1 {
  margin: 0;
  font-family: var(--ao-font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ao-text);
}

.alpsoptics-entry--legal {
  max-width: 76ch;
  display: grid;
  gap: 18px;
}

.alpsoptics-entry--legal > p,
.alpsoptics-entry--legal li {
  margin: 0;
  color: var(--ao-text);
  font-size: 0.875rem;
  line-height: 1.7;
}

.alpsoptics-entry--legal section {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(156, 162, 173, 0.16);
}

.alpsoptics-entry--legal section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.alpsoptics-entry--legal h2 {
  margin: 0;
  font-family: var(--ao-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ao-text);
}

.alpsoptics-entry--legal ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.alpsoptics-entry--legal a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.alpsoptics-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(80%, 864px);
  margin: 0;
  gap: 20px;
}

.alpsoptics-contact-form__field {
  display: block;
}

.alpsoptics-contact-form__field--full {
  grid-column: 1 / -1;
}

.alpsoptics-contact-form__field input,
.alpsoptics-contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(118, 124, 136, 0.34);
  border-radius: 10px;
  background: #fff;
  color: var(--ao-text);
  font-family: var(--ao-font-body);
  font-size: 0.875rem;
  line-height: 1.5;
}

.alpsoptics-contact-form__field input {
  height: 60px;
  padding: 0 20px;
}

.alpsoptics-contact-form__field textarea {
  min-height: 260px;
  padding: 18px 20px;
  resize: vertical;
}

.alpsoptics-contact-form__field input::placeholder,
.alpsoptics-contact-form__field textarea::placeholder {
  color: rgba(17, 18, 24, 0.35);
}

.alpsoptics-contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.alpsoptics-contact-errors {
  width: min(80%, 864px);
  margin: 0 0 20px;
  display: grid;
  gap: 14px;
}

.alpsoptics-contact-errors__item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
}

.alpsoptics-contact-errors__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.6px solid #c72d2d;
  background: #fff;
  color: #c72d2d;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
}

.alpsoptics-contact-errors__item p {
  margin: 0;
  color: var(--ao-text);
  font-size: 0.875rem;
  line-height: 1.55;
}

.alpsoptics-contact-form__actions .button--ghost,
.alpsoptics-contact-card--success .button--ghost {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 42px;
  padding: 9px 16px !important;
  border-radius: 10px !important;
  color: #fff !important;
  border: 1px solid #E25E29 !important;
  background: #E25E29 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.1;
  text-align: center;
  transition: opacity 0.18s ease;
}

.alpsoptics-contact-form__actions .button--ghost:hover,
.alpsoptics-contact-card--success .button--ghost:hover {
  opacity: 0.85;
}

.alpsoptics-product-detail {
  padding-top: 48px;
}

.alpsoptics-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
}

.alpsoptics-product-detail__media {
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 24px;
  aspect-ratio: 4 / 3;
}

.alpsoptics-product-detail__media-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.alpsoptics-product-detail__media img,
.alpsoptics-image-lightbox__dialog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alpsoptics-product-detail__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.alpsoptics-product-detail__thumb {
  width: 96px;
  height: 72px;
  padding: 8px;
  border: 1px solid rgba(156, 162, 173, 0.16);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.alpsoptics-product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alpsoptics-product-detail__thumb.is-active,
.alpsoptics-product-detail__thumb:hover,
.alpsoptics-product-detail__thumb:focus-visible {
  border-color: rgba(96, 102, 114, 0.32);
  box-shadow: 0 10px 20px rgba(156, 162, 173, 0.08);
  outline: none;
}

.alpsoptics-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.alpsoptics-image-lightbox[hidden] {
  display: none;
}

.alpsoptics-image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 18, 24, 0.78);
}

.alpsoptics-image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 48px));
  height: min(88vh, 820px);
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(17, 18, 24, 0.22);
}

.alpsoptics-image-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(156, 162, 173, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ao-text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.alpsoptics-product-detail__highlights {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--ao-muted);
}

.alpsoptics-product-detail__highlights li + li {
  margin-top: 8px;
}

.alpsoptics-product-tabs {
  padding: 34px 0 0;
}

.alpsoptics-product-accordion {
  display: none;
}

.alpsoptics-product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.alpsoptics-product-tabs__button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(156, 162, 173, 0.22);
  border-radius: 10px;
  background: #fff;
  color: var(--ao-text);
  font-family: var(--ao-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.alpsoptics-product-tabs__button.is-active,
.alpsoptics-product-tabs__button:hover,
.alpsoptics-product-tabs__button:focus-visible {
  border-color: rgba(96, 102, 114, 0.38);
  box-shadow: 0 10px 22px rgba(156, 162, 173, 0.08);
  outline: none;
}

.alpsoptics-product-tabs__panel {
  border: 1px solid rgba(156, 162, 173, 0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(156, 162, 173, 0.05);
  padding: 22px 24px;
}

.alpsoptics-product-tabs__list {
  margin: 0;
  padding-left: 18px;
  color: var(--ao-text);
  font-size: 0.875rem;
  line-height: 1.7;
}

.alpsoptics-product-tabs__list li + li {
  margin-top: 8px;
}

.alpsoptics-product-tabs__table {
  width: 100%;
  border-collapse: collapse;
}

.alpsoptics-product-tabs__table-wrap {
  overflow-x: auto;
}

.alpsoptics-product-tabs__table th,
.alpsoptics-product-tabs__table td {
  padding: 12px 14px;
  border: 1px solid rgba(156, 162, 173, 0.14);
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.alpsoptics-product-tabs__table th {
  width: 32%;
  background: #f6f7f9;
  font-weight: 600;
}

.alpsoptics-product-tabs__documents {
  display: grid;
  gap: 14px;
}

.alpsoptics-product-tabs__document {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(156, 162, 173, 0.16);
  border-radius: 12px;
  background: #fbfbfc;
  color: var(--ao-text);
}

.alpsoptics-product-tabs__document strong,
.alpsoptics-product-tabs__document span {
  display: block;
}

.alpsoptics-product-tabs__document strong {
  font-size: 0.875rem;
  line-height: 1.4;
}

.alpsoptics-product-tabs__document > div span {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--ao-muted);
}

.alpsoptics-product-tabs__document .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .alpsoptics-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .alpsoptics-home-hero {
    display: none;
  }

  .alpsoptics-showcase-section {
    padding-top: 21px;
  }

  .alpsoptics-contact-page,
  .alpsoptics-product-detail,
  .alpsoptics-legal-page {
    padding-top: 21px;
  }

  .alpsoptics-showcase-group {
    padding-top: 13px;
  }

  .alpsoptics-showcase-section__heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .alpsoptics-showcase-section__heading > div {
    position: relative;
    padding-bottom: 10px;
  }

  .alpsoptics-showcase-section__heading > div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #E25E29;
  }

  .alpsoptics-showcase-section__heading h2,
  .alpsoptics-showcase-group__heading h2,
  .alpsoptics-product-detail__visual h1,
  .alpsoptics-product-detail__copy h2,
  .alpsoptics-contact-card h2,
  .alpsoptics-legal-page__header h1 {
    font-size: 1.125rem;
    line-height: 24px;
  }

  .alpsoptics-showcase-section__heading .button--ghost {
    min-height: 36px;
    padding: 7px 12px !important;
    border-radius: 8px !important;
    font-size: 0.82rem !important;
  }

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

  .alpsoptics-product-detail__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .alpsoptics-product-detail__visual,
  .alpsoptics-product-detail__copy {
    gap: 14px;
  }

  .alpsoptics-showcase-card__media {
    min-height: 154px;
    padding: 14px;
  }

  .alpsoptics-showcase-card__body {
    gap: 10px;
    padding: 12px 12px 14px;
  }

  .alpsoptics-showcase-card__body h3 {
    min-height: 2.8em;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .alpsoptics-showcase-card__icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .alpsoptics-contact-form,
  .alpsoptics-contact-errors,
  .alpsoptics-contact-card--success {
    width: 100%;
    max-width: none;
  }

  .alpsoptics-product-detail__media,
  .alpsoptics-product-detail__copy {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .alpsoptics-product-detail__media {
    min-height: 0;
    padding: 16px;
    border: 1px solid rgba(156, 162, 173, 0.16);
    border-radius: 14px;
    background: #fff;
  }

  .alpsoptics-product-detail__media-button {
    cursor: default;
    pointer-events: none;
  }

  .alpsoptics-product-detail__copy {
    padding: 0;
  }

  .alpsoptics-product-detail__thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .alpsoptics-product-detail__thumb {
    width: 84px;
    height: 63px;
    flex: 0 0 84px;
    padding: 6px;
  }

  .alpsoptics-product-detail__copy p {
    max-width: none;
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .alpsoptics-product-tabs--desktop,
  .alpsoptics-image-lightbox {
    display: none !important;
  }

  .alpsoptics-product-accordion {
    display: block;
    padding: 18px 0 0;
  }

  .alpsoptics-product-accordion__list {
    border-top: 1px solid rgba(156, 162, 173, 0.14);
  }

  .alpsoptics-product-accordion__item {
    border-bottom: 1px solid rgba(156, 162, 173, 0.14);
  }

  .alpsoptics-product-accordion__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 0 4px;
    color: var(--ao-text);
    font-family: var(--ao-font-body);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.35;
    cursor: pointer;
  }

  .alpsoptics-product-accordion__summary::-webkit-details-marker {
    display: none;
  }

  .alpsoptics-product-accordion__arrow {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: rgba(17, 18, 24, 0.72);
    transition: transform 0.18s ease;
  }

  .alpsoptics-product-accordion__arrow svg {
    width: 100%;
    height: 100%;
  }

  .alpsoptics-product-accordion__item[open] .alpsoptics-product-accordion__arrow {
    transform: rotate(180deg);
  }

  .alpsoptics-product-accordion__panel {
    padding: 0 4px 18px;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__list,
  .alpsoptics-product-accordion .alpsoptics-product-tabs__table th,
  .alpsoptics-product-accordion .alpsoptics-product-tabs__table td,
  .alpsoptics-product-accordion .alpsoptics-product-tabs__document strong,
  .alpsoptics-product-accordion .alpsoptics-product-tabs__document > div span {
    font-size: 0.875rem;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__documents {
    gap: 12px;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__document {
    align-items: flex-start;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(156, 162, 173, 0.14);
    border-radius: 0;
    background: transparent;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__document:last-child {
    border-bottom: 0;
  }

  .alpsoptics-product-accordion .alpsoptics-product-tabs__document .button {
    min-height: 36px;
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }

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