:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-overlay: rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}

.gdpr-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  width: 100%;
  max-width: 32rem;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
}

.gdpr-consent.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}


        .gdpr-content {
            padding: 1.5rem;
        }

        .gdpr-header {
            margin-bottom: 1rem;
        }

        .gdpr-title {
            
            font-family: MontserratEB;
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 0.5rem 0;
        }

        .gdpr-description {
            font-family: NatoSansR;
            font-size: 0.875rem;
            line-height: 1.5;
            color: #4b5563;
            margin: 0;
        }

        .gdpr-preferences {
            margin: 1.5rem 0;
        }
        

        .preference-item {
            font-family: MontserratEB;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }



        .gdpr-actions {
            display: flex;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        .btn {
            font-family: MontserratEB;
width: 100%;
height: 50px;
box-sizing: border-box;

border: none;
border-radius: 12px;
background: var(--app-theme-secondary-color);
color: #000;

font-size: 1.05rem;
font-weight: 700;
transition: .25s;
        }

        .btn-primary {
            background-color: #000;
            
            color: white;
        }

        .btn-primary:active {
            transform: scale(.96);
        }

        .btn-secondary {
            background-color: #f3f4f6;
            color: #4b5563;
        }

        .btn-secondary:active {
            transform: scale(.93);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-overlay);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            
            z-index: 999;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 640px) {
            .gdpr-actions {
                flex-direction: column;
            }
            
            .gdpr-consent {
                bottom: 0;
                border-radius: 1rem 1rem 0 0;
                max-width: 100%;
            }
        }