* {
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --primary-foreground: #FFFFFF;
    --secondary: #ec4899;
    --secondary-foreground: #FFFFFF;
    --accent: #16a34a;
    --accent-foreground: #FFFFFF;
    --background: #F8FAFC;
    --foreground: #0F172A;
    --card: #FFFFFF;
    --card-foreground: #0F172A;
    --border: #E2E8F0;
    --input: #E2E8F0;
    --ring: #000000;
    --muted: #F1F5F9;
    --muted-foreground: #64748B;
    --font-family: 'Inter', sans-serif;
    --radius: 0.5rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-wrap: break-word;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin: 0 0 1rem 0;
}

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

a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--foreground);
    border-color: var(--foreground);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-outline:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    border-color: white;
    color: white;
}

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

/* Icons */
.icon-box {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: fit-content;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

.balnorexil-top_mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary);
}

.balnorexil-top_mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--card);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balnorexil-top_mobile-menu-content {
    text-align: center;
}

.balnorexil-top_mobile-menu-link {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.balnorexil-top_mobile-menu-link:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(236, 72, 153, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    .9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Sections */
section {
    padding: 7rem 0;
}

section:nth-child(even) {
    background: var(--muted);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.page-header {
    background: var(--muted);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    
    transform: translateY(30px);
    transition-delay: 0ms;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-card:nth-child(3) { transition-delay: 200ms; }
.feature-card:nth-child(4) { transition-delay: 300ms; }

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Newsletter */
.newsletter {
    background: var(--card);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h2 {
    margin-bottom: 0.5rem;
}

.newsletter-form-inner {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    min-width: 300px;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-inner {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        min-width: auto;
        width: 100%;
    }
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s ease;
    
    transform: translateY(30px);
    transition-delay: 0ms;
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(2) { transition-delay: 100ms; }
.pricing-card:nth-child(3) { transition-delay: 200ms; }

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured.animate-in {
    transform: scale(1.05) translateY(0);
}

.pricing-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-features {
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Partners */
.partner-logos {
    text-align: center;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    text-align: center;
    
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0ms;
}

.partner-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.partner-item:nth-child(2) { transition-delay: 100ms; }
.partner-item:nth-child(3) { transition-delay: 200ms; }
.partner-item:nth-child(4) { transition-delay: 300ms; }

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0ms;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(2) { transition-delay: 100ms; }
.stat-item:nth-child(3) { transition-delay: 200ms; }
.stat-item:nth-child(4) { transition-delay: 300ms; }

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CTA Section */
.cta {
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    .9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Page */
.service-section {
    padding: 4rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-reverse {
    direction: rtl;
}

.service-reverse > * {
    direction: ltr;
}

.service-info h2 {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-reverse {
        direction: ltr;
    }
}

/* About Page */
.about-intro {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0ms;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(2) { transition-delay: 100ms; }
.timeline-item:nth-child(3) { transition-delay: 200ms; }
.timeline-item:nth-child(4) { transition-delay: 300ms; }
.timeline-item:nth-child(5) { transition-delay: 400ms; }

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Values and Team Cards */
.value-card,
.team-card {
    text-align: center;
    padding: 2rem;
    
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0ms;
}

.value-card.animate-in,
.team-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(2),
.team-card:nth-child(2) { transition-delay: 100ms; }
.value-card:nth-child(3),
.team-card:nth-child(3) { transition-delay: 200ms; }
.value-card:nth-child(4),
.team-card:nth-child(4) { transition-delay: 300ms; }

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    
    transform: translateY(30px);
    transition: all 0.3s ease;
    transition-delay: 0ms;
}

.achievement-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievement-item:nth-child(2) { transition-delay: 100ms; }
.achievement-item:nth-child(3) { transition-delay: 200ms; }
.achievement-item:nth-child(4) { transition-delay: 300ms; }

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

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.balnorexil-top_contact-form-container h2,
.contact-info h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.contact-details {
    space-y: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
}

.contact-additional,
.company-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.additional-contacts {
    space-y: 0.5rem;
}

.additional-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

/* Success Message */
.success-message {
    background: var(--muted);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-content h3 {
    color: var(--accent);
    margin: 0;
}

.success-content p {
    margin: 0;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

/* Cookie Table */
.cookie-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--muted);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie Banner & Modal */
.balnorexil-top_cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.balnorexil-top_cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.balnorexil-top_cookie-banner-text {
    flex: 1;
}

.balnorexil-top_cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.balnorexil-top_cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balnorexil-top_cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.balnorexil-top_cookie-modal-content {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-toggles {
    margin: 1.5rem 0;
}

.balnorexil-top_cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.balnorexil-top_cookie-toggle-row:last-child {
    border-bottom: none;
}

.balnorexil-top_cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .balnorexil-top_cookie-banner-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .balnorexil-top_cookie-banner-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .balnorexil-top_cookie-modal-actions {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: var(--muted);
    color: var(--foreground);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.875rem;
}

.footer-company {
    font-weight: 600;
}

.footer-email {
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--primary);
}

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

.footer-copyright {
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#balnorexil-top_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#balnorexil-top_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#balnorexil-top_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
