@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+TC:wght@100..900&display=swap");
:root {
  --clr-primary-300: oklch(0.8 0.0806 260.95);
  --clr-primary: oklch(0.2839 0.0806 260.95);
  --clr-primary-700: oklch(0.1 0.0806 260.95);
  --clr-secondary-300: oklch(0.8 0.1233 245.99);
  --clr-secondary: oklch(0.5512 0.1233 245.99);
  --clr-secondary-700: oklch(0.3 0.1233 245.99);
  --clr-success-300: oklch(0.8 0.1234 157.01);
  --clr-success: oklch(0.552 0.1234 157.01);
  --clr-success-700: oklch(0.35 0.1234 157.01);
  --clr-warning: oklch(0.8442 0.1722 84.93);
  --clr-danger: oklch(0.5915 0.202 21.24);
  --clr-text: #222222;
  --clr-text-muted: #888888;
  --clr-bg: #ffffff;
  --clr-bg-alt: #f9fafb;
  --clr-border: #e5e7eb;
  --clr-white: #ffffff;
}

.unreset:before,
.clearfloat:before,
.unreset:after,
.clearfloat:after {
  content: "";
  display: block;
}
.unreset:after,
.clearfloat:after {
  clear: both;
}
.unreset,
.clearfloat {
  zoom: 1;
}

.breadcrumb p,
.breadcrumb h1,
.breadcrumb h2,
.breadcrumb h3,
.breadcrumb h4,
.breadcrumb h5,
.breadcrumb h6 {
  margin: 0;
}
.breadcrumb ul,
.breadcrumb ol {
  padding-left: 0;
  margin: 0;
}
.breadcrumb ul {
  list-style: none;
}
.breadcrumb ol {
  padding-left: 20px;
}

.breadcrumb ul,
.breadcrumb ol {
  list-style: none;
  margin-block: 0;
  padding-left: 0;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

[data-animate] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}
[data-animate][data-animate="fade-up"] {
  transform: translateY(30px);
}
[data-animate][data-animate="fade-down"] {
  transform: translateY(-30px);
}
[data-animate][data-animate="fade-left"] {
  transform: translateX(30px);
}
[data-animate][data-animate="fade-right"] {
  transform: translateX(-30px);
}
[data-animate][data-animate="zoom-in"] {
  transform: scale(0.9);
}
[data-animate].is-animated {
  opacity: 1;
  transform: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem)
    clamp(1rem, 0.6rem + 1vw, 1.5rem);
  border-radius: 4px;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus {
  position: fixed;
  top: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  left: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  clip: auto;
  width: auto;
  height: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none;
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Figtree", "Noto Sans TC", sans-serif;
  font-size: 1rem;
  color: var(--clr-text);
  -webkit-text-size-adjust: 100%;
  margin: 0;
  overflow-x: hidden;
}
body.overflow-hidden {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto !important;
}

button {
  cursor: pointer;
}

a {
  transition:
    color 0.4s ease,
    opacity 0.4s ease;
}
a:focus-visible {
  outline: 2px solid var(--clr-success);
  outline-offset: 3px;
}

a,
button {
  text-decoration: none;
  transition: all 0.4s ease;
}

.i-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(25px, 4vw, 60px);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.unreset {
  line-height: initial;
}
.unreset a {
  text-decoration: underline;
  transition: none;
}
.unreset img {
  max-width: 100% !important;
  height: auto !important;
}
.unreset .oembed-provider-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.unreset .oembed-provider-youtube iframe,
.unreset .oembed-provider-youtube object,
.unreset .oembed-provider-youtube embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.unreset p {
  font-size: 1rem;
  line-height: 1.6;
}
.unreset > p {
  margin-top: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--clr-white);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.9375rem, 0.1875rem + 1.875vw, 1.875rem);
  padding-block: clamp(0.75rem, 0.1rem + 1.625vw, 1.5625rem);
}
.header-logo {
  display: block;
  flex-shrink: 0;
}
.header-logo img {
  height: auto;
  width: clamp(6.25rem, 4.75rem + 3.75vw, 8.125rem);
}
.header-nav {
  flex: 1;
}
.header-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem);
}
.header-nav-link {
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  color: var(--clr-text);
  font-weight: 600;
  position: relative;
  padding-block: 4px;
  letter-spacing: 1px;
}
.header-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-secondary);
  transition: width 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-link:hover {
    color: var(--clr-secondary);
  }
  .header-nav-link:hover::after {
    width: 100%;
  }
}
.header-nav-link.is-active {
  color: var(--clr-secondary);
}
.header-nav-link.is-active::after {
  width: 100%;
}
.header-lang {
  flex-shrink: 0;
  position: relative;
}
.header-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 10px 7px 10px;
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
.header-lang-btn::after {
  content: "\f0d7";
  display: inline-block;
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  font-size: 0.75rem;
  margin-top: -3px;
  transition:
    transform 0.4s ease,
    margin-top 0.4s ease;
  opacity: 0.5;
}
.header-lang-btn[aria-expanded="true"] {
  background-color: var(--clr-secondary);
}
.header-lang-btn[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}
@media (hover: hover) and (pointer: fine) {
  .header-lang-btn:hover {
    background-color: var(--clr-secondary-700);
  }
}
.header-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding-inline: 0;
  min-width: 110px;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}
.header-lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-lang-dropdown li + li {
  border-top: 1px solid var(--clr-border);
}
.header-lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: var(--clr-text);
  font-size: clamp(0.8125rem, 0.7125rem + 0.25vw, 0.9375rem);
  white-space: nowrap;
  transition:
    color 0.4s ease,
    background-color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-lang-dropdown a:hover {
    background-color: var(--clr-secondary-300);
    color: var(--clr-white);
  }
}
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.header-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-text);
  border-radius: 2px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.header-toggle.is-active .header-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-toggle.is-active .header-toggle-bar:nth-child(2) {
  opacity: 0;
}
.header-toggle.is-active .header-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@keyframes nav-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .header {
    position: relative;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .header-toggle {
    display: flex;
    margin-left: auto;
  }
  .header-lang {
    order: 2;
  }
  .header-nav {
    background: var(--clr-bg-alt);
    display: none;
    order: 3;
    flex-basis: 100%;
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem)
      clamp(1rem, 0.6rem + 1vw, 1.5rem);
  }
  .header-nav.is-open {
    display: block;
    animation: nav-slide-down 0.7s ease forwards;
  }
  .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header-nav-item {
    width: 100%;
  }
  .header-nav-item:not(:last-child) {
    border-bottom: 1px dashed var(--clr-border);
  }
  .header-nav-link {
    display: block;
    padding-block: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  }
  .header-nav-link::after {
    display: none;
  }
}

