.hero-gradient {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.52) 38%, rgba(15, 23, 42, 0.28) 72%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 20, 48, 0.34) 0%, rgba(9, 20, 48, 0.18) 100%);
}

.home-hero {
  padding-top: clamp(128px, 13vh, 176px);
  padding-bottom: clamp(64px, 8vh, 104px);
}

.soft-gradient-section {
  background:
    radial-gradient(circle at 12% 32%, rgba(40, 168, 232, 0.09), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(228, 90, 32, 0.055), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fd 100%);
}

.trust-strip {
  background: #ffffff;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.75rem 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  padding-bottom: 0.9rem;
}

.product-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0 0 0.55rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: none !important;
  transform: none !important;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.95rem;
  height: 2px;
  background: transparent;
  transition: background-color 0.25s ease;
}

.product-tab:hover {
  color: var(--color-primary);
}

.product-tab:hover::after,
.product-tab.is-active::after {
  background: var(--color-primary);
}

.product-tab.is-active {
  color: var(--color-primary);
}

.product-panel[hidden] {
  display: none !important;
}

.category-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1.5rem;
  align-items: center;
}

.category-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.category-section-kicker span {
  width: 32px;
  height: 3px;
  background: var(--color-primary);
}

.category-section-kicker p {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-section-header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.category-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 0 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-search:focus-within {
  border-color: rgba(228, 90, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(228, 90, 32, 0.08);
}

.category-search .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 20px;
}

.category-search input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0 !important;
  outline: 0 !important;
  background: transparent;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none !important;
  --tw-ring-color: transparent !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

.category-search input:focus,
.category-search input:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.category-search input::placeholder {
  color: rgba(51, 65, 85, 0.58);
}

.category-section-divider {
  height: 1px;
  margin: 1.9rem 0 1.8rem;
  background: var(--color-border);
}

.category-carousel {
  width: 100%;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 1.4rem 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-md);
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.category-card[hidden] {
  display: none;
}

.category-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f8fafc;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.06);
}

.category-card__body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.5rem 0;
  background: #ffffff;
  text-align: center;
}

.category-card__body h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.48fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.product-showcase__intro h2 {
  max-width: 520px;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.product-showcase__intro > p {
  max-width: 520px;
  margin-top: 1.15rem;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.75;
}

.product-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem 1.55rem;
  margin-top: 2rem;
}

.product-category-list a {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  padding: 0.45rem 1.05rem;
  color: rgba(51, 65, 85, 0.62);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.product-category-list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.18rem;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(228, 90, 32, 0.6);
}

.product-category-list a::after {
  content: none;
}

.product-category-list a:hover,
.product-category-list a.is-active {
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #ffffff;
}

.product-category-list a:hover::before,
.product-category-list a.is-active::before {
  opacity: 0;
}

.product-category-list a:focus-visible {
  outline: 2px solid rgba(228, 90, 32, 0.35);
  outline-offset: 3px;
}

.product-category-list:hover a:not(:hover):not(.is-active) {
  color: rgba(51, 65, 85, 0.52);
}

.product-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.1rem;
  min-width: 190px;
  min-height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 1.35rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.22s ease;
}

.product-more-link:hover {
  background: var(--color-primary-dark);
}

.product-more-link .material-symbols-outlined {
  font-size: 18px;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 1.1rem;
}

.product-feature-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
}

.product-feature-card.is-leaving {
  animation: product-feature-leave 160ms ease-in both;
  pointer-events: none;
}

.product-feature-card.is-entering {
  animation: product-feature-enter 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  pointer-events: none;
}

@keyframes product-feature-leave {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes product-feature-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-feature-card img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  object-fit: contain;
  padding: 0.65rem;
  transition: transform 0.45s ease;
}

.product-feature-card:hover img {
  transform: scale(1.045);
}

.product-feature-card h3 {
  display: -webkit-box;
  min-height: 2.4em;
  overflow: hidden;
  padding-top: 0.72rem;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.process-showcase {
  max-width: 1120px;
  margin: 0 auto;
}

.process-showcase__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.process-showcase__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(4, 19, 38, 0.08), rgba(228, 90, 32, 0.08));
}

.process-showcase__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-layout {
  gap: clamp(3.5rem, 6vw, 6rem);
}

.about-section__watermark {
  position: absolute;
  right: clamp(2rem, 7vw, 8rem);
  bottom: clamp(2rem, 5vw, 5rem);
  width: clamp(180px, 16vw, 310px);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.showroom-experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 55%, rgba(40, 168, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fd 100%);
}

.showroom-experience__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: 2rem;
  align-items: end;
}

.showroom-experience__header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.showroom-experience__header > p {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.showroom-experience__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 520px;
  margin-top: 3rem;
}

