:root {
  --navy: #102d49;
  --navy-2: #17466d;
  --blue: #2f6f9f;
  --mist: #eef4f8;
  --line: #d9e3ea;
  --text: #1c2b36;
  --muted: #667684;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 45, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 34px;
}

.brand {
  display: grid;
  gap: 1px;
  flex: 0 0 auto;
}

.brand strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 14px;
  color: #263b4c;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links .nav-quote {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.nav-links .nav-quote:hover {
  color: var(--white);
  background: var(--navy-2);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: var(--navy);
}

.btn.primary:hover {
  background: var(--navy-2);
}

.btn.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn.outline {
  color: var(--navy);
  background: transparent;
  border-color: #b6c9d8;
}

.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 35, 55, 0.5), rgba(15, 35, 55, 0.5)),
    url("../images/hotel-bedding-hero.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 34% 48%, rgba(6, 20, 34, 0.2), rgba(6, 20, 34, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 104px 0 122px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d9e8f2;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}

main section:not(.hero):not(.page-hero) .eyebrow {
  color: var(--blue);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  color: #e8f1f7;
  font-size: 19px;
  max-width: 700px;
}

.hero .lead {
  max-width: 650px;
}

.section-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-feature-section {
  position: relative;
  z-index: 2;
  padding: 0;
  background: var(--white);
}

.hero-feature-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(16, 45, 73, 0.16);
  overflow: hidden;
}

.hero-feature {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 118px;
  padding: 24px 14px;
  text-align: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.hero-feature:last-child {
  border-right: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: #eef6fb;
  border-radius: 50%;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main section {
  padding: 82px 0;
}

.section-muted {
  background: var(--mist);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.info-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.product-card {
  box-shadow: 0 12px 28px rgba(16, 45, 73, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card .body,
.info-card {
  padding: 22px;
}

.product-card p,
.info-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.link-arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

.link-arrow::after {
  content: " >";
}

.feature {
  min-height: 180px;
  padding: 28px;
}

.feature .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid #c8d8e4;
  border-radius: 6px;
  color: var(--navy);
  background: #f7fafc;
}

.capability-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

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

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.wide-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.74), rgba(10, 31, 51, 0.28)),
    url("../images/hotel-room-02.jpg") center/cover no-repeat;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 720px;
  color: #e8f1f7;
  font-size: 18px;
}

.applications-hero {
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.72), rgba(10, 31, 51, 0.26)),
    url("../images/hotel-room-02.jpg") center/cover no-repeat;
}

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

.application-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 45, 73, 0.08);
}

.application-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.application-card .body {
  flex: 1;
  padding: 24px;
}

.application-card h3 {
  margin-bottom: 8px;
}

.application-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-hero {
  padding: 86px 0;
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.about-hero h1 {
  color: var(--navy);
}

.about-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.about-product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 45, 73, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 45, 73, 0.14);
}

.about-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-product-card h3 {
  margin: 0;
  padding: 20px 22px 22px;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.about-process .process-item {
  min-height: 190px;
  align-items: flex-start;
}

.factory-hero {
  padding: 86px 0;
  background: var(--white);
}

.factory-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.factory-hero h1 {
  color: var(--navy);
}

.factory-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.factory-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.factory-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

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

.timeline-step {
  position: relative;
  min-height: 150px;
  padding: 22px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 45, 73, 0.07);
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.timeline-step h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.factory-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 45, 73, 0.09);
}

.factory-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.factory-gallery-item.wide {
  grid-column: span 2;
}

.factory-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.factory-gallery-item:hover img {
  transform: scale(1.035);
}

body[data-product-key] .page-hero,
body:has([data-product-detail]) .page-hero {
  display: none;
}

.category-block {
  margin-bottom: 48px;
}

.category-block h2 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.product-catalogue {
  padding: 96px 0 110px;
}

.catalogue-head {
  margin-bottom: 44px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.catalogue-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 45, 73, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  border-color: #b6c9d8;
  box-shadow: 0 24px 55px rgba(16, 45, 73, 0.14);
}

.catalogue-image {
  overflow: hidden;
  background: var(--mist);
}

.catalogue-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catalogue-card:hover .catalogue-image img {
  transform: scale(1.045);
}

.catalogue-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.catalogue-body h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.catalogue-body p {
  margin-bottom: 28px;
  color: var(--muted);
}

.catalogue-body .btn {
  margin-top: auto;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.detail-panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.detail-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.detail-list ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.74), rgba(10, 31, 51, 0.3)),
    url("../images/hotel-bedding-hero.jpg") center/cover no-repeat;
}

.contact-side {
  display: grid;
  gap: 22px;
}

.contact-info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(16, 45, 73, 0.06);
}

.contact-info-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-info-card dt {
  margin-bottom: 4px;
  color: var(--navy);
  font-weight: 800;
}

.contact-info-card dd {
  margin: 0;
  color: var(--muted);
}

.contact-info-card a {
  color: var(--blue);
  font-weight: 700;
}