.footer {
  background: url(../images/bg-footer.jpg) no-repeat center center;
  background-size: cover;
  padding-top: clamp(0.9375rem, 0.1875rem + 1.875vw, 1.875rem);
}
.footer-nav {
  padding-block: clamp(0.9375rem, 0.1875rem + 1.875vw, 1.875rem);
}
.footer-nav.i-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px clamp(1.5625rem, 0.3125rem + 3.125vw, 3.125rem);
}
.footer-nav-list a {
  font-size: clamp(0.875rem, 0.675rem + 0.5vw, 1.125rem);
  color: var(--clr-white);
  display: block;
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-list a:hover {
    color: var(--clr-secondary-300);
  }
}
.footer-info {
  padding-block: clamp(1.5rem, 0.3rem + 3vw, 3rem);
}
.footer-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.footer-address p {
  font-style: normal;
  color: var(--clr-white);
  font-size: clamp(0.875rem, 0.725rem + 0.375vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.9;
  margin: 0;
}
.footer-address p span {
  display: inline-block;
  white-space: nowrap;
}
.footer-address p span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: clamp(0.75rem, 0.35rem + 1vw, 1.25rem);
}
.footer-address a {
  color: var(--clr-secondary-300);
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-address a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.footer-logo {
  display: block;
  flex-shrink: 0;
}
.footer-logo img {
  height: auto;
  width: clamp(6.25rem, 5rem + 3.125vw, 7.8125rem);
}
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  flex-shrink: 0;
}
.footer-copy-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-copy-inner .cmy {
  color: var(--clr-white);
  font-size: clamp(0.8125rem, 0.6625rem + 0.375vw, 1rem);
  font-weight: 300;
}
.footer-copy-inner p,
.footer-copy-inner b {
  margin: 0;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  color: var(--clr-text-muted);
  text-align: right;
}
.footer-copy-inner b {
  font-weight: normal;
}
@media (max-width: 640px) {
  .footer-nav-list {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-info-inner {
    flex-direction: column;
    gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  }
  .footer-copy {
    align-items: flex-start;
  }
  .footer-copy-inner {
    align-items: flex-start;
  }
  .footer-copy-inner p {
    text-align: left;
  }
}

.page-head {
  background: url(../images/bg-breadcrumb.png) no-repeat;
  background-position: center top;
  margin-top: -10px;
}
.page-head .i-container {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  padding-top: clamp(0.625rem, 0.125rem + 1.25vw, 1.25rem);
  padding-bottom: 13px;
}
.page-head-detail {
  margin-top: 0;
}
.page-head-title {
  color: #e4edfc;
  font-size: 1.625rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-block: 0;
  width: 260px;
  text-align: right;
  padding-right: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .page-head {
    background: linear-gradient(
      110deg,
      var(--clr-primary) calc(260px + clamp(25px, 4vw, 60px)),
      transparent 260px
    );
  }
}
@media (max-width: 1280px) {
  .page-head {
    background: none;
    margin-top: 0;
  }
  .page-head .i-container {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .page-head-title {
    background: var(--clr-primary);
    text-align: center;
    padding: clamp(1rem, 0.6rem + 1vw, 1.5rem) 25px;
    width: 100%;
  }
}

.page-layout {
  background: url(../images/repear-grey.jpg);
  padding-block: clamp(3rem, 1.4rem + 4vw, 5rem);
}
.page-layout-main {
  align-items: flex-start;
  display: flex;
  gap: clamp(2.25rem, 1.65rem + 1.5vw, 3rem) clamp(3rem, 1.4rem + 4vw, 5rem);
}
@media (max-width: 1024px) {
  .page-layout-main {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-layout-inner {
    flex-direction: column;
  }
}
.page-layout-head {
  margin-bottom: 24px;
}
.page-layout-head-title {
  display: flex;
  align-items: baseline;
  gap: clamp(0.9375rem, 0.6875rem + 0.625vw, 1.25rem);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-secondary);
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.page-layout-head-title-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
}
.page-layout-content {
  width: 100%;
}
.page-layout-footer {
  display: flex;
  justify-content: flex-end;
}
.page-layout-footer-btn {
  background: var(--clr-text);
  transform: skewX(-15deg);
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem)
    clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.page-layout-footer-btn span {
  color: var(--clr-white);
  display: block;
  transform: skewX(15deg);
}
.page-layout-footer-btn:hover {
  background: var(--clr-secondary);
}

.empty-row {
  margin-inline: auto;
  padding-block: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  max-width: 640px;
}
.empty-row .empty-img {
  max-width: 100px;
  margin-inline: auto;
}
.empty-row .empty-img img {
  width: 100%;
}
.empty-row .empty-content {
  margin-top: 40px;
  text-align: center;
}
.empty-row .empty-content .empty-content-title {
  color: var(--clr-text);
  font-size: clamp(1.5rem, 0.9rem + 1.5vw, 2.25rem);
  line-height: 1.2;
  margin: 0;
}
.empty-row .empty-content .empty-content-des {
  color: var(--clr-text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
  margin-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
}
.empty-row .empty-ft {
  margin-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
}
.empty-row .empty-ft .empty-ft-link {
  background: #aaa;
  color: var(--clr-white);
  display: block;
  font-size: 1.0625rem;
  margin-inline: auto;
  padding: 15px clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  text-align: center;
  text-decoration: inherit;
  transition: all 0.4s;
  line-height: 1;
  width: 140px;
}
@media (hover: hover) and (pointer: fine) {
  .empty-row .empty-ft .empty-ft-link:hover {
    background: var(--clr-success);
  }
}

.error-row {
  background: url(../images/error-background.svg) no-repeat;
  background-position: center top;
  max-width: 1280px;
  margin-inline: auto;
  padding-block: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.error-row .error-img {
  max-width: 640px;
  margin-inline: auto;
  position: relative;
  width: 100%;
}
.error-row .error-img img {
  width: 100%;
}
.error-row .error-img .error-img-code {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--clr-text);
  font-size: clamp(3.125rem, 0.625rem + 6.25vw, 6.25rem);
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
  margin: 0;
  transform: translate(-57%, -35%);
}
.error-row .error-content {
  margin-top: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  text-align: center;
}
.error-row .error-content .error-content-title {
  color: var(--clr-font);
  font-size: clamp(1.125rem, 0.625rem + 1.25vw, 1.75rem);
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.error-row .error-content .error-content-des {
  margin-top: 25px;
}
.error-row .error-content .error-content-des p {
  color: var(--clr-text-muted);
  font-size: clamp(0.9375rem, 0.8375rem + 0.25vw, 1.0625rem);
  line-height: 1.6;
  margin: 0;
}
.error-row .error-content .error-content-des p:not(:last-child) {
  margin-bottom: 5px;
}
.error-row .error-ft {
  margin-top: clamp(3rem, 1.4rem + 4vw, 5rem);
}
.error-row .error-ft .error-ft-link {
  background: #aaa;
  color: var(--clr-white);
  font-size: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  display: block;
  line-height: 1;
  padding: 15px clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  margin-inline: auto;
  text-align: center;
  text-decoration: inherit;
  text-transform: uppercase;
  transition: all 0.4s;
  width: 140px;
}
.error-row .error-ft .error-ft-link:hover {
  background: #333;
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 40px;
}
.page-box .page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  min-width: clamp(2.0625rem, 1.7125rem + 0.875vw, 2.5rem);
  height: clamp(2.0625rem, 1.7125rem + 0.875vw, 2.5rem);
  padding-inline: 6px;
  color: var(--clr-text);
  font-size: 1rem;
  text-decoration: none;
}
.page-box .page-num::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--clr-secondary);
  transform: skewX(-12deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page-box .page-num:hover {
    color: var(--clr-white);
  }
  .page-box .page-num:hover::before {
    opacity: 1;
  }
}
.page-box .page-num.active {
  color: var(--clr-white);
  font-weight: 600;
}
.page-box .page-num.active::before {
  opacity: 1;
}
.page-box .page-num.page-arrow {
  color: var(--clr-text-muted);
}
.page-box .page-num.page-arrow::before {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .page-box .page-num.page-arrow:hover {
    color: var(--clr-primary);
  }
}
.page-box .page-num.page-arrow i {
  font-size: 0.875rem;
}
.page-box .page-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .page-box .page-select {
    margin: 0;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
  }
}
.page-box .page-select .select-style {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
}
.page-box .page-select select {
  color: var(--clr-text);
  font-size: 0.875rem;
  min-width: 60px;
  padding: 8px 6px;
}
.page-box .page-select span {
  color: var(--clr-text);
  font-size: 0.875rem;
  display: block;
}

button,
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select,
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
input[type="url"],
button {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family: "Figtree", "Noto Sans TC", sans-serif;
  box-shadow: none;
  border: none;
  outline: none;
  line-height: 1.4;
}

select::-ms-expand {
  display: none;
}

.select-style {
  background: var(--clr-white);
  position: relative;
}
.select-style:before {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f0d7";
  display: block;
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  color: var(--clr-text);
  transform: translateY(-50%);
}
.select-style select {
  background: transparent;
  padding-block: 9px;
  padding-inline: 12px 25px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.pw-field {
  position: relative;
}
.pw-field .pw-eye {
  position: absolute;
  top: 50%;
  right: 10px;
  background: none;
  padding: 0;
  transform: translateY(-50%);
  width: 20px;
}
.pw-field .pw-eye.open img {
  display: none;
}
.pw-field .pw-eye.open img:nth-child(2) {
  display: block;
}
.pw-field .pw-eye img {
  width: 100%;
}
.pw-field .pw-eye img:nth-child(2) {
  display: none;
}

.price-fm {
  font-size: 1rem;
  line-height: 1;
}
.price-fm:before {
  content: "NT$";
  display: inline-block;
  padding-right: 5px;
}

.checked-list {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px 8px;
}

.radio-item,
.checked-item {
  align-items: baseline;
  display: inline-flex;
  gap: 8px;
}
.radio-item input,
.checked-item input {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--clr-white);
  margin: 0;
  outline: 1px solid #aaa;
}
.radio-item span,
.checked-item span {
  color: var(--c-font);
  font-size: 1rem;
  line-height: 1.4;
}

.radio-item input {
  border: 2px solid var(--clr-white);
  border-radius: 50%;
}
.radio-item input:checked {
  background: var(--clr-text);
}

.checked-item {
  position: relative;
}
.checked-item:before {
  position: absolute;
  top: 3px;
  left: 1px;
  content: "\f00c";
  color: var(--clr-white);
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  font-size: 0.75rem;
}
.checked-item input {
  border-radius: 15%;
}
.checked-item input:checked {
  outline: 1px solid var(--clr-text);
  background: var(--clr-text);
}

.sitemap-row {
  --num: 5;
  display: grid;
  grid-template-columns: repeat(var(--num), 1fr);
  max-width: 1280px;
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .sitemap-row {
    --num: 4;
  }
}
@media (max-width: 768px) {
  .sitemap-row {
    --num: 3;
  }
}
@media (max-width: 640px) {
  .sitemap-row {
    --num: 2;
  }
}
.sitemap-row a {
  text-decoration: inherit;
}
.sitemap-row .map-item {
  border-right: 1px solid #fff;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.sitemap-row .map-item .title-link {
  background: var(--clr-text);
  color: var(--clr-white);
  display: block;
  font-size: 1.125rem;
  line-height: 1.2;
  padding-block: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  padding-inline: 20px clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}
.sitemap-row .map-item .title-link:hover {
  font-weight: bold;
}
.sitemap-row .map-list {
  border-left: 1px solid #ccc;
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 25px;
  padding-right: 20px;
}
.sitemap-row .map-list li {
  list-style: none;
}
.sitemap-row .map-list > li {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (max-width: 640px) {
  .sitemap-row .map-list > li {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.sitemap-row .map-list .second-link {
  color: var(--clr-text);
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  line-height: 1.3;
}
.sitemap-row .map-list .second-link:hover {
  font-weight: bold;
  position: relative;
}
.sitemap-row .map-list .second-link:hover:before {
  position: absolute;
  top: 4px;
  left: -30px;
  background: #fff;
  content: "\f105";
  color: var(--clr-text);
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  font-size: 1rem;
}
.sitemap-row .third-list {
  padding-left: 25px;
  margin-top: 10px;
}
.sitemap-row .third-list > li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.sitemap-row .third-list .third-link {
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.3;
  position: relative;
}
.sitemap-row .third-list .third-link:before {
  position: absolute;
  top: 4px;
  left: -15px;
  color: #aaa;
  content: "\f0da";
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  font-size: 0.875rem;
}
.sitemap-row .third-list .third-link:hover {
  font-weight: bold;
}
.sitemap-row .third-list .third-link:hover:before {
  color: #333;
}

.page-hero {
  height: clamp(10rem, 8rem + 5vw, 12.5rem);
  overflow: hidden;
}
.page-hero-bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.inner-sidebar {
  width: 260px;
  flex-shrink: 0;
}
.inner-sidebar + * {
  width: 100%;
}
.inner-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.inner-sidebar-item {
  border-bottom: 1px solid #c0c0c0;
}
.inner-sidebar-item:first-child > .inner-sidebar-link {
  /* padding-top: 0; */
}
.inner-sidebar-item.is-active {
  border-bottom: none;
}
.inner-sidebar-item.is-active > .inner-sidebar-link {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-weight: 600;
  transform: skewX(15deg) translateX(8px);
}
.inner-sidebar-item.is-active > .inner-sidebar-link span {
  display: block;
  transform: skewX(-15deg);
}
.inner-sidebar-link {
  display: block;
  padding: clamp(0.625rem, 0.325rem + 0.75vw, 1rem)
    clamp(1rem, 0.6rem + 1vw, 1.5rem);
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  color: var(--clr-text);
  transition:
    color 0.4s ease,
    background-color 0.4s ease,
    font-weight 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .inner-sidebar-link:hover {
    color: var(--clr-secondary);
    font-weight: bold;
  }
}
@media (max-width: 1280px) {
  .inner-sidebar {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  .inner-sidebar {
    width: 100%;
  }
  .inner-sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .inner-sidebar-item {
    border-radius: 20px;
    overflow: hidden;
  }
  .inner-sidebar-item.is-active > .inner-sidebar-link {
    transform: none;
  }
  .inner-sidebar-item.is-active > .inner-sidebar-link span {
    transform: none;
  }
  .inner-sidebar-link {
    background: #fff;
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem)
      clamp(0.9375rem, 0.4875rem + 1.125vw, 1.5rem) !important;
  }
}

.brand-card {
  display: flex;
  align-items: flex-start;
}
.brand-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 50%;
}
.brand-card-list {
  padding-left: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  max-height: 240px;
  overflow-y: auto;
  width: 100%;
}
.brand-card-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand-card-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.25rem, 0.05rem + 0.5vw, 0.5rem);
}
.brand-card-list li::before {
  content: "·";
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: inherit;
}
.brand-card-list li + li {
  margin-top: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}
.brand-card {
  /* total width */
}
.brand-card ::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
}
.brand-card {
  /* background of the scrollbar except button or resizer */
}
.brand-card ::-webkit-scrollbar-track {
  background-color: transparent;
}
.brand-card ::-webkit-scrollbar-track:hover {
  background-color: #f4f4f4;
}
.brand-card {
  /* scrollbar itself */
}
.brand-card ::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 10px;
}
.brand-card ::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
}
.brand-card {
  /* set button(top and bottom of the scrollbar) */
}
.brand-card ::-webkit-scrollbar-button {
  display: none;
}
.brand-card:nth-child(4n + 1) .brand-card-img {
  border-radius: 0 clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem) 0 0;
}
.brand-card:nth-child(4n + 2) .brand-card-img {
  border-radius: 0 0 clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem) 0;
}
.brand-card:nth-child(4n + 3) .brand-card-img {
  border-radius: clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem) 0 0 0;
}
.brand-card:nth-child(4n + 0) .brand-card-img {
  border-radius: 0 0 clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem) 0;
}
.brand-card-spec {
  color: var(--clr-text);
  font-size: clamp(0.9375rem, 0.8375rem + 0.25vw, 1.0625rem);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .brand-card-spec:hover {
    color: var(--clr-secondary);
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .brand-card {
    gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  }
  .brand-card-img {
    border-radius: 0 0 16px 0;
    width: max(120px, 30%);
  }
  .brand-card-list {
    padding-left: 0;
    max-height: initial;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.375rem + 0.625vw, 0.9375rem)
    clamp(0.625rem, 0.125rem + 1.25vw, 1.25rem);
}
.contact-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem) clamp(1rem, 0.6rem + 1vw, 1.5rem);
}
@media (max-width: 768px) {
  .contact-form-row {
    flex-direction: column;
  }
}
.contact-form-gender {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  border: none;
  width: 30%;
}
@media (max-width: 768px) {
  .contact-form-gender {
    width: 100%;
  }
}
.contact-form-field {
  flex-grow: 1;
}
.contact-form-field input,
.contact-form-field textarea {
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  width: 100%;
}
.contact-form-field input.must::-moz-placeholder,
.contact-form-field textarea.must::-moz-placeholder {
  color: var(--clr-secondary);
}
.contact-form-field input.must::placeholder,
.contact-form-field textarea.must::placeholder {
  color: var(--clr-secondary);
}
.contact-form-field input::-moz-placeholder,
.contact-form-field textarea::-moz-placeholder {
  color: var(--clr-text-muted);
}
.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--clr-text-muted);
}
.contact-form-field input,
.contact-form-field textarea {
  transition: border-color 0.4s ease;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--clr-secondary);
}
.contact-form-field textarea {
  resize: none;
}
.contact-form-field.full {
  width: 100%;
}
.contact-form-field.min {
  width: calc((100% - clamp(1rem, 0.6rem + 1vw, 1.5rem) * 2) / 3);
  flex-shrink: 0;
  flex-grow: initial;
}
@media (max-width: 768px) {
  .contact-form-field.min {
    width: 100%;
  }
}
.contact-form-field .g-recaptcha {
  margin-left: auto;
}
.contact-form-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem) clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
@media (max-width: 1280px) {
  .contact-form-btn-row {
    flex-direction: column;
  }
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  min-width: 0;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  color: var(--clr-text-muted);
}
.breadcrumb-item a {
  max-width: 120px;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--clr-text-muted);
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb-item a:hover {
    color: var(--clr-primary);
  }
}
.breadcrumb-item.is-current {
  max-width: 120px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.breadcrumb-item:not(:last-child)::after {
  flex-shrink: 0;
  content: "/";
  margin-inline: 6px;
  color: var(--clr-border);
}
@media (max-width: 1280px) {
  .breadcrumb {
    padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem) 25px;
  }
}