.showroom-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.showroom-orbit::before,
.showroom-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showroom-orbit::before {
  background: radial-gradient(circle, rgba(40, 168, 232, 0.18) 0 28%, rgba(40, 168, 232, 0.06) 48%, transparent 70%);
}

.showroom-orbit::after {
  border: 1px solid rgba(40, 168, 232, 0.26);
  animation: showroomHalo 2.8s ease-in-out infinite;
}

.showroom-orbit__rings,
.showroom-orbit__rings span {
  position: absolute;
  inset: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.showroom-orbit__rings span {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(40, 168, 232, 0.28);
  box-shadow: 0 0 30px rgba(40, 168, 232, 0.08);
  animation: showroomRipple 4s ease-out infinite;
}

.showroom-orbit__rings span:nth-child(2) {
  animation-delay: 1.3s;
}

.showroom-orbit__rings span:nth-child(3) {
  animation-delay: 2.6s;
}

.showroom-orbit__logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(150px, 13vw, 220px);
  height: clamp(150px, 13vw, 220px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  box-shadow: none;
}

.showroom-orbit__logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.showroom-carousel {
  position: relative;
  min-height: 430px;
  perspective: 1400px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.showroom-carousel.is-dragging {
  cursor: grabbing;
}

.showroom-carousel__stage {
  position: relative;
  height: 430px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.showroom-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(600px, 68%);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72) rotateY(0deg);
  transition: transform 0.58s ease, opacity 0.58s ease, filter 0.58s ease;
}

.showroom-slide.is-active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.showroom-slide.is-prev {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82);
  transform: translate(-106%, -50%) scale(0.68) rotateY(32deg);
}

.showroom-slide.is-next {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82);
  transform: translate(6%, -50%) scale(0.68) rotateY(-32deg);
}

.showroom-slide.is-far {
  z-index: 1;
  opacity: 0.28;
  filter: saturate(0.65) blur(0.2px);
  transform: translate(24%, -50%) scale(0.58) rotateY(-35deg);
}

.showroom-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showroom-slide div {
  padding: 1.2rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.showroom-slide h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.15;
}

.showroom-slide p {
  margin-top: 0.55rem;
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

.showroom-carousel__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
}

.showroom-carousel__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.showroom-carousel__controls button:hover {
  color: #ffffff;
  background: var(--color-primary);
}

@keyframes showroomRipple {
  0% {
    width: 180px;
    height: 180px;
    opacity: 0.72;
  }
  100% {
    width: min(560px, 42vw);
    height: min(560px, 42vw);
    opacity: 0;
  }
}

@keyframes showroomHalo {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #ffffff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

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

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #f1f5f9;
  padding: 1.35rem 1.55rem 1.55rem;
}

.product-card__title,
.product-card__meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title {
  -webkit-line-clamp: 2;
  min-height: 2.8rem;
}

.product-card__meta {
  -webkit-line-clamp: 2;
  min-height: 2.8rem;
  margin-top: 0.65rem;
}

.why-choose-section {
  background-color: #ffffff;
  background-image: url("../images/xx.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 3.5rem;
  align-items: stretch;
}

.why-choose-content {
  max-width: 560px;
  order: 2;
}

.why-choose-visual {
  order: 1;
}

.why-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.why-accordion__item {
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-border);
}

.why-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent !important;
  padding: 1.15rem 0;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: color 0.25s ease;
  box-shadow: none !important;
  transform: none !important;
}

.why-accordion__trigger:hover,
.why-accordion__trigger:focus,
.why-accordion__trigger:focus-visible,
.why-accordion__trigger:active,
.why-accordion__item.is-open .why-accordion__trigger {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--color-primary);
  outline: 0;
  transform: none !important;
}

.why-accordion__trigger .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.why-accordion__item.is-open .why-accordion__trigger .material-symbols-outlined {
  transform: rotate(45deg);
}

.why-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.why-accordion__panel > div {
  overflow: hidden;
}

.why-accordion__panel p {
  max-width: 520px;
  padding: 0 2.5rem 1.15rem 0;
  color: var(--color-slate);
  font-size: 0.98rem;
  line-height: 1.65;
}

.why-accordion__item.is-open .why-accordion__panel {
  grid-template-rows: 1fr;
}

