:root {
  --nav-height: 4.5rem;
  /* Site arka planı — koyu sol, geç bordo sağ (açık kenar yok) */
  --laram-site-bg: linear-gradient(
    90deg,
    hsla(353, 29%, 6%, 0.9) 0%,
    hsla(353, 29%, 6%, 0.88) 50%,
    hsla(350, 76%, 14%, 0.85) 70%,
    hsla(351, 76%, 20%, 0.85) 85%,
    hsla(350, 77%, 22%, 0.9) 100%
  );
  --laram-site-bg-fallback: linear-gradient(
    90deg,
    hsl(353, 29%, 6%) 0%,
    hsl(353, 29%, 6%) 50%,
    hsl(350, 76%, 14%) 70%,
    hsl(351, 76%, 20%) 85%,
    hsl(350, 77%, 22%) 100%
  );
  --laram-site-bg-base: hsl(353, 29%, 6%);
  /* Panel — frosted glass (gradient altta görünür) */
  --laram-panel-frost: rgba(18, 6, 10, 0.82);
  --laram-panel-frost-fallback: rgba(18, 6, 10, 0.94);
  --laram-text: #ffffff;
  --laram-text-muted: #e5e5e5;
  --laram-text-dim: rgba(229, 229, 229, 0.72);
  --laram-border: rgba(255, 255, 255, 0.08);
  --laram-glass-bg: rgba(255, 255, 255, 0.08);
  --laram-gold: #d4af37;
  --laram-gold-soft: rgba(196, 160, 53, 0.95);
  --laram-accent-blue: #8ecae6;
  --laram-nav-bg: rgba(20, 11, 12, 0.92);
  --container-max: 72rem;
  --section-padding: 5rem 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  color-scheme: dark;
  background-color: var(--laram-site-bg-base);
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Lexend", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--laram-text);
  background-color: transparent;
  overflow-x: hidden;
}

body.laram-consent-pending,
body.laram-consent-rejected {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- Arka plan ---
   AKTİF: yatay siyah-bordo gradient (--laram-site-bg)
   Önceki: düz #730f1f | radial #880d1e / #dd2d4a
*/

.laram-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--laram-site-bg-base);
  background-image: var(--laram-site-bg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  pointer-events: none;
}

::selection {
  background: rgba(143, 211, 255, 0.28);
  color: #ffffff;
}

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

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

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar — absolute over hero; scrolls away naturally (not fixed/sticky) */

.site-nav.laram-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.site-nav.laram-nav.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(20, 11, 12, 0.95) 0%,
    rgba(115, 15, 31, 0.4) 100%
  );
  backdrop-filter: blur(15px) saturate(140%);
  -webkit-backdrop-filter: blur(15px) saturate(140%);
  border-bottom: 1px solid rgba(115, 15, 31, 0.3);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    0 10px 36px rgba(0, 0, 0, 0.42),
    0 4px 20px rgba(115, 15, 31, 0.12);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-nav.laram-nav.is-scrolled {
    background: rgba(20, 11, 12, 0.96);
    border-bottom: 1px solid rgba(115, 15, 31, 0.3);
  }
}

.site-nav.laram-nav:not(.is-scrolled) .nav-links a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 2rem;
  box-sizing: border-box;
}

.logo {
  flex-shrink: 0;
  margin-right: 1.25rem;
}

.logo img {
  height: 3.25rem;
  width: auto;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  flex-grow: 1;
  justify-content: space-between;
  gap: 0.9375rem;
  list-style: none;
  min-width: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  display: inline-block;
  width: auto;
  padding: 0 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  transition: opacity 260ms ease, color 260ms ease, text-shadow 260ms ease;
}

@media (min-width: 768px) {
  .logo {
    margin-right: 1.5rem;
  }

  .nav-links a {
    padding: 0 0.625rem;
  }
}

