/* ============================================
   FIROS S.A. - Modern Construction Materials Website
   Color Palette Based on Logo & Industry
   ============================================ */

/* Google Fonts - Import for all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

/* CSS Custom Properties - Color Palette */
:root {
  /* Primary Colors - Matching FIROS Logo Orange */
  --primary-red: #ED5D05;           /* FIROS Orange - main brand color (from logo) */
  --primary-red-dark: #C94E00;      /* Deep Orange - hover states */
  --primary-red-light: #FF7525;     /* Light Orange - accents */

  /* Secondary Colors - Industrial/Professional */
  --secondary-charcoal: #2D3436;    /* Charcoal - text & headers */
  --secondary-slate: #636E72;       /* Slate - secondary text */
  --secondary-steel: #B2BEC3;       /* Steel Gray - borders */

  /* Neutral Colors - Clean & Modern */
  --neutral-white: #FFFFFF;
  --neutral-snow: #F8F9FA;          /* Light background */
  --neutral-cloud: #E9ECEF;         /* Card backgrounds */
  --neutral-mist: #DFE6E9;          /* Dividers */

  /* Accent Colors - Construction Theme */
  --accent-orange: #E17055;         /* Brick/Terracotta accent */
  --accent-amber: #FDCB6E;          /* Safety/Warning yellow */
  --accent-cement: #74B9FF;         /* Cement blue - CTAs */
  --accent-green: #00B894;          /* Success/Eco certification */

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  --gradient-card: linear-gradient(180deg, var(--neutral-white) 0%, var(--neutral-snow) 100%);
  --gradient-dark: linear-gradient(135deg, var(--secondary-charcoal) 0%, #1a1a2e 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 4px 14px rgba(196, 30, 58, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-charcoal);
  background-color: var(--neutral-white);
}

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

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-red-dark);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary-charcoal);
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--secondary-slate);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--secondary-slate);
}

/* ============================================
   Layout Components
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-lg {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-hero);
  border-radius: var(--radius-full);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--neutral-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--secondary-charcoal);
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

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

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

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--secondary-charcoal);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--neutral-white);
    padding: var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
  }

  .nav-main.active {
    transform: translateX(0);
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--neutral-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
  color: var(--neutral-white);
}

.btn-secondary {
  background: var(--neutral-white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
  background: var(--primary-red);
  color: var(--neutral-white);
}

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

.btn-outline:hover {
  background: var(--neutral-white);
  color: var(--primary-red);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url('../assets/images/backgrounds/hero-pattern.svg');
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--neutral-white);
  padding-top: 80px;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-image {
    display: none !important;
  }

  .hero-actions {
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--neutral-white);
  margin-bottom: var(--space-lg);
}

.hero h1 span {
  color: var(--primary-red-light);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red-light);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   Product Cards
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  position: relative;
  height: 200px;
  background: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  max-height: 160px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-red);
  color: var(--neutral-white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-card-content {
  padding: var(--space-lg);
  background: var(--neutral-snow);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-code {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--secondary-slate);
  margin-bottom: var(--space-md);
}

.product-card-specs {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-mist);
  margin-top: auto;
}

.product-spec {
  font-size: 0.8rem;
}

.product-spec-label {
  color: var(--secondary-slate);
}

.product-spec-value {
  font-weight: 600;
  color: var(--secondary-charcoal);
}

.product-card-docs {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-mist);
  margin-top: var(--space-md);
}

.product-card-docs a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--neutral-snow);
  border-radius: var(--radius-md);
  color: var(--secondary-slate);
  transition: all 0.2s ease;
  border: 1px solid var(--neutral-mist);
}

.product-card-docs a:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

.product-card-actions {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-md);
}

/* ============================================
   Category Cards
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-mist);
  transition: all var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  border-radius: var(--radius-lg);
}

.category-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-red);
}

.category-card h3 {
  margin-bottom: var(--space-sm);
}

.category-card p {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.category-count {
  font-size: 0.875rem;
  color: var(--primary-red);
  font-weight: 500;
  margin-top: auto;
  padding-top: var(--space-md);
}

/* ============================================
   Features / Benefits Section
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  border-radius: var(--radius-full);
  color: var(--neutral-white);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.9rem;
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications {
  background: var(--neutral-snow);
}

.certifications-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-width: 200px;
}

.certification-item img {
  height: 60px;
  width: auto;
}

.certification-item span {
  font-weight: 600;
  color: var(--secondary-charcoal);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: var(--space-xs);
}

.contact-item p {
  margin: 0;
}

.contact-form {
  background: var(--neutral-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--secondary-charcoal);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--neutral-mist);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

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

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--gradient-dark);
  color: var(--neutral-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand img {
  height: 70px !important;
  width: auto !important;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-md);
}

.footer h5 {
  color: var(--neutral-white);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neutral-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-red); }
.text-muted { color: var(--secondary-slate); }

.bg-light { background: var(--neutral-snow); }
.bg-dark { background: var(--secondary-charcoal); }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation delays */
[data-animate] { opacity: 0; }
[data-animate].animated { animation: fadeInUp 0.6s ease forwards; }
[data-animate-delay="1"] { animation-delay: 0.1s; }
[data-animate-delay="2"] { animation-delay: 0.2s; }
[data-animate-delay="3"] { animation-delay: 0.3s; }
[data-animate-delay="4"] { animation-delay: 0.4s; }

/* ============================================
   GDPR Consent Modal
   ============================================ */

#gdpr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#gdpr-overlay.gdpr-show {
  opacity: 1;
}

#gdpr-overlay.gdpr-hide {
  opacity: 0;
}

.gdpr-modal {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

#gdpr-overlay.gdpr-show .gdpr-modal {
  transform: translateY(0);
}

.gdpr-header {
  background: var(--gradient-hero);
  color: white;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.gdpr-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.gdpr-content {
  padding: var(--space-xl);
}

.gdpr-content p {
  margin: 0 0 var(--space-lg);
  color: var(--secondary-slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gdpr-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.gdpr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--secondary-charcoal);
  line-height: 1.5;
}

.gdpr-checkbox input[type="checkbox"] {
  display: none;
}

.gdpr-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--secondary-steel);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.gdpr-checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.gdpr-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.gdpr-checkbox:hover .checkmark {
  border-color: var(--primary-red);
}

.gdpr-links {
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-mist);
}

.gdpr-links a {
  font-size: 0.85rem;
  color: var(--primary-red);
  text-decoration: none;
}

.gdpr-links a:hover {
  text-decoration: underline;
}

.gdpr-actions {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--neutral-snow);
  border-top: 1px solid var(--neutral-mist);
}

.gdpr-actions .btn {
  flex: 1;
  justify-content: center;
}

@media (max-width: 480px) {
  .gdpr-modal {
    margin: var(--space-md);
  }

  .gdpr-header {
    padding: var(--space-md);
  }

  .gdpr-content {
    padding: var(--space-lg);
  }

  .gdpr-actions {
    flex-direction: column;
    padding: var(--space-md);
  }

  .gdpr-actions .btn {
    width: 100%;
  }
}
