@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap");

/* WARGON - style główne (kolorystyka logo4: pomarańcz + grafit) */
:root {
  --brand: #e8772e;
  --brand-dark: #c45f1a;
  --brand-light: #fff0e6;
  --brand-pale: #f5b070;
  --grey-dark: #3a3a3a;
  --grey: #5a5a5a;
  --grey-light: #f4f4f2;
  --orange: #c45f1a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --nav-height: 80px;
  --transition: 0.3s ease;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--grey-dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 56px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--brand);
}

.navbar-nav .icon-home {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--grey-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO CAROUSEL */
.hero {
  position: relative;
  height: clamp(380px, 75vh, 680px);
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 2.5s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-slide img.is-loaded {
  opacity: 1;
}

.hero-slide.active img {
  animation: heroZoom 7s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}

.hero-content {
  pointer-events: auto;
  width: 100%;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.hero-content h1 {
  font-family: "Montserrat", var(--font);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}

.hero-dot.active {
  background: var(--white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brand-dark);
}

/* SECTIONS */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand);
  margin: 1rem auto 0;
}

.section-header p {
  color: var(--grey);
  max-width: 680px;
  margin: 0 auto;
}

.section-alt {
  background: var(--grey-light);
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-text h3 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.intro-text p {
  color: var(--grey);
  margin-bottom: 1rem;
}

.intro-highlight {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.intro-highlight strong {
  color: var(--brand-dark);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--brand);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--grey-dark);
}

.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card a:hover {
  color: var(--brand-dark);
}

/* CONTACT FORM */
.contact-section {
  background: var(--grey-dark);
  color: var(--white);
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .section-header h2::after {
  background: var(--brand);
}

.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--brand-pale);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 119, 46, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item a {
  color: var(--brand-pale);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--grey-dark);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group label .required {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: none;
  font-size: 0.95rem;
}

.form-message.success {
  display: block;
  background: var(--brand-light);
  color: var(--brand-dark);
}

.form-message.error {
  display: block;
  background: #fde8e8;
  color: #c0392b;
}

/* OFFER PAGE */
.page-hero {
  margin-top: var(--nav-height);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-hero p {
  margin-top: 0.75rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offer-nav {
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  overflow-x: auto;
}

.offer-nav-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.offer-nav a {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--grey);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}

.offer-nav a:hover,
.offer-nav a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.offer-block {
  padding: 4rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.offer-block:nth-child(even) {
  background: var(--grey-light);
}

.offer-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-block-header .offer-num {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.offer-block-header h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.offer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.offer-list h3 {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.offer-list ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--grey);
}

.offer-list ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.offer-highlight {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.offer-block:nth-child(even) .offer-highlight {
  background: var(--white);
}

.offer-highlight h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
}

.offer-highlight ul li {
  padding: 0.4rem 0;
  color: var(--grey);
  font-size: 0.95rem;
  padding-left: 1rem;
  border-left: 2px solid var(--brand-light);
  margin-bottom: 0.5rem;
}

/* GALLERY */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--brand);
  background: transparent;
  color: var(--brand);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.gallery-item img.is-loaded {
  opacity: 1;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
}

.gallery-item-overlay .category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-pale);
  margin-bottom: 0.25rem;
}

.gallery-item-overlay h3 {
  font-size: 1.1rem;
}

.gallery-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.gallery-count::before {
  content: "📷";
  font-size: 0.8rem;
}

.gallery-item.hidden {
  display: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-text {
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}

.lightbox-text .category {
  color: var(--brand-pale);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.lightbox-text h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2010;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox-arrow.lb-prev {
  left: 1.5rem;
}

.lightbox-arrow.lb-next {
  right: 1.5rem;
}

@media (max-width: 600px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-arrow.lb-prev {
    left: 0.5rem;
  }

  .lightbox-arrow.lb-next {
    right: 0.5rem;
  }
}

/* CONTACT PAGE */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--brand);
}

.contact-card .cc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-light);
  border-radius: 50%;
  color: var(--grey);
}

.contact-card .cc-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  color: var(--grey);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--brand);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.map-placeholder {
  background: var(--grey-light);
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
}

/* FOOTER */
.footer {
  background: var(--grey-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-pale);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .navbar-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .navbar-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .intro-grid,
  .contact-wrapper,
  .offer-columns,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    height: clamp(360px, 60vh, 520px);
  }

  .hero-overlay {
    padding: 1rem 1rem 3.25rem;
    align-items: center;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .hero-dots {
    bottom: 0.85rem;
    gap: 0.45rem;
    max-width: 92%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

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

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--grey-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner a {
  color: var(--brand-pale);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--white);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-accept {
  padding: 0.65rem 1.5rem;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-banner .btn-accept:hover {
  background: var(--brand-dark);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}
