
:root {
  --logo-bg:       #ddeaf0;
  --logo-outline:  #033246;
  --logo-fill:     #738f9c;

  --razzmatazz:    #d70e67;
  --shocking:      #d98bb6;
  --ripe-lemon:    #f2ce16;
  --de-york:       #80c38b;
  --asparagus:     #649c5c;

  --iceberg:       #dbebf3;
  --zombie:        #dbe497;
  --opal:          #acc9c6;
  --melanie:       #dbb8d2;

  --heavy-metal:   #313a31;
  --text-light:    #ffffff;

  --radius-md:     12px;
  --radius-lg:     18px;
  --shadow-soft:   0 10px 25px rgba(0,0,0,0.08);
  --shadow-card:   0 16px 40px rgba(0,0,0,0.09);

  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--heavy-metal);
  background-color: #f5f7f8;
}

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

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

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button,
input,
textarea {
  font-family: inherit;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--heavy-metal);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  flex-wrap: wrap;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.35);
  background-color: #dbeaf3;
  flex-shrink: 0;
}

.logo-mark-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
}

.logo-footer .logo-title {
  color: #ffffff;
}

.logo-footer .logo-subtitle {
  color: rgba(255,255,255,0.7);
}

.logo-mark-footer {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  flex-wrap: nowrap;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ripe-lemon), var(--razzmatazz));
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

/* Header CTAs */

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--razzmatazz);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(215, 14, 103, 0.45);
}

.btn-primary:hover {
  background-color: var(--shocking);
  box-shadow: 0 10px 22px rgba(217, 139, 182, 0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--de-york);
  color: var(--heavy-metal);
  border: 2px solid var(--heavy-metal);
}

.btn-secondary:hover {
  background-color: var(--asparagus);
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: rgba(255,255,255,0.12);
  color: var(--heavy-metal);
  border: 1px solid rgba(49,58,49,0.18);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.25);
}

/* Hamburger */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section-iceberg {
  background-color: var(--iceberg);
}

.section-zombie {
  background-color: var(--zombie);
}

.section-white {
  background-color: #ffffff;
}

.section-dark {
  background-color: var(--heavy-metal);
  color: var(--text-light);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.section-header {
  max-width: 640px;
}

.section-header.center {
  text-align: center;
  margin: 0 auto;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-aside {
  display: flex;
  align-items: stretch;
}

/* Typography */

.eyebrow {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(49,58,49,0.8);
  margin-bottom: 8px;
}

.eyebrow-light {
  color: rgba(255,255,255,0.75);
}

h1, h2, h3 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--heavy-metal);
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

h1 {
  font-size: clamp(32px, 4vw, 40px);
}

h2 {
  font-size: clamp(26px, 3vw, 32px);
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 17px;
  color: rgba(49,58,49,0.85);
}

.lead-light {
  color: rgba(255,255,255,0.85);
}

.mt-lg {
  margin-top: 32px;
}

/* Hero */

.hero-section {
  position: relative;
  background: radial-gradient(circle at top left, #ffffff 0, var(--iceberg) 45%, #c4d9e8 100%);
  overflow: hidden;
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(215,14,103,0.3) 0, transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(242,206,22,0.35) 0, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(128,195,139,0.4) 0, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 40px;
  padding: 64px 16px 72px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

/* hero logo + slogan */

.hero-logo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-logo-circle {
  display: inline-block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-image: url("../img/logisferra-logo.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
  border: 4px solid #ffffff;
}

.hero-logo-tagline {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(49,58,49,0.8);
}

.hero-kicker {
  font-family: "Montserrat", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin: 6px 0 10px;
  color: rgba(49,58,49,0.7);
}

.hero-subtitle {
  font-size: 17px;
  margin: 0 0 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

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

.hero-stats dt {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(49,58,49,0.75);
}

/* Hero side card */

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 24px 22px 22px;
  max-width: 380px;
  border: 1px solid rgba(3,50,70,0.08);
}

.hero-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 14px;
  margin-bottom: 18px;
}

/* Forms */

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 13px;
}

.field.field-captcha {
  align-items: center;
}

.field.field-captcha .g-recaptcha {
  transform-origin: center;
}
.field span {
  font-weight: 500;
  color: rgba(49,58,49,0.8);
}

.field input,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(172,201,198,0.9);
  padding: 9px 14px;
  font-size: 14px;
  outline: none;
  background-color: #fdfefe;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
}

.field textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 96px;
}

.field input:focus-visible,
.field textarea:focus-visible {
  border-color: var(--razzmatazz);
  box-shadow: 0 0 0 1px rgba(215,14,103,0.35);
  background-color: #ffffff;
}