.index-head {
  flex-shrink: 0;
  color: var(--clr-primary);
  margin-bottom: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  text-align: right;
}
.index-head-no {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 8px;
}
.index-head-title {
  font-size: clamp(1.875rem, 1.575rem + 0.75vw, 2.25rem);
  font-weight: bold;
  margin-block: 0;
}
.index-more {
  margin-top: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  text-align: center;
}
.index-more-btn {
  background: var(--clr-white);
  color: var(--clr-secondary);
  display: inline-block;
  font-size: clamp(0.9375rem, 0.8875rem + 0.125vw, 1rem);
  padding: clamp(0.625rem, 0.425rem + 0.5vw, 0.875rem)
    clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  text-decoration: none;
  max-width: 230px;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .index-more-btn:hover {
    background: var(--clr-secondary);
    color: var(--clr-white);
  }
}
.index-more-btn.dark {
  background: var(--clr-secondary);
  color: var(--clr-white);
}
@media (hover: hover) and (pointer: fine) {
  .index-more-btn.dark:hover {
    background: var(--clr-primary);
  }
}
@media (max-width: 640px) {
  .index-more-btn {
    max-width: 180px;
  }
}
.index-banner {
  display: grid;
  grid-template-columns: 1fr 45%;
  position: relative;
}
.index-banner-slider {
  position: relative;
}
.index-banner-swiper {
  -webkit-mask-image: url(../images/mask-index-banner.svg);
  mask-image: url(../images/mask-index-banner.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transform: translateY(clamp(1.5rem, 0.7rem + 2vw, 2.5rem));
}
.index-banner-img {
  aspect-ratio: 870/700;
  overflow: hidden;
}
.index-banner-aw {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  transform: translate(-130%, clamp(1rem, 0.6rem + 1vw, 1.5rem));
}
.index-banner-aw button {
  width: 30px;
  height: 10px;
  background: none;
  padding: 0;
}
.index-banner-aw button polygon,
.index-banner-aw button rect {
  fill: var(--clr-text);
}
@media (hover: hover) and (pointer: fine) {
  .index-banner-aw button:hover polygon,
  .index-banner-aw button:hover rect {
    fill: var(--clr-primary-300);
  }
}
.index-banner-aw button.swiper-button-disabled {
  cursor: initial;
  opacity: 0.2;
}
.index-banner-aw button.swiper-button-disabled polygon,
.index-banner-aw button.swiper-button-disabled rect {
  fill: var(--clr-text);
}
.index-banner-aw-prev {
  transform: rotate(180deg);
}
.index-banner-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/index-banner-bg.png) no-repeat;
  background-position: top left;
  background-size: calc(55% + 16vw);
  z-index: 2;
}
.index-banner-content {
  max-width: min(700px, 50vw);
}
.index-banner-form {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(0.25rem, 0.05rem + 0.5vw, 0.5rem);
  background: var(--clr-white);
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem) 18px;
}
.index-banner-form input {
  color: var(--clr-text);
  font-size: 0.9375rem;
  padding: 0;
  width: 100%;
}
.index-banner-form-sumit {
  background: none;
  border: none;
  border-left: 1px solid var(--clr-border);
  color: var(--clr-text);
  flex-shrink: 0;
  font-size: 1rem;
  padding: 0 0 0 clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}
