/* ===== RENEWO MARKETING - SHARED STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-primary: #008C00;
  --green-bright: #00C427;
  --green-light: #6FAA7A;
  --green-dark: #117C46;
  --green-deep: #0a3d1f;
  --green-glow: rgba(0, 196, 39, 0.25);
  --green-subtle: rgba(0, 140, 0, 0.08);
  --bg-primary: #080e0a;
  --bg-secondary: #0c1410;
  --bg-card: #111c15;
  --bg-card-hover: #162218;
  --text-primary: #eef2ef;
  --text-secondary: #98a89c;
  --text-muted: #627066;
  --accent-warm: #e8b931;
  --accent-warm-glow: rgba(232, 185, 49, 0.15);
  --gradient-green: linear-gradient(135deg, #008C00 0%, #00C427 50%, #6FAA7A 100%);
  --gradient-hero: linear-gradient(135deg, #008C00, #00C427);
  --gradient-subtle: linear-gradient(135deg, rgba(0, 140, 0, 0.15), rgba(0, 196, 39, 0.08));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--green-subtle);
  color: var(--green-bright);
  border: 1px solid rgba(0, 196, 39, 0.2);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 20px 0 24px;
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--green-primary);
  color: #fff;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--green-glow);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--green-primary);
  background: var(--green-subtle);
  color: var(--green-bright);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 140, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 140, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 14, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 140, 0, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 24px;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-hero);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.nav-logo .logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.footer-brand .logo-img {
  height: 130px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(0, 140, 0, 0.08);
}

.nav-links a.active {
  color: var(--green-bright);
  background: rgba(0, 140, 0, 0.1);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--green-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 24px var(--green-glow);
  background: var(--green-bright) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 24px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.page-header .bg-glow {
  width: 500px;
  height: 500px;
  background: var(--green-primary);
  opacity: 0.06;
  top: -200px;
  right: -100px;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb a {
  color: var(--green-bright);
  font-size: 0.95rem;
}

.page-header .breadcrumb span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(0, 140, 0, 0.06);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 140, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--green-primary);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 140, 0, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ===== CONTENT PAGE (blog articles, legal) ===== */
.content-page {
  padding: 80px 0 120px;
}

.content-page .container {
  max-width: 800px;
}

.content-page h2 {
  font-size: 1.8rem;
  margin: 48px 0 16px;
  letter-spacing: -0.5px;
}

.content-page h3 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.content-page h4 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.content-page p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-page strong {
  color: var(--text-primary);
}

.content-page ul,
.content-page ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}

.content-page li {
  margin-bottom: 8px;
}

.content-page hr {
  border: none;
  height: 1px;
  background: rgba(0, 140, 0, 0.1);
  margin: 48px 0;
}

.content-page a {
  color: var(--green-bright);
  transition: opacity 0.3s;
}

.content-page a:hover {
  opacity: 0.8;
}

.content-page blockquote {
  border-left: 3px solid var(--green-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--green-subtle);
  border-radius: 0 12px 12px 0;
}

.content-page .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.content-page .cta-inline {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
}

.content-page .cta-inline h3 {
  margin-top: 0;
}

.content-page .cta-inline .btn-primary {
  margin-top: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(0, 140, 0, 0.15);
}

.contact-info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 140, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-card a {
  color: var(--green-bright);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 140, 0, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

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

/* ===== TEAM GRID ===== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  width: calc(33.333% - 16px);
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: rgba(0, 140, 0, 0.15);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-hero);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.team-photo {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.team-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--green-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 140, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
}

.blog-card:hover {
  border-color: rgba(0, 196, 39, 0.15);
  transform: translateY(-4px);
}

.blog-thumb {
  height: 180px;
  overflow: hidden;
}

.blog-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.8;
}

.blog-thumb-bg.bg-1 {
  background: linear-gradient(135deg, #0a1f10, #132e18);
}

.blog-thumb-bg.bg-2 {
  background: linear-gradient(135deg, #0e1a0c, #1a2e14);
}

.blog-thumb-bg.bg-3 {
  background: linear-gradient(135deg, #0c1a14, #14281c);
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card .read-more {
  font-size: 0.9rem;
  color: var(--green-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.blog-card:hover .read-more {
  gap: 12px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .navbar .container {
    justify-content: space-between;
  }

  .nav-logo {
    position: static;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 14, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(0, 140, 0, 0.1);
    gap: 0;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 16px;
    border-radius: 0;
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-secondary);
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--green-bright);
    background: transparent;
  }

  .nav-cta {
    margin-top: 12px !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    text-align: center !important;
    background: var(--green-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    display: block;
  }

  .nav-links li:has(.nav-cta) {
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
    position: static;
  }

  .nav-logo .logo-img {
    height: 90px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .team-grid {
    gap: 20px;
  }
  .team-card {
    width: calc(50% - 10px);
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-outline {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .team-card {
    width: 100%;
    min-width: unset;
  }

  .team-card {
    padding: 24px;
  }

  .page-header {
    padding: 110px 0 48px;
  }

  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .blog-body {
    padding: 18px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* ========== COOKIE BANNER ========== */
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

#cookieBanner.visible {
  display: block;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.cookie-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cookie-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-btn-accept {
  background: var(--gradient-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover {
  opacity: 0.88;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--green-bright);
  border: none;
  padding: 10px 0;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  margin-left: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#cookieDetails {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 16px;
  padding-top: 16px;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  margin-top: 2px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
  background: var(--green-primary);
}

.cookie-toggle input:checked+.cookie-toggle-slider::after {
  transform: translateX(18px);
}

.cookie-toggle input:disabled+.cookie-toggle-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-cat-info strong {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

.cookie-cat-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-save-btn {
  margin-top: 16px;
  background: var(--gradient-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  transition: opacity 0.2s;
}

.cookie-save-btn:hover {
  opacity: 0.88;
}

@media (max-width: 600px) {
  #cookieBanner {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(120px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  #cookieBanner.visible {
    transform: translateY(0);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn-settings {
    margin-left: 0;
  }
}