.product-list-card .button {
  white-space: nowrap;
}

.product-list-card:focus-within {
  border-color: var(--line-strong);
}

.product-list-card {
  grid-template-columns: auto minmax(0, 1fr) minmax(230px, 0.5fr) auto;
}

.product-list-image {
  width: clamp(84px, 10vw, 132px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.62);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-image-placeholder img {
  filter: contrast(1.08) saturate(0.75);
}

@media (max-width: 920px) {
  .product-list-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-list-card .product-properties,
  .product-list-card .button {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .product-list-card {
    grid-template-columns: 1fr;
  }

  .product-list-card .product-properties,
  .product-list-card .button {
    grid-column: auto;
  }

  .product-list-image {
    width: min(42vw, 150px);
  }
}

body[data-page="mord-im-seehotel"] {
  --bg: #000000;
  --bg-deep: #000000;
  --panel: rgba(8, 8, 8, 0.78);
  --panel-solid: #070707;
  --line: rgba(184, 224, 247, 0.13);
  --line-strong: rgba(184, 224, 247, 0.24);
  --text: #e8f2f8;
  --muted: #8ca7b4;
  --accent: #b8e0f7;
  --accent-strong: #d0eeff;
  --ocean: #4db8d4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  background: #000000;
}

body[data-page="mord-im-seehotel"]::before {
  background:
    linear-gradient(90deg, rgba(184, 224, 247, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(184, 224, 247, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 68%);
}

body[data-page="mord-im-seehotel"] .page-noise {
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 24% 22%, rgba(184, 224, 247, 0.46) 0 1px, transparent 1px),
    radial-gradient(circle at 84% 28%, rgba(184, 224, 247, 0.34) 0 1px, transparent 1px),
    radial-gradient(circle at 42% 74%, rgba(184, 224, 247, 0.26) 0 1px, transparent 1px);
  background-size: 150px 150px;
  mix-blend-mode: normal;
}

body[data-page="mord-im-seehotel"] .page-gradient {
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 22%), rgba(77, 184, 212, 0.1), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(184, 224, 247, 0.07), transparent 22%),
    linear-gradient(180deg, transparent 16%, rgba(0, 0, 0, 0.76) 100%);
}

body[data-page="mord-im-seehotel"] .brand-mark {
  background:
    radial-gradient(circle at 35% 35%, #d0eeff, #6bbcd8 55%, #1a6a8a 100%);
  box-shadow: 0 0 22px rgba(77, 184, 212, 0.45);
}

body[data-page="mord-im-seehotel"] .nav-dropdown-menu {
  background: rgba(5, 5, 5, 0.94);
}

body[data-page="mord-im-seehotel"] .main-nav .nav-cta,
body[data-page="mord-im-seehotel"] .button-primary {
  color: #02101e;
  background: linear-gradient(135deg, #c8e8ff 0%, #80c4e0 100%);
  box-shadow: 0 14px 40px rgba(77, 184, 212, 0.25);
}

body[data-page="mord-im-seehotel"] .button-ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.mis-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: clamp(620px, 78vh, 800px);
  padding: clamp(3.5rem, 8vw, 6rem) 0 4rem;
}

.mis-hero-copy {
  position: relative;
  z-index: 2;
}

.mis-hero h1 {
  max-width: 9ch;
}

.mis-hero-media {
  display: grid;
  gap: 1rem;
}

.mis-product-image {
  width: 100%;
  justify-self: stretch;
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.mis-product-image,
.mis-hero-image {
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mis-product-image:hover,
.mis-product-image:focus-within,
.mis-hero-image:hover,
.mis-hero-image:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.64);
}

.mis-product-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1047 / 1503;
  object-fit: cover;
  border-radius: 6px;
}

.mis-hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.mis-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, rgba(77, 184, 212, 0.08), transparent 52%);
  pointer-events: none;
}

.mis-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.9);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(100%, 1180px);
  max-height: min(86vh, 860px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.72);
  object-fit: contain;
}

.image-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.mis-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 1rem;
  align-items: start;
  margin: 2rem 0 5rem;
}

.mis-description,
.mis-info-card,
.mis-feature-band > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(184, 224, 247, 0.055), rgba(184, 224, 247, 0.012)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mis-description {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.mis-description h2 {
  max-width: 13ch;
}

.mis-description p {
  max-width: 48rem;
  color: var(--muted);
}

.mis-info-card {
  padding: 1.25rem;
  position: sticky;
  top: 6rem;
}

.mis-facts {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.mis-facts div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mis-facts dt {
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mis-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.mis-feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 5rem;
}

.mis-feature-band > div {
  min-height: 230px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mis-feature-band span {
  color: var(--accent);
  font-weight: 900;
}

.mis-feature-band p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .mis-hero,
  .mis-detail-layout,
  .mis-feature-band {
    grid-template-columns: 1fr;
  }

  .mis-hero {
    min-height: auto;
  }

  .mis-info-card {
    position: static;
  }

  .mis-product-image {
    justify-self: stretch;
    width: 100%;
  }
}