.site-nav.laram-nav.is-scrolled .nav-links a {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.site-nav.laram-nav.is-scrolled .nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.site-nav.laram-nav.is-scrolled .logo img {
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(115, 15, 31, 0.25);
}

.site-nav.laram-nav.is-scrolled .laram-lang-switcher__trigger {
  background: rgba(115, 15, 31, 0.42);
  border-color: rgba(115, 15, 31, 0.55);
  color: #ffffff;
  text-shadow: none;
  box-shadow: 0 2px 14px rgba(115, 15, 31, 0.22);
}

.site-nav.laram-nav:not(.is-scrolled) .laram-lang-switcher__trigger {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.nav-links a:hover {
  color: #ffffff;
  opacity: 1;
}

/* Language switcher — premium glass */

.laram-lang-switcher {
  position: relative;
  margin-left: auto;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  flex-shrink: 0;
  z-index: 110;
}

.laram-lang-switcher__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7rem;
}

.laram-lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 15, 31, 0.35);
  background: rgba(20, 11, 12, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.laram-lang-switcher__trigger:hover,
.laram-lang-switcher__trigger[aria-expanded="true"] {
  background: rgba(115, 15, 31, 0.35);
  border-color: rgba(115, 15, 31, 0.55);
  box-shadow: 0 4px 16px rgba(115, 15, 31, 0.25);
}

.laram-lang-switcher__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s ease;
}

.laram-lang-switcher__trigger[aria-expanded="true"] .laram-lang-switcher__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.laram-lang-switcher__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(19rem, calc(100vw - 2rem));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background: rgba(20, 11, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(115, 15, 31, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  animation: lang-panel-in 0.28s ease;
}

@keyframes lang-panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.laram-lang-switcher__panel[hidden] {
  display: none;
}

.laram-lang-switcher__search {
  margin: 0.75rem 0.75rem 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(115, 15, 31, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
}

.laram-lang-switcher__search::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.laram-lang-switcher__search:focus {
  outline: none;
  border-color: rgba(115, 15, 31, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.laram-lang-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem;
}

.laram-lang-switcher__list--primary {
  padding-bottom: 0.25rem;
}

.laram-lang-switcher__more-btn {
  display: block;
  width: calc(100% - 1rem);
  margin: 0.25rem 0.5rem 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px dashed rgba(115, 15, 31, 0.35);
  border-radius: 0.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.laram-lang-switcher__more-btn:hover {
  background: rgba(115, 15, 31, 0.25);
  border-color: rgba(115, 15, 31, 0.55);
  color: #ffffff;
}

.laram-lang-switcher__more-btn[aria-expanded="true"] {
  background: rgba(115, 15, 31, 0.2);
  border-style: solid;
  color: #ffffff;
}

.more-languages-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.more-languages-container.is-expanded {
  max-height: 220px;
}

.laram-lang-switcher__list--more,
.laram-lang-switcher__list--search {
  max-height: 200px;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(115, 15, 31, 0.6) rgba(255, 255, 255, 0.06);
}

.laram-lang-switcher__list--more::-webkit-scrollbar,
.laram-lang-switcher__list--search::-webkit-scrollbar {
  width: 4px;
}

.laram-lang-switcher__list--more::-webkit-scrollbar-track,
.laram-lang-switcher__list--search::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.laram-lang-switcher__list--more::-webkit-scrollbar-thumb,
.laram-lang-switcher__list--search::-webkit-scrollbar-thumb {
  background: rgba(115, 15, 31, 0.55);
  border-radius: 4px;
}

.laram-lang-switcher__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: none;
  border-radius: 0.45rem;
  background: transparent;
  color: #e5e5e5;
  font-family: inherit;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.laram-lang-switcher__option:hover {
  background: #730f1f;
  color: #ffffff;
  padding-left: 1rem;
}

.laram-lang-switcher__option[hidden] {
  display: none;
}

/* i18n loading & toast */

.i18n-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 4, 6, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.i18n-loading-overlay[hidden] {
  display: none;
}

.i18n-loading-text {
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 6, 10, 0.88);
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

body.i18n-is-loading .laram-main {
  pointer-events: none;
}

body.i18n-is-loading .laram-main [data-i18n],
body.i18n-is-loading .laram-main [data-i18n-html] {
  opacity: 0.35;
}

@media (prefers-reduced-motion: no-preference) {
  body.i18n-is-loading .laram-main [data-i18n],
  body.i18n-is-loading .laram-main [data-i18n-html] {
    animation: i18n-shimmer 1.4s ease-in-out infinite;
  }
}

@keyframes i18n-shimmer {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.55;
  }
}

.i18n-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 6, 10, 0.94);
  color: #ffffff;
  font-size: 0.8125rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: opacity 400ms ease, transform 400ms ease;
}

.i18n-toast--hide {
  opacity: 0;
  transform: translateX(-50%) translateY(0.5rem);
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #1a1a1a;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none !important;
}

.hero h1,
.hero-slogan {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  padding: 0 1rem;
  padding-top: var(--nav-height);
  opacity: 0;
  pointer-events: auto;
}

.hero-slogan.is-entering {
  animation: heroSloganFadeIn 1.2s ease forwards;
}

.hero-slogan.is-exiting {
  animation: heroSloganFadeOut 1.2s ease forwards;
}

.hero-slogan.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Scroll-down chevrons */

.scroll-down-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 2rem;
  height: 2.75rem;
  text-decoration: none;
  transform: translateX(-50%);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
  animation: scrollDownSlide 2.4s ease-in-out infinite;
}