@media (hover: hover) and (pointer: fine) {
  .index-banner-form-sumit:hover {
    color: var(--clr-secondary);
  }
}
.index-banner-text {
  color: var(--clr-white);
  padding-top: clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem);
}
.index-banner-text-slogon {
  font-size: clamp(2.25rem, 0.05rem + 5.5vw, 5rem);
  font-weight: bold;
  margin-block: 0;
  line-height: 1.25;
  text-box-trim: trim-both;
}
.index-banner-text-des {
  font-size: clamp(0.9375rem, 0.7875rem + 0.375vw, 1.125rem);
  font-weight: 300;
  margin-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .index-banner {
    display: flex;
    flex-direction: column-reverse;
  }
  .index-banner > div:first-child {
    display: none;
  }
  .index-banner-swiper {
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }
  .index-banner-aw {
    left: clamp(1rem, 0.6rem + 1vw, 1.5rem);
    transform: translateY(clamp(1rem, 0.6rem + 1vw, 1.5rem));
  }
  .index-banner-main {
    background-size: 200%;
    background-position: left center;
    position: static;
    padding-block: clamp(3rem, 1.4rem + 4vw, 5rem);
  }
  .index-banner-content {
    max-width: 100%;
  }
  .index-banner-text {
    padding-bottom: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  }
}
.index-about {
  background:
    url(../images/index-about.png) no-repeat center bottom,
    linear-gradient(
      0deg,
      var(--clr-white) 0,
      var(--clr-white) 50px,
      transparent 50px,
      transparent 100%
    ),
    url(../images/repear-grey.jpg);
  padding-block: clamp(3.75rem, -0.25rem + 10vw, 8.75rem);
}
.index-about-main {
  text-align: right;
  margin-left: auto;
  width: 50%;
}
@media (max-width: 768px) {
  .index-about {
    background: url(../images/repear-grey.jpg);
  }
  .index-about-main {
    width: 100%;
  }
}
.index-brands {
  padding-block: clamp(2.5rem, 1rem + 3.75vw, 4.375rem)
    clamp(2.5rem, -2.5rem + 12.5vw, 8.75rem);
}
.index-brands .index-head {
  max-width: 160px;
}
@media (max-width: 768px) {
  .index-brands .index-head {
    text-align: left;
  }
}
.index-brands-list {
  --grid-max-col-count: 3;
  --grid-min-col-size: 260px;
  --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem) var(--grid-gap);
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--grid-col-min-size-calc), 1fr)
  );
  margin-top: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