.contact-advantages {
  display: grid;
  gap: 14px;
}

.contact-advantage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-advantage .capability-icon {
  margin-bottom: 0;
}

.contact-advantage h3 {
  margin: 0;
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.contact-form label span {
  color: var(--blue);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid #c7d5df;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.contact-form textarea,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(10, 31, 51, 0.74), rgba(10, 31, 51, 0.28)),
    url("../images/hotel-bedding-room.jpg") center/cover no-repeat;
}

.faq-page {
  max-width: 960px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(16, 45, 73, 0.06);
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 22px 24px;
  border: 0;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: #f8fbfd;
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.faq-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer > div {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-answer ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.media-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card .body {
  padding: 18px 20px 22px;
}

.media-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 12px;
  counter-reset: process;
}

.process-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.process-item::before {
  counter-increment: process;
  content: counter(process);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.process-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.certificate-card {
  min-height: 180px;
  display: grid;
  align-content: center;
  padding: 26px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.certificate-card strong {
  color: var(--navy);
  font-size: 26px;
}

.certificate-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.video-card::after {
  content: "Video";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(16, 45, 73, 0.84);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--navy);
  background: var(--mist);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.product-gallery .main {
  min-height: 460px;
}

.gallery-thumbs {
  display: grid;
  gap: 14px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
  padding: 16px 0 72px;
}

.detail-hero-copy h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.detail-hero-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.detail-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-section {
  padding: 78px 0;
}

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

.detail-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.detail-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 450ms ease;
}

.detail-gallery-item:hover img {
  transform: scale(1.035);
}

.detail-info-section {
  margin-inline: 0;
  padding-inline: 0;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.detail-overview-grid .detail-info-block {
  height: 100%;
}

.spec-table-wrap {
  overflow-x: auto;
}

.detail-check-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
}

.detail-info-block,
.detail-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-info-block {
  padding: 28px;
}

.detail-info-block.wide {
  grid-column: 1 / -1;
}

.detail-info-block h3 {
  margin-bottom: 14px;
}

.detail-info-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-info-card {
  min-height: 96px;
  padding: 18px;
}

.detail-info-card h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.detail-packaging-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-packaging-list span {
  padding: 10px 14px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
}

.site-footer {
  padding: 48px 0 28px;
  color: #cfe0eb;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.7fr;
  gap: 28px;
}

.footer-grid-simple {
  align-items: start;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #cfe0eb;
}

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

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #a9bdcb;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #1fae5b;
  box-shadow: 0 14px 30px rgba(31, 174, 91, 0.34);
  font-weight: 800;
}

.quote-panel {
  padding: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.quote-panel h2,
.quote-panel .eyebrow {
  color: var(--white);
}

.quote-panel .section-lead {
  color: #d7e5ef;
}

.quote-panel .btn.primary {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .nav-quote {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0;
  }

  .grid.cols-3,
  .grid.cols-4,
  .hero-feature-card,
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .detail-layout,
  .product-detail-hero,
  .about-hero-grid,
  .factory-hero-grid,
  .product-gallery,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero::before {
    background:
      linear-gradient(rgba(15, 35, 55, 0.58), rgba(15, 35, 55, 0.58)),
      url("../images/hotel-bedding-hero.jpg") center / cover no-repeat;
  }

  .hero-feature-card {
    margin-top: -36px;
  }

  .hero-feature {
    border-bottom: 1px solid var(--line);
  }

  .detail-gallery-grid,
  .detail-info-grid,
  .detail-overview-grid,
  .about-product-grid,
  .about-process,
  .factory-timeline,
  .application-process,
  .applications-grid,
  .detail-card-list {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    min-height: auto;
  }

  .timeline-step::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 28px;
    transform: rotate(135deg);
  }

  .factory-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .factory-gallery-item.large,
  .factory-gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .factory-gallery-item img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .detail-gallery-item.large,
  .detail-info-block.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 21px;
  }

  main section {
    padding: 58px 0;
  }

  .hero-content {
    padding: 70px 0 92px;
  }

  .section-head {
    display: block;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .hero-feature-card,
  .catalogue-grid,
  .image-grid,
  .stats,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-catalogue {
    padding: 64px 0 76px;
  }

  .catalogue-card {
    min-height: auto;
  }

  .hero-feature {
    min-height: auto;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    border-right: 0;
  }

  .quote-panel {
    padding: 28px;
  }

  .contact-form textarea,
  .contact-form .full {
    grid-column: auto;
  }

  .page-hero {
    padding: 70px 0;
  }

  .about-hero {
    padding: 62px 0;
  }

  .factory-hero {
    padding: 62px 0;
  }

  .product-gallery .main {
    min-height: 300px;
  }

  .product-detail-hero {
    gap: 28px;
    padding-bottom: 46px;
  }

  .detail-section {
    padding: 54px 0;
  }

  .detail-hero-image img,
  .detail-gallery-item img {
    min-height: 260px;
  }

  .detail-info-block {
    padding: 22px;
  }
}