.scroll-down-icon.is-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  animation-play-state: paused;
}

.scroll-down-icon span {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-top: -0.35rem;
  opacity: 0.4;
  animation: chevronColorShift 2.4s ease-in-out infinite;
}

.scroll-down-icon span:first-child {
  margin-top: 0;
  opacity: 1;
  animation-delay: 0s;
}

.scroll-down-icon span:nth-child(2) {
  opacity: 0.7;
  animation-delay: 0.2s;
}

.scroll-down-icon span:nth-child(3) {
  opacity: 0.45;
  animation-delay: 0.4s;
}

.scroll-down-icon.is-hidden span {
  animation-play-state: paused;
}

@keyframes chevronColorShift {
  0%,
  100% {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
  }

  50% {
    border-right-color: #d4af37;
    border-bottom-color: #d4af37;
  }
}

@keyframes scrollDownSlide {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (min-width: 768px) {
  .scroll-down-icon {
    width: 2.25rem;
    height: 3.25rem;
    bottom: 36px;
  }

  .scroll-down-icon span {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2.5px;
    margin-top: -0.4rem;
  }
}

@keyframes heroSloganFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroSloganFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* LARAM main — panels & sections (hh-security design) */

.laram-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  color: var(--laram-text-muted);
}

/* Frosted glass panel — gradient site arka planında, üstte buzlu cam */
.laram-panel {
  margin: 1.5rem 0.75rem;
  border-radius: 3rem;
  overflow: hidden;
  background: var(--laram-panel-frost);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px 0 rgba(0, 0, 0, 0.35),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.laram-panel--navy,
.laram-panel--charcoal {
  background: var(--laram-panel-frost);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .laram-site::before {
    background-image: var(--laram-site-bg-fallback);
  }

  .laram-panel,
  .laram-panel--navy,
  .laram-panel--charcoal {
    background: var(--laram-panel-frost-fallback);
  }
}

.laram-panel__inner {
  padding: 2rem 1.25rem 2.5rem;
}

.laram-section.section {
  padding: var(--section-padding);
  background: transparent;
}

.laram-section + .laram-section {
  padding-top: 0;
}

.laram-section:first-child {
  padding-top: 2.5rem;
}

.laram-glass-card {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  border-radius: 1rem;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.laram-glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.section-intro {
  max-width: 52rem;
  margin-bottom: 3rem;
}

.section-intro-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.laram-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

#unternehmen .laram-intro > h2 {
  text-align: center;
}

.laram-intro h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--laram-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.laram-intro .laram-lead,
.laram-intro p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--laram-text-muted);
}

.laram-intro:not(.section-intro-center) {
  border-left: 1px solid var(--laram-border);
  padding-left: 1.5rem;
}

/* Counter grid */

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.counter-box {
  padding: 2rem 1.25rem;
  text-align: center;
}

.counter-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--laram-gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--laram-text-dim);
  line-height: 1.45;
}

/* Mission & Vision */

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.column-block {
  padding: 2rem;
}

.column-block h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laram-gold);
  margin-bottom: 1.25rem;
  text-align: center;
}

.column-block p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--laram-text-muted);
}