@media (max-width: 768px) {
  .index-brands-list {
    --grid-max-col-count: 2;
    --grid-min-col-size: 180px;
    --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    --grid-col-size-calc: calc(
      (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
        var(--grid-max-col-count)
    );
    --grid-col-min-size-calc: min(
      100%,
      max(var(--grid-min-col-size), var(--grid-col-size-calc))
    );
    display: grid;
    gap: clamp(3rem, 1.4rem + 4vw, 5rem) var(--grid-gap);
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--grid-col-min-size-calc), 1fr)
    );
  }
}
@media (max-width: 640px) {
  .index-brands-list {
    --grid-max-col-count: 1;
    --grid-min-col-size: 150px;
    --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    --grid-col-size-calc: calc(
      (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
        var(--grid-max-col-count)
    );
    --grid-col-min-size-calc: min(
      100%,
      max(var(--grid-min-col-size), var(--grid-col-size-calc))
    );
    display: grid;
    gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem) var(--grid-gap);
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--grid-col-min-size-calc), 1fr)
    );
  }
}
.index-product-head {
  position: relative;
}
.index-product-head .i-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
}
@media (max-width: 1024px) {
  .index-product-head .i-container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.index-product-head .index-head {
  margin-bottom: 0;
  padding-bottom: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
@media (max-width: 1024px) {
  .index-product-head .index-head {
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .index-product-category-aw {
    position: absolute;
    bottom: 45px;
    left: 25px;
  }
}
.index-product-category-aw {
  background: none;
  flex-shrink: 0;
  padding-bottom: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.index-product-category-aw button {
  background: none;
  color: var(--clr-text);
  padding: 0 clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}
@media (hover: hover) and (pointer: fine) {
  .index-product-category-aw button:hover {
    color: var(--clr-secondary);
  }
}
.index-product-category-link {
  color: var(--clr-text);
  display: inline-block;
  font-size: clamp(0.9375rem, 0.8375rem + 0.25vw, 1.0625rem);
  font-weight: 600;
  position: relative;
}
.index-product-category-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--clr-secondary);
  content: "";
  transform: translateY(clamp(1.5rem, 0.7rem + 2vw, 2.5rem));
  transition: height 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .index-product-category-link:hover:before {
    height: 8px;
  }
}
.swiper-slide.is-active .index-product-category-link:before {
  height: 8px;
}
@media (max-width: 1024px) {
  .index-product-category-swiper {
    order: -1;
  }
}
.index-product-category-swiper .swiper-wrapper {
  padding-bottom: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.index-product-category-swiper .swiper-slide {
  width: auto;
}
.index-product-main {
  background: url(../images/repear-darkGrey.jpg);
  padding-block: clamp(2.5rem, 0rem + 6.25vw, 5.625rem);
}
.index-product-list {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.index-product-list.is-active {
  display: grid;
}
@media (max-width: 768px) {
  .index-product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .index-product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-news {
  background: url(../images/bg-index-news.png) no-repeat;
  background-position: center center;
  padding-block: clamp(2.5rem, -3rem + 13.75vw, 9.375rem)
    clamp(2.5rem, -1.5rem + 10vw, 7.5rem);
  margin-top: calc(clamp(1.5rem, 0.7rem + 2vw, 2.5rem) * -1);
}
.index-news .i-container {
  display: flex;
  gap: 0 clamp(3rem, 1.4rem + 4vw, 5rem);
}
@media (max-width: 768px) {
  .index-news .i-container {
    flex-direction: column;
  }
}
@media (max-width: 1280px) {
  .index-news {
    margin-top: 0;
  }
}
.index-news-main {
  max-width: 960px;
  width: 100%;
}
.index-news-list {
  margin-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  width: 100%;
}
@media (max-width: 1024px) {
  .index-news-list {
    margin-top: 0;
  }
}
.index-news-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  padding-block: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  text-decoration: none;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .index-news-card:hover .index-news-card-title {
    color: var(--clr-secondary);
  }
}
.index-news-card-date {
  color: var(--clr-text-muted);
  flex-shrink: 0;
  font-size: clamp(0.875rem, 0.825rem + 0.125vw, 0.9375rem);
}
.index-news-card-tag {
  color: var(--clr-secondary);
  flex-shrink: 0;
  font-size: clamp(0.875rem, 0.825rem + 0.125vw, 0.9375rem);
  font-weight: 600;
}
.index-news-card-tag::before {
  content: "▪";
  color: var(--clr-primary);
  margin-right: 4px;
}
.index-news-card-title {
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  display: inline-block;
  font-weight: 600;
  transition: color 0.4s ease;
}
@media (max-width: 1024px) {
  .index-news-card:first-child {
    border-top: 1px solid var(--clr-border);
  }
}
@media (max-width: 640px) {
  .index-news-card {
    flex-wrap: wrap;
    gap: clamp(0.25rem, 0.05rem + 0.5vw, 0.5rem);
  }
  .index-news-card-title {
    flex-basis: 100%;
  }
}
.index-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: clamp(2.5rem, 0.5rem + 5vw, 5rem);
}
@media (max-width: 1440px) {
  .index-contact {
    grid-template-columns: 1fr 640px;
    padding-top: clamp(2.5rem, 0.5rem + 5vw, 5rem);
  }
}
@media (max-width: 1280px) {
  .index-contact {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .index-contact {
    background: var(--clr-border);
    grid-template-columns: 1fr;
    gap: clamp(3rem, 1.4rem + 4vw, 5rem);
    padding-inline: 25px;
  }
}
.index-contact-info {
  padding-left: clamp(5rem, 3rem + 5vw, 7.5rem);
}
@media (max-width: 1280px) {
  .index-contact-info {
    padding-left: 25px;
  }
}
@media (max-width: 1024px) {
  .index-contact-info {
    padding-left: 0;
    order: 1;
  }
}
.index-contact-info-address {
  font-style: normal;
  font-size: clamp(0.875rem, 0.725rem + 0.375vw, 1.0625rem);
  line-height: 1.4;
  margin-bottom: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  text-align: right;
}
.index-contact-info-address a {
  color: var(--clr-secondary);
}
.index-contact-info-address p {
  margin-block: 0;
}
.index-contact-info-address p + p {
  margin-top: 4px;
}
.index-contact-info-address span {
  display: inline-block;
  white-space: nowrap;
}
.index-contact-info-address span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: clamp(0.75rem, 0.35rem + 1vw, 1.25rem);
}
@media (max-width: 1024px) {
  .index-contact-info-address {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .index-contact-info {
    padding-left: 0;
  }
}
.index-contact-map {
  aspect-ratio: 4/3;
}
.index-contact-map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .index-contact-map {
    aspect-ratio: 1/1;
    clip-path: none;
  }
}
.index-contact-main {
  padding-inline: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  max-width: 640px;
  margin-top: clamp(2.5rem, 0rem + 6.25vw, 5.625rem);
  width: 100%;
}
.index-contact-main .index-head {
  margin-bottom: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
@media (max-width: 1440px) {
  .index-contact-main {
    margin-top: 0;
  }
}
@media (max-width: 1280px) {
  .index-contact-main {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .index-contact-main {
    padding-inline: 0;
  }
}
.index-contact-form-captcha {
  display: flex;
  justify-content: flex-end;
}
.index-contact-form-submit {
  text-align: right;
  margin-top: 0;
}

.product-card {
  color: var(--clr-white);
  text-decoration: none;
}
.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--clr-bg-alt);
  display: block;
  overflow: hidden;
}
.product-card-img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  width: 100%;
  transition: transform 0.4s ease;
}
.product-card-name {
  color: var(--clr-text);
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.125rem);
  margin-block: clamp(1rem, 0.6rem + 1vw, 1.5rem) 0;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card-img img {
    transform: scale(1.1);
  }
}

.news-content-body {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
}

.news-item {
  align-items: center;
  display: flex;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news-item:hover {
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
}
.news-item-img {
  flex-shrink: 0;
  width: clamp(8.75rem, 1.75rem + 17.5vw, 17.5rem);
}
.news-item-img img {
  aspect-ratio: 280/140;
  overflow: hidden;
}
.news-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(1rem, 0.6rem + 1vw, 1.5rem) clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  width: 100%;
}
.news-item-title {
  font-size: clamp(1.0625rem, 0.9625rem + 0.25vw, 1.1875rem);
  font-weight: 600;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-date {
  font-size: 0.875rem;
  color: var(--clr-secondary);
}
.news-item-desc {
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
  }
  .news-item-img {
    padding-top: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    padding-inline: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    width: 100%;
  }
  .news-item-img img {
    border-radius: 8px;
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .news-item-img {
    padding-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
    padding-inline: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  }
  .news-item-info {
    padding: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  }
}

.brand-grid {
  --grid-max-col-count: 3;
  --grid-min-col-size: 260px;
  --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem) var(--grid-gap);
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--grid-col-min-size-calc), 1fr)
  );
  margin-top: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
