/* 
 * coldboot.studio - Main Stylesheet
 * A creative technology studio focused on expressive tools and playful experiences
 */

:root {
  /* Brand Colors */
  --primary: #119872; /* Shamrock Green */
  --secondary: #0081b1; /* Cerulean */
  --accent-1: #f3c98b; /* Sunset */
  --accent-2: #daa588; /* Buff */
  --accent-3: #c46d5e; /* Indian Red */
  
  /* Neutrals */
  --dark: #121212;
  --light: #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e1e1e1;
  --gray-300: #cccccc;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #333333;
  --gray-800: #222222;
    /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Roboto Mono', Menlo, monospace;
  --font-display: 'Space Grotesk', var(--font-primary);
  
  /* Sizes */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;
  --footer-height: 200px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px base for easier rem calculations */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

h1 {
  font-size: 4.8rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.6rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: var(--spacing-sm);
}

.lead {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.mono {
  font-family: var(--font-mono);
}

.eyebrow {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: var(--spacing-xs);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.container-narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--spacing-lg) 0;
}

.section-lg {
  padding: var(--spacing-xl) 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-md);
}

/* For simpler two-column layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--light);
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition-medium);
}

.header-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.site-logo img {
  height: 100%;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
}

.nav li {
  list-style-type: none; /* Ensure no bullets are shown */
}

.nav-item {
  position: relative;
  font-weight: 600;
  font-size: 1.6rem; /* Increased from 1.05rem */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  color: var(--dark);
  transition: all 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

.nav-item:hover {
  color: var(--primary);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 80%;
}

/* Mobile Nav */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--light);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-200);
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

/* Hero section */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--gray-800));
  color: var(--light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 40%, 
    rgba(17, 152, 114, 0.2),
    transparent 40%
  ), radial-gradient(
    circle at 70% 60%, 
    rgba(0, 129, 177, 0.2),
    transparent 40%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3; /* Above both the card background and overlay */
  max-width: 800px;
  pointer-events: auto; /* Make sure buttons and links are clickable */
}

.hero h1 {
  font-size: 7.2rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 4.8rem;
  }
}

.hero .lead {
  max-width: 600px;
  margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--secondary)));
  color: var(--light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 152, 114, 0.3);
  text-decoration: none;
  color: var(--light);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--secondary) 70%, var(--primary)));
  color: var(--light);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 129, 177, 0.3);
  text-decoration: none;
  color: var(--light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(17, 152, 114, 0.9), rgba(0, 129, 177, 0.9));
  border-color: transparent;
  color: var(--light);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 152, 114, 0.2);
}

.btn-lg {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

/* Enhanced Buttons with Icon Animation */
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-ico i {
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.btn-ico:hover i {
  transform: translateX(3px);
}

/* Feature Cards */
.feature-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--light);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: transform var(--transition-medium);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

/* Project styling moved to modern-styles.css */

/* Button styling moved to modern-styles.css */

/* Testimonials */
.testimonial {
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  position: relative;
}

.testimonial-quote {
  font-size: 2.4rem;
  color: var(--accent-3);
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: var(--spacing-xs);
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--light);
  padding: var(--spacing-lg) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.footer-brand {
  margin-bottom: var(--spacing-sm);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-heading {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-300);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--light);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-700);
  color: var(--light);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
}

/* About Section */
.team-member {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.team-member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member-info h4 {
  margin-bottom: var(--spacing-xs);
}

.team-member-role {
  color: var(--gray-500);
  margin-bottom: var(--spacing-xs);
}

/* Contact Form */
.contact-form {
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, var(--accent-1)));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  margin-left: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 10px rgba(17, 152, 114, 0.2);
  position: relative;
  overflow: hidden;
  animation: badgePulse 2s infinite;
}

.badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: badgeShine 3s infinite;
}

.badge.glow {
  animation: glowing 1.5s infinite alternate;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 5px rgba(17, 152, 114, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(17, 152, 114, 0.9);
  }
}

.badge-coming {
  background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--secondary) 70%, var(--accent-2)));
  box-shadow: 0 2px 10px rgba(0, 129, 177, 0.2);
}

.badge-coming.glow {
  animation: glowing-blue 1.5s infinite alternate;
}

@keyframes glowing-blue {
  0% {
    box-shadow: 0 0 5px rgba(0, 129, 177, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 129, 177, 0.9);
  }
}

.badge.pulse-text,
.badge-coming.pulse-text {
  animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Legal Pages Styling */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--dark);
  font-family: var(--font-display);
}

.legal-content h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-700);
}

.legal-content p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.legal-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.legal-content ul li {
  margin-bottom: var(--spacing-xs);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--secondary);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background-color: var(--light);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17, 152, 114, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* Color Utilities */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent-1 { color: var(--accent-1); }
.text-accent-2 { color: var(--accent-2); }
.text-accent-3 { color: var(--accent-3); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent-1 { background-color: var(--accent-1); }
.bg-accent-2 { background-color: var(--accent-2); }
.bg-accent-3 { background-color: var(--accent-3); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--light); }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-fade {
  animation: fadeIn var(--transition-slow) forwards;
}

.animate-slide-up {
  animation: slideUp var(--transition-medium) forwards;
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .grid {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
  
  .container {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }
}

/* Custom gradient background */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
}

/* Card hover effect with brand colors */
.hover-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform var(--transition-medium);
}

.hover-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-1));
  transform: translateY(-100%);
  transition: transform var(--transition-fast);
}

.hover-card:hover {
  transform: translateY(-5px);
}

.hover-card:hover::after {
  transform: translateY(0);
}

/* Logo animation */
@keyframes arrowPulse {
  0% { transform: translateX(0); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.animate-logo {
  animation: arrowPulse 2s infinite;
}

/* Ghost-themed elements for Host Mortem promotion */
.ghost-card {
  position: relative;
  background-color: var(--dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  color: var(--light);
  overflow: hidden;
}

.ghost-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 129, 177, 0.2),
    transparent 70%
  );
  animation: ghostFloat 10s infinite alternate;
  pointer-events: none;
}

@keyframes ghostFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(3%, 3%); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--light);
  padding: var(--spacing-md) var(--spacing-md);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cookie-consent {
    flex-direction: row;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
  }
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-consent .btn {
  white-space: nowrap;
  margin: 0.25rem 0;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background-color: var(--light);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.cookie-settings-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.cookie-settings-section {
  margin-bottom: var(--spacing-md);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--spacing-sm) 0;
}

.cookie-toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(22px);
}

.cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.cookie-settings-description {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: var(--gray-600);
}