/* Product cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  padding: 2rem;
}

.product-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.product-card__media {
  width: 100%;
  line-height: 0;
  background: rgba(0, 0, 0, 0.25);
}

.product-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-card__media--video {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-card__media--video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
}

.product-card h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.product-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--laram-text-muted);
}

/* Quality list */

.quality-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
}

.quality-number {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--laram-gold);
  letter-spacing: 0.06em;
}

.quality-content {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--laram-text-muted);
}

.quality-content strong {
  color: #ffffff;
  font-weight: 500;
}

.quality-content--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.quality-content__text {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.quality-cert-logos {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
  flex-shrink: 0;
}

.quality-cert-logos img {
  display: block;
  height: 7.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(1.05);
}

.quality-cert-logos .quality-cert-logo--iaf {
  height: 13rem;
  max-width: 18rem;
}

.quality-cert-logos--single {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sadece 02 — Kühlkette logosu sağa */
.quality-content--logo-end .quality-cert-logos--single {
  margin-left: 4rem;
}

.quality-cert-logos--pair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.quality-cert-logos .quality-cert-logo--10 {
  height: 10rem;
  width: 10rem;
  max-width: 10rem;
}

.quality-cert-logos .quality-cert-logo--14 {
  height: 14rem;
  width: 14rem;
  max-width: 14rem;
}

/* Contact */

.contact-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-cta__btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  -webkit-tap-highlight-color: transparent;
}

.contact-cta__btn:hover {
  color: #ffffff;
}

.contact-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--laram-gold);
  transition: background 280ms ease, color 280ms ease, transform 280ms ease;
}

.contact-cta__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-cta__btn:hover .contact-cta__icon {
  background: rgba(212, 175, 55, 0.18);
  color: #ffffff;
  transform: scale(1.05);
}

@keyframes contactCtaIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.55);
  }

  50% {
    transform: scale(1.14);
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0);
  }
}

.contact-cta__icon.is-pulse {
  animation: contactCtaIconPulse 1.35s ease-in-out 10;
  background: rgba(212, 175, 55, 0.24);
  color: #ffffff;
}

.contact-cta__label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.contact-cta__detail {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--laram-text-dim);
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: color 280ms ease;
}

.contact-cta__btn:hover .contact-cta__detail {
  color: var(--laram-gold-soft);
}

/* Legal pages (Impressum, Datenschutz) */

.legal-page {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2.5rem) 0 3rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--laram-gold-soft);
  transition: color 260ms ease;
}

.legal-back:hover {
  color: #ffffff;
}

.legal-card {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 2.25rem;
}

.legal-card__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-card__header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.legal-card__header p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--laram-text-dim);
}

.legal-section + .legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laram-gold);
  margin-bottom: 0.85rem;
}

.legal-section p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--laram-text-muted);
}

.legal-section p + p {
  margin-top: 0.85rem;
}

.legal-section strong {
  color: #ffffff;
  font-weight: 500;
}

.legal-section a {
  color: var(--laram-gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 260ms ease;
}

.legal-section a:hover {
  color: #ffffff;
}

.legal-section ul,
.legal-section ol {
  margin-top: 0.75rem;
  padding-left: 1.35rem;
}

.legal-section ul {
  list-style: disc;
}

.legal-section ol {
  list-style: decimal;
}

.legal-section li {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--laram-text-muted);
}

.legal-section li + li {
  margin-top: 0.45rem;
}

.legal-section dl {
  margin-top: 0.75rem;
}

.legal-section dt {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1rem;
}

.legal-section dt:first-child {
  margin-top: 0;
}

.legal-section dd {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--laram-text-muted);
  margin-top: 0.35rem;
}

.legal-section code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

.legal-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: var(--laram-text-dim);
  text-align: center;
}

.legal-footer {
  max-width: 46rem;
  margin: auto auto 0;
  text-align: center;
}

.legal-footer p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--laram-text-dim);
}

.legal-footer a {
  color: var(--laram-gold-soft);
  transition: color 260ms ease;
}

.legal-footer a:hover {
  color: #ffffff;
}

/* Footer */