@media (max-width: 768px) {
  .brand-grid {
    --grid-max-col-count: 2;
    --grid-min-col-size: 180px;
    --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    --grid-col-size-calc: calc(
      (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
        var(--grid-max-col-count)
    );
    --grid-col-min-size-calc: min(
      100%,
      max(var(--grid-min-col-size), var(--grid-col-size-calc))
    );
    display: grid;
    gap: clamp(3rem, 1.4rem + 4vw, 5rem) var(--grid-gap);
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--grid-col-min-size-calc), 1fr)
    );
  }
}
@media (max-width: 640px) {
  .brand-grid {
    --grid-max-col-count: 1;
    --grid-min-col-size: 150px;
    --grid-gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
    --grid-col-size-calc: calc(
      (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
        var(--grid-max-col-count)
    );
    --grid-col-min-size-calc: min(
      100%,
      max(var(--grid-min-col-size), var(--grid-col-size-calc))
    );
    display: grid;
    gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem) var(--grid-gap);
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--grid-col-min-size-calc), 1fr)
    );
  }
}

.brand-alpha-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(1.875rem, 0.875rem + 2.5vw, 3.125rem);
}
.brand-alpha-filter-item {
  --padding: 5px;
  transition: color 0.4s ease;
  color: var(--clr-text);
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  line-height: 1;
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem) var(--padding);
  text-decoration: none;
}
.brand-alpha-filter-item:not(:last-child)::after {
  content: "|";
  color: #666666;
  padding-left: calc(var(--padding) * 2);
}
@media (hover: hover) and (pointer: fine) {
  .brand-alpha-filter-item:hover {
    color: var(--clr-secondary);
  }
}
.brand-alpha-filter-item.is-active {
  color: var(--clr-secondary);
  font-weight: 600;
}