.form-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: rgba(49,58,49,0.7);
}

.form-note-light {
  color: rgba(255,255,255,0.7);
}

.form-error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #d70e67;
}


.field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Feature grid */

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

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

.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid var(--opal);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5) 0, var(--razzmatazz) 60%, transparent 100%);
  opacity: 0.15;
  top: -22px;
  right: -22px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
}

/* Badges */

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(3,50,70,0.35);
  background-color: rgba(219,235,243,0.8);
}

/* Icon cards */

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

.icon-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 22px;
  border: 1px solid var(--opal);
  box-shadow: var(--shadow-soft);
}

.icon-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 12px;
  background-image: radial-gradient(circle at 30% 30%, #ffffff 0, var(--razzmatazz) 55%, var(--de-york) 100%);
}

/* Aside card */

.aside-card {
  background: linear-gradient(145deg, #ffffff 0, #f6e2f1 40%, #dbebf3 100%);
  border-radius: 24px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}

.aside-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

/* Checklist */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--de-york);
  color: var(--heavy-metal);
}

.checklist span {
  font-weight: 600;
}

.checklist-light li::before {
  background-color: var(--ripe-lemon);
}

.checklist-light {
  color: rgba(255,255,255,0.88);
}

/* Testimonials */

.section-testimonials {
  background-color: #ffffff;
  position: relative;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(215,14,103,0.08) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(128,195,139,0.08) 0, transparent 55%);
  opacity: 1;
  pointer-events: none;
}

.testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid rgba(172,201,198,0.7);
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-author {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-meta {
  font-size: 12px;
  color: rgba(49,58,49,0.7);
}

/* Tracking section */

.tracking-form {
  background-color: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  margin-bottom: 18px;
}

.tracking-form .field span {
  color: rgba(255,255,255,0.85);
}

.tracking-form .field input {
  background-color: rgba(49,58,49,0.9);
  border-color: rgba(219,235,243,0.6);
  color: #ffffff;
}

.tracking-form .field input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Blog / Ahead */

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

.blog-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid var(--opal);
  box-shadow: var(--shadow-soft);
}

.blog-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(49,58,49,0.7);
  margin-bottom: 6px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter {
  margin-top: 32px;
  padding: 20px 20px 22px;
  border-radius: 18px;
  border: 1px dashed var(--opal);
  background: linear-gradient(135deg, #ffffff 0, #dbebf3 65%, #f6e2f1 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.newsletter h3 {
  margin-bottom: 4px;
}

.newsletter p {
  font-size: 14px;
  margin: 0;
}

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

.newsletter-form .field {
  margin-bottom: 0;
}

.newsletter-form input {
  min-width: 220px;
}

/* Footer */

.site-footer {
  background-color: var(--heavy-metal);
  color: rgba(255,255,255,0.9);
  padding: 40px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.9fr));
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-text {
  font-size: 14px;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-list a {
  color: rgba(255,255,255,0.9);
}

.footer-list a:hover {
  color: var(--ripe-lemon);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Utils */

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

/* Responsive */

@media (max-width: 1280px) {
  .header-inner {
    row-gap: 8px;
  }
  .header-ctas {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

  .feature-grid,
  .feature-grid-3,
  .cards-3,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 100%;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-header.center {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    background-color: var(--heavy-metal);
    padding: 10px 16px 12px;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-ctas {
    display: none;
  }

  .hero-inner {
    padding-top: 52px;
  }

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

  .feature-grid,
  .feature-grid-3,
  .cards-3,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    padding-inline: 16px;
  }
}


/* Policy & cookie extensions */

.policy-page {
  background: #f3f4f6;
}

.policy-main {
  padding-top: 80px;
}

.policy-container {
  max-width: 960px;
}

.policy-header h1 {
  margin: 6px 0 8px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 28px;
}

.policy-meta {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.policy-card {
  margin-top: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.policy-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}


/* Cookie banner styles */

#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border-top: 3px solid #2563eb;
}

#cookieBanner.show {
  display: block;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cookie-content {
  flex: 1;
  min-width: 300px;
}

.cookie-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.cookie-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-text a:hover {
  color: #1d4ed8;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #2563eb;
  color: white;
}

.cookie-btn-accept:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-btn-decline {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn-decline:hover {
  background: #e5e7eb;
}

.cookie-btn-settings {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.cookie-btn-settings:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

/* Cookie settings modal */

#cookieSettings {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
}

#cookieSettings.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-modal {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.settings-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.settings-header h2 {
  margin: 0;
  font-size: 24px;
  color: #1f2937;
}

.settings-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.category-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Toggle switch */

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #2563eb;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.settings-footer {
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}