.laram-footer.site-footer {
  background: transparent;
  padding: 2rem 0 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-nav a {
  transition: color 260ms ease;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.3);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-block {
  max-width: 16rem;
  width: 100%;
  margin-inline: auto;
}

.footer-block h2 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-block p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--laram-text-muted);
}

.footer-block a {
  color: var(--laram-gold);
  transition: color 260ms ease;
}

.footer-block a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.laram-main h1,
.laram-main h2,
.laram-main h3,
.laram-main h4 {
  font-family: "Lexend", "Inter", sans-serif;
}

/* Text animations (hh-security style, vanilla) */

html.laram-animations-ready .laram-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.laram-animations-ready .laram-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.laram-animations-ready .laram-scroll-lines .laram-scroll-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

html.laram-animations-ready .laram-scroll-lines .laram-scroll-line + .laram-scroll-line {
  margin-top: 0.4em;
}

html.laram-animations-ready .laram-scroll-lines.is-inview .laram-scroll-line {
  opacity: 1;
  transform: translateY(0);
}

html.laram-animations-ready .laram-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out;
}

html.laram-animations-ready .laram-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav — no hamburger, compact single row */

@media (max-width: 767px) {
  :root {
    --nav-height: 3.5rem;
    --section-padding: 3.5rem 0;
  }

  .laram-panel {
    margin: 1rem 0.75rem;
    border-radius: 2rem;
  }

  .laram-panel__inner {
    padding: 1.25rem 0.75rem 1.5rem;
  }

  .laram-intro:not(.section-intro-center) {
    padding-left: 1rem;
  }

  .site-nav {
    justify-content: flex-start;
    padding: 0 0.75rem;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    flex-shrink: 0;
    margin-right: 0.625rem;
  }

  .logo img {
    height: 2.125rem;
  }

  .nav-links {
    position: static;
    transform: none;
    flex: 1 1 auto;
    flex-grow: 1;
    justify-content: space-between;
    gap: 0.625rem;
    overflow: visible;
  }

  .nav-links li {
    flex: 0 0 auto;
    overflow: visible;
  }

  .nav-links a {
    width: auto;
    font-size: clamp(0.625rem, 2.6vw, 0.8125rem);
    letter-spacing: 0.015em;
    padding: 0 0.25rem;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    text-align: left;
  }

  .laram-lang-switcher {
    flex-shrink: 0;
    margin-left: auto;
    padding-left: clamp(0.75rem, 3.5vw, 1.5rem);
  }

  .laram-lang-switcher__trigger {
    font-size: 0.6875rem;
    padding: 0.35rem 0.55rem;
  }

  .laram-lang-switcher__panel {
    right: -0.5rem;
    width: min(16rem, calc(100vw - 1.5rem));
  }

  .container {
    padding: 0 1.25rem;
  }

  .desktop-video {
    display: none !important;
  }

  .mobile-video {
    display: block !important;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .counter-box {
    padding: 1.5rem 1rem;
  }

  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card__content {
    padding: 1.75rem 1.5rem;
  }

  .contact-cta__btn {
    padding: 1.25rem 0.65rem;
    gap: 0.5rem;
  }

  .contact-cta__label {
    font-size: 0.875rem;
  }

  .contact-cta__detail {
    font-size: 0.6875rem;
  }

  .contact-cta__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-cta__icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .legal-card {
    padding: 1.75rem 1.25rem;
  }

  .legal-section + .legal-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .quality-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    max-width: 100%;
    overflow: hidden;
  }

  .quality-content {
    width: 100%;
    max-width: 100%;
  }

  .quality-content--split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .quality-cert-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    gap: 0.75rem 1rem;
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quality-cert-logos img {
    height: 4.25rem;
    max-width: 100%;
    width: auto;
  }

  .quality-cert-logos .quality-cert-logo--iaf {
    height: 5.5rem;
    max-width: 100%;
  }

  .quality-cert-logos .quality-cert-logo--10 {
    height: 5.5rem;
    width: auto;
    max-width: min(10rem, 42vw);
  }

  .quality-cert-logos .quality-cert-logo--14 {
    height: 7rem;
    width: auto;
    max-width: min(14rem, 55vw);
  }

  .quality-cert-logos--single {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .quality-cert-logos--pair {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .quality-cert-logos--pair .quality-cert-logo--10 {
    height: 7.5rem;
    max-width: min(11rem, 42vw);
  }

  .quality-content--logo-end .quality-cert-logos--single {
    margin-left: 0;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-block {
    max-width: 18rem;
  }

  .footer-nav {
    gap: 0.5rem;
    font-size: 0.8125rem;
  }

  .laram-footer.site-footer {
    padding-bottom: 2rem;
  }

  .laram-main,
  .main-content {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .footer-copy {
    line-height: 1.55;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0 0.4rem;
  }

  .logo {
    margin-right: 0.35rem;
  }

  .logo img {
    height: 1.875rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: clamp(9px, 2.3vw, 13px);
    letter-spacing: 0.005em;
    padding: 0 0.15rem;
  }

  .laram-lang-switcher {
    padding-left: clamp(0.5rem, 2.5vw, 1rem);
  }

  .laram-lang-switcher__trigger {
    font-size: 0.6rem;
    padding: 0.28rem 0.4rem;
    gap: 0.35rem;
  }

  .laram-lang-switcher__current {
    max-width: none;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .laram-panel {
    margin: 1.5rem 1rem;
  }

  .laram-panel__inner {
    padding: 2.25rem 1.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .laram-panel {
    margin: 1.5rem 2rem;
    border-radius: 3rem;
  }

  .laram-panel__inner {
    padding: 4rem 3rem;
  }
}

/* Desktop video visibility */

@media (min-width: 768px) {
  .desktop-video {
    display: block;
  }

  .mobile-video {
    display: none !important;
  }
}

/* Floating bottom actions bar — mobile only */

@media (min-width: 769px) {
  .laram-fab {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .laram-fab,
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    background: transparent !important;
    border: none;
    box-shadow: none;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.4s ease,
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .laram-fab.is-visible,
  .bottom-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: none;
    visibility: visible;
  }

  .laram-fab__track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
    width: min(92vw, 26rem);
    margin-bottom: 12px;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    background-color: rgba(39, 33, 35, 0.92) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
  }

  .laram-fab__btn {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 2.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      transform 0.2s ease;
  }

  .laram-fab__btn.is-active {
    background: #4f4f51;
  }

  .laram-fab__btn:active {
    background: #4f4f51;
    transform: scale(0.96);
  }

  .laram-fab__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
  }

  .laram-fab__icon svg {
    width: 100%;
    height: 100%;
  }

  .laram-fab__icon--img {
    display: block;
    max-height: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  @media (max-width: 768px) {
    .laram-fab__track {
      background-color: #272123 !important;
    }
  }
}

/* Cookie consent banner */

.laram-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: calc(12px + env(safe-area-inset-bottom, 0px)) 0.75rem 0;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.laram-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.laram-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  width: min(42rem, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(20, 11, 12, 0.95) 0%,
    rgba(115, 15, 31, 0.42) 100%
  );
  border: 1px solid rgba(115, 15, 31, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.laram-cookie-banner__text {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--laram-text-muted);
}

.laram-cookie-banner__text a {
  color: var(--laram-gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.laram-cookie-banner__text a:hover {
  color: #ffffff;
}

.laram-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.laram-cookie-banner__btn {
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.laram-cookie-banner__btn:active {
  transform: scale(0.97);
}

.laram-cookie-banner__btn--reject {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.laram-cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.laram-cookie-banner__btn--accept {
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.18);
  color: #ffffff;
}

.laram-cookie-banner__btn--accept:hover {
  background: rgba(212, 175, 55, 0.28);
  border-color: rgba(212, 175, 55, 0.65);
}

@media (max-width: 768px) {
  .laram-cookie-banner {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .laram-cookie-banner__inner {
    padding: 1.1rem 1rem;
  }

  .laram-cookie-banner__actions {
    justify-content: stretch;
  }

  .laram-cookie-banner__btn {
    flex: 1 1 calc(50% - 0.35rem);
  }

  body:has(.laram-cookie-banner.is-visible) .laram-fab.is-visible,
  body:has(.laram-cookie-banner.is-visible) .bottom-nav.is-visible {
    transform: translateY(calc(-1 * 148px));
  }
}