.page-contact {
  background: url(../images/repear-grey.jpg);
  align-items: center;
  display: grid;
  grid-template-columns: 1fr min(800px, 50%);
  gap: clamp(2.5rem, 1.5rem + 2.5vw, 3.75rem);
}
.page-contact-form .contact-form {
  padding: clamp(1.25rem, 0.25rem + 2.5vw, 2.5rem);
  padding-right: 0;
  margin-left: auto;
  max-width: calc(680px + clamp(1.25rem, 0.25rem + 2.5vw, 2.5rem));
  width: 100%;
}
.page-contact-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.page-contact-map iframe {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 1280px) {
  .page-contact {
    grid-template-columns: 1fr 35%;
  }
  .page-contact-map {
    aspect-ratio: initial;
    height: 100%;
    clip-path: none;
  }
}
@media (max-width: 1024px) {
  .page-contact {
    grid-template-columns: 1fr;
  }
  .page-contact-form {
    order: 1;
    padding: 0 25px clamp(3rem, 1.4rem + 4vw, 5rem);
  }
  .page-contact-form .contact-form {
    margin-right: auto;
    padding: 0;
  }
}

.page-product-filter {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .page-product-filter {
    gap: 60px;
  }
}
.page-product-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-product-toggle-btn {
  background: var(--clr-secondary);
  border-radius: 2px;
  color: var(--clr-white);
  font-size: 0.9375rem;
  display: inline-block;
  padding: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
  text-align: center;
  width: 100px;
}
@media (hover: hover) and (pointer: fine) {
  .page-product-toggle-btn:hover {
    background: var(--clr-primary);
  }
}
.page-product-toggle-btn span:nth-child(2) {
  display: none;
}
.page-product-toggle-btn.is-open span:nth-child(1) {
  display: none;
}
.page-product-toggle-btn.is-open span:nth-child(2) {
  display: inline;
}
.page-product-select-limit {
  margin-bottom: clamp(1.5rem, 0.9rem + 1.5vw, 2.25rem);
}
.page-product-select-label {
  color: var(--clr-text);
  display: inline-block;
  font-size: clamp(0.9375rem, 0.8875rem + 0.125vw, 1rem);
  margin-bottom: clamp(0.3125rem, 0.0625rem + 0.625vw, 0.625rem);
}
.page-product-select-limit {
  --grid-max-col-count: 7;
  --grid-min-col-size: 140px;
  --grid-gap: 20px;
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem) var(--grid-gap);
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--grid-col-min-size-calc), 1fr)
  );
}
.page-product-select-limit .choices__inner {
  background: var(--clr-white);
  font-size: clamp(0.875rem, 0.825rem + 0.125vw, 0.9375rem);
}
.page-product-select-limit .choices__inner:has(.choices__placeholder) {
  background: #a1a6ad;
}
@media (max-width: 768px) {
  .page-product-select-limit {
    gap: 8px 15px;
  }
}
.page-product-spec-main {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem);
  margin-top: clamp(1rem, 0.6rem + 1vw, 1.5rem);
}
.page-product-spec-head {
  display: flex;
  align-items: flex-end;
  gap: clamp(1.5rem, 0.7rem + 2vw, 2.5rem);
}
.page-product-spec-head .page-layout-head-title {
  flex-shrink: 0;
  line-height: 1;
  position: relative;
}
.page-product-spec-head .page-layout-head-title-sub {
  position: absolute;
  top: -10px;
  left: calc(clamp(0.9375rem, 0.6875rem + 0.625vw, 1.25rem) + 16px);
  color: var(--clr-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  .page-product-spec-head .page-layout-head-title-sub {
    top: -5px;
  }
}
.page-product-spec-head:after {
  width: 100%;
  height: 1px;
  background: #dddddd;
  content: "";
}
.page-product-spec-brands-label {
  color: var(--clr-text);
  font-size: clamp(0.875rem, 0.825rem + 0.125vw, 0.9375rem);
  margin-block: 0;
}
.page-product-spec-brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem) clamp(1rem, 0.6rem + 1vw, 1.5rem);
  margin-top: clamp(0.5rem, 0.3rem + 0.5vw, 0.75rem);
}
.page-product-spec-brands-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 6px;
  font-size: clamp(0.875rem, 0.825rem + 0.125vw, 0.9375rem);
}
.page-product-spec-brands-item input[type="checkbox"] {
  accent-color: var(--clr-secondary);
  cursor: pointer;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  margin: 0;
}
.page-product-spec-brands-item span {
  color: var(--clr-text);
}
.page-product-spec-fields {
  --grid-max-col-count: 4;
  --grid-min-col-size: 180px;
  --grid-gap: 20px;
  --grid-col-size-calc: calc(
    (100% - var(--grid-gap) * var(--grid-max-col-count) + var(--grid-gap)) /
      var(--grid-max-col-count)
  );
  --grid-col-min-size-calc: min(
    100%,
    max(var(--grid-min-col-size), var(--grid-col-size-calc))
  );
  display: grid;
  gap: clamp(1rem, 0.6rem + 1vw, 1.5rem) var(--grid-gap);
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--grid-col-min-size-calc), 1fr)
  );
}
.page-product-spec-field {
  display: flex;
  flex-direction: column;
  gap: clamp(0.3125rem, 0.0625rem + 0.625vw, 0.625rem);
}
.page-product-spec-field-label {
  color: var(--clr-text);
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
}
.page-product-spec-field-input {
  background: var(--clr-white);
  border: 1px solid var(--clr-border) !important;
  color: var(--clr-text);
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  height: 40px;
  outline: none;
  padding: 10px;
  width: 100%;
}
.page-product-spec-field-input::-moz-placeholder {
  color: var(--clr-text-muted);
}
.page-product-spec-field-input::placeholder {
  color: var(--clr-text-muted);
}
.page-product-spec-field-input:focus {
  border-color: var(--clr-secondary);
}
.page-product-spec-field-select .choices__inner {
  background: var(--clr-white);
  border-color: var(--clr-border);
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  min-height: 40px;
  padding: 7px 10px 4px;
}
@media (max-width: 768px) {
  .page-product-spec-fields {
    gap: 12px;
  }
}
.page-product-main {
  margin-top: clamp(2.5rem, 1.5rem + 2.5vw, 3.75rem);
  padding-inline: clamp(1.5625rem, -0.1875rem + 4.375vw, 3.75rem);
}
@media (max-width: 768px) {
  .page-product-main::after {
    color: var(--clr-text-muted);
    content: "← scroll →";
    display: block;
    font-size: 12px;
    margin-top: 6px;
    text-align: center;
  }
}
.page-product-table {
  border-collapse: collapse;
  font-size: clamp(0.875rem, 0.775rem + 0.25vw, 1rem);
  min-width: 1300px;
  width: 100%;
}
.page-product-table thead tr {
  background: #444444;
}
.page-product-table th {
  border: 1px solid #eaeaea;
  color: var(--clr-white);
  font-weight: 500;
  padding: clamp(0.75rem, 0.5rem + 0.625vw, 1.0625rem) 12px;
  text-align: center;
  white-space: nowrap;
}
.page-product-table th:nth-child(1) {
  width: 100px;
}
.page-product-table th:nth-child(2),
.page-product-table th:nth-child(3) {
  width: 170px;
}
.page-product-table th:nth-child(4) {
  width: 140px;
}
.page-product-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
}
@media (hover: hover) and (pointer: fine) {
  .page-product-table tbody tr:hover {
    background: var(--clr-bg-alt);
  }
}
.page-product-table td {
  border: 1px solid #eaeaea;
  color: var(--clr-text);
  font-size: 0.875rem;
  padding: clamp(0.75rem, 0.6rem + 0.375vw, 0.9375rem) 14px;
  vertical-align: middle;
}
.page-product-table td:nth-child(1),
.page-product-table td:nth-child(2),
.page-product-table td:nth-child(3) {
  text-align: center;
}
.page-product-table-pdf {
  color: var(--clr-danger);
  font-weight: bold;
  font-size: 0.9375rem;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .page-product-table-pdf:hover {
    opacity: 0.75;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.page-product-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 960px) {
  .page-product-table td {
    padding-inline: 8px;
  }
}
/*# sourceMappingURL=style.css.map */
