@charset "UTF-8";
/* ======================================================================
   Jestem Tu – SCSS (dopasowane do aktualnego HTML + cookies + map-consent)
   ====================================================================== */
/* ====== Design tokens ====== */
/* Breakpointy:
   - $bp-nav: burger + overlay menu
   - $bp-layout: dopiero tu łamiemy hero/about/contact na 1 kolumnę
*/
/* ====== Base / reset ====== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* sticky header offset dla anchorów */
:root {
  --header-offset: 110px;
}

html {
  scroll-padding-top: var(--header-offset);
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fbfaf6;
  color: #121417;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 183, 0.35);
  outline-offset: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
.skip-link:focus {
  left: 10px;
}

.container {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

/* ====== Motion accessibility ====== */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* ====== Backdrop (mobile nav) ====== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 15;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ====== Header / Nav ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 20, 23, 0.12);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
.brand__text {
  display: grid;
  line-height: 1.1;
}
.brand__name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__tag {
  font-size: 12px;
  color: rgba(18, 20, 23, 0.72);
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(18, 20, 23, 0.72);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover, .nav a:focus-visible {
  background: rgba(14, 165, 183, 0.1);
  color: #121417;
}
.nav__cta {
  margin-left: 6px;
}

/* ====== Burger button (ładny + X) ====== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(18, 20, 23, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(14, 165, 183, 0.18);
  cursor: pointer;
  position: relative;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-top: -1px;
}
.nav-toggle:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12), 0 0 0 4px rgba(14, 165, 183, 0.22);
}
.nav-toggle:active {
  transform: translateY(1px);
}
.nav-toggle .nav-toggle__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #121417;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 260ms ease, opacity 160ms ease;
}
.nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.nav-toggle .nav-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%);
}
.nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(18, 20, 23, 0.12);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, filter 0.12s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: #0ea5b7;
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover {
  filter: brightness(0.97);
}
.btn--ghost {
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(18, 20, 23, 0.05);
}

/* ====== Sections ====== */
.section {
  padding: 70px 0;
}

.section--alt {
  background: #ffffff;
  border-top: 1px solid rgba(18, 20, 23, 0.12);
  border-bottom: 1px solid rgba(18, 20, 23, 0.12);
}

.section__head {
  max-width: 720px;
  margin-bottom: 28px;
}
.section__head h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 8px;
}
.section__head p {
  margin: 0;
  color: rgba(18, 20, 23, 0.72);
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(5, 51, 58, 0.75);
}

/* ====== Hero ====== */
.hero {
  padding: 72px 0 26px;
}
.hero .hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}
.hero .lead {
  margin: 0 0 18px;
  color: rgba(18, 20, 23, 0.72);
  font-size: 18px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(18, 20, 23, 0.82);
}
.hero__badges a {
  color: #05333a;
  font-weight: 800;
}
.hero__media {
  position: relative;
  min-height: 420px;
}

/* Hero image */
.hero-figure {
  height: clamp(320px, 38vw, 520px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 25% 20%, rgba(14, 165, 183, 0.22), transparent 60%), linear-gradient(135deg, rgba(18, 20, 23, 0.06), transparent 55%), radial-gradient(900px 520px at 80% 30%, rgba(14, 165, 183, 0.14), transparent 65%), radial-gradient(1200px 800px at 50% 70%, rgba(0, 0, 0, 0.12), transparent 55%);
  pointer-events: none;
}

/* ====== Cards ====== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0 0 10px;
  color: rgba(18, 20, 23, 0.72);
}
.card .meta {
  margin: 0;
  font-size: 13px;
  color: rgba(18, 20, 23, 0.65);
}

/* ====== Pricing ====== */
.price {
  background: #fbfaf6;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
.price__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 10px;
  border-bottom: 1px dashed rgba(18, 20, 23, 0.18);
}
.price__row:last-of-type {
  border-bottom: 0;
}
.price__row span {
  color: rgba(18, 20, 23, 0.86);
}
.price__row strong {
  color: #05333a;
  white-space: nowrap;
}
.price__note {
  margin: 14px 8px 0;
  font-weight: 800;
}
.price__note a {
  color: #05333a;
}

/* ====== About (tekst lewo, zdjęcie prawo; na małych pod spodem) ====== */
.about {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: center;
}
.about__copy {
  order: 1;
}
.about__media {
  order: 2;
}
.about h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px;
}
.about p {
  color: rgba(18, 20, 23, 0.72);
  margin: 0 0 14px;
}

.about-figure {
  height: clamp(320px, 38vw, 520px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
}
.about-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
}
.about-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(650px 380px at 70% 18%, rgba(14, 165, 183, 0.18), transparent 60%), linear-gradient(135deg, rgba(18, 20, 23, 0.05), transparent 55%), radial-gradient(1000px 700px at 40% 75%, rgba(0, 0, 0, 0.1), transparent 55%);
  pointer-events: none;
}

.ticks {
  margin: 0 0 16px;
  padding-left: 18px;
}
.ticks li {
  margin: 8px 0;
}

.callout {
  border: 1px solid rgba(14, 165, 183, 0.35);
  background: rgba(14, 165, 183, 0.08);
  border-radius: 18px;
  padding: 14px;
}
.callout h3 {
  margin: 0 0 6px;
}
.callout p {
  margin: 0 0 6px;
}
.callout .small {
  margin: 0;
  font-size: 12px;
  color: rgba(18, 20, 23, 0.6);
}

/* ====== Team ====== */
.team {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(260px, 380px));
  justify-content: center;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.team-card__media {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}
