/* KESSER Brand Design System & Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Premium active/outdoor and lifestyle brand */
  --primary-color: #000000;       /* Rich Brand Black */
  --primary-hover: #1e293b;       /* Dark Slate */
  --secondary-color: #ff5a00;     /* High-Performance Amber Orange */
  --secondary-hover: #e04f00;     /* Deep Orange */
  --accent-light: #f8fafc;        /* Clean Light Background */
  --dark-color: #0f172a;          /* Slate Dark */
  --white: #ffffff;
  --border-color: #e2e8f0;        /* Subtle Border Gray */
  --text-color: #334155;          /* Deep Gray Body Text */
  --text-light: #64748b;          /* Medium Slate Gray */
  --success-color: #10b981;       /* GDPR / Form Success Green */

  /* Typography */
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout & Spacing */
  --max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* UI Tokens */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--accent-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-lg) 0;
}

.section-bg {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.badge-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 90, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 0, 0.35);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 90px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 32px;
    width: auto;
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 700;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Hamburger Menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-color);
  font-size: 1.5rem;
  z-index: 1100;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--secondary-color);
}

/* Mobile drawer menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1050;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 2rem;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-overlay .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

/* Mobile styles for header */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 80px;
  }
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-md);
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
  .hero-trust-indicators {
    justify-content: center;
  }
  .hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
}

.hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-trust-indicators {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 600;
}

.trust-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  aspect-ratio: 1 / 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Features Section */
.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 2rem;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 90, 0, 0.05);
  color: var(--secondary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 90, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Product Cards & Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-img-holder {
  background-color: var(--white);
  height: 320px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-img-holder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img-holder img {
  transform: scale(1.04);
}

.product-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.specs-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs-list {
  margin-bottom: 1.25rem;
  list-style: none;
}

.product-specs-list li {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-specs-list li i {
  color: var(--secondary-color);
  margin-top: 5px;
  font-size: 0.8rem;
}

.product-benefits {
  margin-bottom: 1.25rem;
  background-color: var(--accent-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary-color);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.product-benefits h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}

.product-benefits p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.product-cta-btn {
  margin-top: auto;
  width: 100%;
}

.products-action {
  margin-top: 3.5rem;
}

/* Specs Accordion and Pop-up Elements */
.specs-toggle {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.specs-toggle:hover {
  background-color: var(--accent-light);
  border-color: var(--secondary-color);
}

.specs-toggle i {
  transition: var(--transition);
}

.specs-toggle.active i {
  transform: rotate(180deg);
}

.specs-table-container {
  display: none;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

.specs-table-container.open {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.specs-close-btn {
  display: none;
}

@media (min-width: 768px) {
  .product-card-content {
    position: relative; /* Anchor for specifications popup */
  }

  .specs-table-container {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 85px; /* Leave bottom CTA button uncovered */
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 50px 16px 16px 16px;
    z-index: 50;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    animation: fadeInScale 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .specs-table-container.open {
    display: block;
  }

  .specs-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-light);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 60;
  }

  .specs-close-btn:hover {
    background-color: #ef4444; /* Red Close Action */
    color: var(--white);
    transform: rotate(90deg);
    border-color: #ef4444;
  }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.specs-table th, .specs-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}

.specs-table th {
  background-color: var(--accent-light);
  color: var(--primary-color);
  font-weight: 600;
  width: 40%;
}

.specs-table tr:last-child th, .specs-table tr:last-child td {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 90, 0, 0.05);
  color: var(--secondary-color);
  border: 1px solid rgba(255, 90, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
}

/* FAQs Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--secondary-color);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question i {
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--accent-light);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.35s ease-in-out;
}

.faq-answer-inner {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
  padding: var(--spacing-xl) 0;
}

.cta-box {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
}

/* Form Design (Contact Page) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-info-panel {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 90, 0, 0.05);
  color: var(--secondary-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 90, 0, 0.1);
}

.contact-method-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-method-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--primary-color);
  background-color: var(--accent-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

.success-message {
  display: none;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success-color);
  color: var(--success-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  animation: fadeIn 0.3s ease-in-out;
}

/* Legal pages & general simple styles */
.legal-content {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 50px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem 0;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 30px 20px;
  }
}

/* Cookie Consent GDPR Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 2000;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner.visible {
  bottom: 24px;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--secondary-color);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--secondary-hover);
}

.cookie-decline {
  background-color: var(--accent-light);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.cookie-decline:hover {
  background-color: var(--border-color);
}

/* Custom 404 Styling */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 40px 24px;
}

.error-container {
  text-align: center;
  max-width: 500px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.error-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-desc {
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer styling */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-disclosure {
  line-height: 1.6;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