.why-choose-visual {
  min-height: 470px;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background:
    linear-gradient(135deg, rgba(228, 90, 32, 0.1), rgba(40, 168, 232, 0.08)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.why-choose-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-news-section {
  position: relative;
  background-color: #ffffff;
  background-image: url("../images/news/home-news-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.showroom-news-section > .max-w-container-max {
  position: relative;
  z-index: 1;
}

.showroom-news-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.showroom-news-intro h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.showroom-news-intro .category-section-kicker {
  white-space: nowrap;
}

.showroom-news-intro p {
  margin-top: 1rem;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.showroom-news-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.showroom-news-more:hover {
  color: var(--color-primary);
}

.showroom-news-more .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
}

.showroom-news-carousel {
  position: relative;
  min-width: 0;
}

.showroom-news-viewport {
  overflow: hidden;
}

.showroom-news-track {
  --news-gap: 1.25rem;
  display: flex;
  gap: var(--news-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.showroom-news-card {
  display: flex;
  flex: 0 0 calc((100% - (var(--news-gap) * 2)) / 3);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.showroom-news-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fafc;
}

.showroom-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showroom-news-card:hover .showroom-news-card__media img {
  transform: scale(1.035);
}

.showroom-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.showroom-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showroom-news-card__body h3 {
  display: -webkit-box;
  min-height: 3.35rem;
  overflow: hidden;
  margin-top: 0.75rem;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.showroom-news-card__body p {
  display: -webkit-box;
  min-height: 4.8rem;
  overflow: hidden;
  margin-top: 0.85rem;
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.showroom-news-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.showroom-news-card__body a:hover {
  color: var(--color-primary);
}

.showroom-news-card__body a .material-symbols-outlined {
  font-size: 18px;
}

.showroom-news-arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.showroom-news-arrow:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.showroom-news-arrow--prev {
  left: -21px;
}

.showroom-news-arrow--next {
  right: -21px;
}

.inquiry-form {
  border-radius: var(--radius-lg);
}

.inquiry-form input,
.inquiry-form textarea {
  border-radius: var(--radius-sm);
}

.inquiry-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.inquiry-form-actions__button {
  flex: 0 0 168px;
  min-height: 64px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.inquiry-form-actions__email {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

.footer-map {
  display: block;
  width: min(100%, 160px);
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.footer-submit-link {
  border-radius: var(--radius-md);
}

.about-video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.about-video-trigger__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 9999px;
  border: 0;
  background: rgba(228, 90, 32, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  pointer-events: auto;
}

.about-video-trigger__button::before,
.about-video-trigger__button::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: ripplePulse 2.6s ease-out infinite;
}

.about-video-trigger__button::after {
  animation-delay: 1.1s;
}

.about-video-trigger__button:hover {
  background: rgba(200, 47, 30, 0.92);
}

.about-video-trigger__icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.42);
    opacity: 0;
  }

  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .category-search {
    max-width: 420px;
  }

  .category-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase__intro h2,
  .product-showcase__intro > p {
    max-width: 680px;
  }

  .product-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-choose-content {
    max-width: none;
    order: 1;
  }

  .why-choose-visual {
    order: 2;
    min-height: 380px;
  }

  .showroom-news-layout {
    grid-template-columns: 1fr;
  }

  .showroom-news-intro {
    max-width: 680px;
  }

  .showroom-news-card {
    flex-basis: calc((100% - var(--news-gap)) / 2);
  }

  .showroom-experience__header,
  .showroom-experience__body {
    grid-template-columns: 1fr;
  }

  .showroom-orbit {
    min-height: 280px;
  }

  .showroom-carousel,
  .showroom-carousel__stage {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 767px) {
  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-section-header h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .category-search {
    max-width: none;
  }

  .category-section-divider {
    margin: 1.6rem 0 1.5rem;
  }

  .category-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-layout {
    gap: 2.5rem;
  }

  .about-section__watermark {
    right: 1rem;
    bottom: 1rem;
    width: 170px;
    opacity: 0.12;
  }

  .product-showcase__intro h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .product-category-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-showcase__grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .why-accordion__trigger {
    font-size: 1rem;
  }

  .why-choose-visual {
    min-height: 280px;
  }

  .showroom-news-card__body h3 {
    min-height: auto;
    font-size: 1.3rem;
  }

  .showroom-news-card__body p {
    min-height: auto;
  }

  .showroom-news-layout {
    gap: 1.75rem;
  }

  .showroom-news-intro h2 {
    font-size: 30px;
  }

  .showroom-news-card {
    flex-basis: 100%;
  }

  .showroom-news-arrow {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .showroom-news-arrow--prev {
    left: 0;
  }

  .showroom-news-arrow--next {
    right: auto;
    left: 52px;
  }

  .showroom-news-carousel {
    padding-bottom: 58px;
  }

  .showroom-experience__header h2 {
    font-size: 30px;
  }

  .showroom-carousel,
  .showroom-carousel__stage {
    min-height: 360px;
    height: 360px;
  }

  .showroom-slide {
    width: 80%;
  }

  .showroom-slide.is-prev {
    transform: translate(-104%, -50%) scale(0.64) rotateY(24deg);
  }

  .showroom-slide.is-next {
    transform: translate(4%, -50%) scale(0.64) rotateY(-24deg);
  }

  .showroom-carousel__controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .inquiry-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-form-actions__button {
    flex-basis: auto;
    min-height: 54px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