.team-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.01);
  transition: transform 420ms ease, filter 260ms ease;
}
.team-card:hover img, .team-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}
.team-card__body {
  padding: 14px 16px 16px;
}
.team-card__name {
  margin: 0 0 4px;
  font-size: 18px;
}
.team-card__role {
  margin: 0;
  color: rgba(18, 20, 23, 0.72);
  font-size: 13px;
  font-weight: 700;
}

/* ====== Carousel ====== */
.carousel {
  --h: clamp(320px, 52vw, 620px);
}

.carousel__viewport {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.carousel__track {
  display: flex;
  transform: translateX(0);
  transition: transform 320ms ease; /* spójnie z JS 3s */
  will-change: transform;
  gap: 0;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  height: var(--h);
  position: relative;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02);
  display: block;
}
.carousel__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 420px at 25% 20%, rgba(14, 165, 183, 0.18), transparent 60%), linear-gradient(135deg, rgba(18, 20, 23, 0.05), transparent 55%);
  pointer-events: none;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(18, 20, 23, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(14, 165, 183, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  color: #121417;
  transition: transform 0.12s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.carousel__btn:active {
  transform: translateY(1px);
}
.carousel__btn:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12), 0 0 0 4px rgba(14, 165, 183, 0.18);
}
.carousel__btn--prev {
  left: 12px;
}
.carousel__btn--next {
  right: 12px;
}

.carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 14px;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(18, 20, 23, 0.22);
  background: rgba(18, 20, 23, 0.08);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
}
.carousel__dot.is-active {
  background: rgba(14, 165, 183, 0.9);
  border-color: rgba(14, 165, 183, 0.9);
  transform: scale(1.15);
}

/* ====== Accordion (smooth) ====== */
.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(18, 20, 23, 0.12);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  cursor: pointer;
}

.accordion__panel {
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  padding: 0 16px;
  background: #ffffff;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms ease, opacity 240ms ease;
  will-change: max-height;
}
.accordion__panel p {
  margin: 12px 0 14px;
  color: rgba(18, 20, 23, 0.72);
}

.accordion__panel.is-open {
  opacity: 1;
}

/* ====== Contact ====== */
.contact {
  display: grid;
  gap: 16px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.contact__map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
.contact__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.form {
  background: #ffffff;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.form h3 {
  margin: 0 0 10px;
}
.form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-weight: 700;
}
.form input, .form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18, 20, 23, 0.18);
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}
.form input:focus, .form textarea:focus {
  outline: 3px solid rgba(14, 165, 183, 0.25);
  border-color: rgba(14, 165, 183, 0.5);
}
.form .small {
  font-size: 12px;
  color: rgba(18, 20, 23, 0.6);
  margin: 0 0 10px;
}
.form__status {
  margin: 10px 0 0;
  font-weight: 800;
}

/* ====== Map consent ====== */
.map-consent {
  width: 100%;
  height: 380px;
  display: grid;
  place-items: center;
  background: rgba(18, 20, 23, 0.03);
  border-radius: 18px;
  overflow: hidden;
}

.map-consent__card {
  width: min(92%, 420px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.map-consent__card h3 {
  margin: 0 0 6px;
}
.map-consent__card p {
  margin: 0 0 12px;
  color: rgba(18, 20, 23, 0.72);
}

/* ====== Cookie banner (pełny styl) ====== */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 960px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 40;
}
.cookie p {
  margin: 0;
  color: rgba(18, 20, 23, 0.72);
}
.cookie a {
  color: #05333a;
  font-weight: 800;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ====== Footer ====== */
.footer {
  border-top: 1px solid rgba(18, 20, 23, 0.12);
  padding: 26px 0;
  color: rgba(18, 20, 23, 0.7);
}
.footer__inner {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer a {
  color: rgba(18, 20, 23, 0.7);
}
.footer a:hover {
  color: #121417;
}

/* ======================================================================
   Responsive
   ====================================================================== */
/* Burger + overlay menu: <= 980px */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(18, 20, 23, 0.12);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 220ms ease, transform 260ms ease;
  }
  .nav a {
    padding: 12px 12px;
    border-radius: 14px;
  }
  .nav .nav__cta {
    width: 100%;
    margin-top: 6px;
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
/* Layout collapse */
@media (max-width: 860px) {
  .hero {
    padding: 44px 0 18px;
  }
  .hero .hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero .hero__grid {
    gap: 18px;
  }
  .hero__media {
    order: -1;
    min-height: auto;
  }
  .hero-figure {
    height: clamp(240px, 54vw, 360px);
  }
  .hero__copy {
    max-width: 640px;
  }
  .hero h1 {
    font-size: clamp(30px, 6.6vw, 44px);
    margin-bottom: 10px;
  }
  .hero .lead {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero__actions {
    gap: 10px;
    margin: 12px 0 14px;
  }
  .hero__badges {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about__copy {
    order: 1;
  }
  .about__media {
    order: 2;
  }
  .about-figure {
    height: clamp(240px, 55vw, 380px);
  }
  .carousel {
    --h: clamp(260px, 58vw, 420px);
  }
}
/* Small phones */
@media (max-width: 720px) {
  .hero {
    padding: 36px 0 14px;
  }
  .hero-figure {
    height: clamp(220px, 62vw, 320px);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__badges {
    grid-template-columns: 1fr;
  }
  .about-figure {
    height: clamp(220px, 62vw, 320px);
  }
  .team {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__actions .btn {
    width: 100%;
  }
  .carousel__btn {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */