:root {
    --primary: #5e17eb;
    --primary-hover: #4a11b6;
    --bg: #f4f7f9;
    --text: #333;
    --container-max: 800px;
    --result-max: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --tap-min: 44px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    background: #120524;
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: bold;
    font-size: 1.2rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.lang-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.lang-link:hover {
    color: white;
}

.lang-link[aria-current="page"] {
    color: white;
    text-decoration: underline;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.5);
    user-select: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-auth-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--primary);
    color: white;
}

.nav-auth-btn:hover {
    background: var(--primary-hover);
}

.nav-auth-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-auth-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.nav-user {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.nav-credits {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.logo-link:hover {
    color: white;
}

.logo-img {
    display: block;
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
}

.main-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

/* Page heading (H1 – SEO, visually subtle) */
.page-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 6px;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1 1 auto;
    min-width: 0;
    min-height: var(--tap-min);
    padding: 15px;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.2s;
    font-size: 0.95rem;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #d0d0d0;
}

/* Forms */
.form-container {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Login modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 28px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
}

.modal-close:hover {
    background: #eee;
    color: #333;
}

.modal-title {
    margin: 0 0 20px;
    font-size: 1.25rem;
}

.auth-providers {
    margin-bottom: 16px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: var(--tap-min);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    color: var(--text);
}

.auth-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.auth-btn-google {
    border-color: #dadce0;
}

.auth-btn-google:hover {
    background: #f8f9fa;
    border-color: #b0b0b0;
}

.auth-btn-icon {
    font-weight: bold;
    color: #4285f4;
}

.auth-divider {
    text-align: center;
    margin: 16px 0;
    color: #666;
    font-size: 0.9rem;
}

.auth-email-form .form-group {
    margin-bottom: 12px;
}

.auth-email-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.auth-email-actions .submit-btn {
    flex: 1;
    margin-top: 0;
}

.submit-btn-secondary {
    background: #666;
}

.submit-btn-secondary:hover {
    background: #555;
}

.auth-error {
    margin-top: 12px;
    padding: 10px;
    background: #fee;
    color: #c00;
    border-radius: 6px;
    font-size: 0.9rem;
}

.auth-error.hidden {
    display: none;
}

/* Pricing modal */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.pricing-card {
    border-radius: 12px;
    padding: 18px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.pricing-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(94, 23, 235, 0.18);
    position: relative;
}

.pricing-card.popular::before {
    content: "Most popular";
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-buy-btn {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.pricing-buy-btn:hover {
    background: var(--primary-hover);
}

.pricing-buy-btn:active {
    transform: scale(0.98);
}

.brand-credits-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #b91c1c;
}

.field-hint {
    margin-top: 4px;
    font-size: 0.85rem;
    color: #666;
}

.hidden {
    display: none;
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-row .form-group {
    flex: 1 1 200px;
    min-width: 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

input,
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

input:focus,
select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.submit-btn {
    width: 100%;
    min-height: var(--tap-min);
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Loader */
#loader {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader p {
    margin: 0;
    color: var(--text);
}

/* Timeout Message */
#timeout-message {
    text-align: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    margin: 20px 0;
}

.timeout-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

#timeout-message p {
    margin: 0;
    color: #856404;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Results – break out of 800px column to use more/full width */
#result-container {
    margin-top: 30px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.result-header {
    padding: 15px 20px;
    padding-left: max(var(--spacing-sm), calc(50vw - (var(--result-max) / 2)));
    padding-right: max(var(--spacing-sm), calc(50vw - (var(--result-max) / 2)));
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
}

.result-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.reset-btn {
    min-height: 36px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.reset-btn:hover {
    background: #f5f5f5;
}

.report-frame {
    min-height: 400px;
    padding-left: max(var(--spacing-sm), calc(50vw - (var(--result-max) / 2)));
    padding-right: max(var(--spacing-sm), calc(50vw - (var(--result-max) / 2)));
}

.report-frame iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: none;
}

/* Audit report layout */
.audit-meta {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.audit-meta-url strong,
.audit-meta-date strong {
    margin-right: 4px;
}

.audit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.audit-stat {
    padding: 8px 12px;
    border-radius: 10px;
    background: #f5f3ff;
}

.audit-stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.audit-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.audit-section {
    margin-top: 20px;
}

.audit-section h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.audit-table thead {
    background: #120524;
    color: #fff;
}

.audit-table th,
.audit-table td {
    padding: 8px 10px;
    text-align: left;
}

.audit-table tbody tr:nth-child(even) {
    background: #f7f7fb;
}

.audit-table tbody tr.row-failed {
    background: #fff5f5;
}

.audit-table tbody tr.row-issue {
    background: #fffaf0;
}

.status-pill {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pill--passed {
    background: #e6ffed;
    color: #047857;
}

.status-pill--failed {
    background: #fee2e2;
    color: #b91c1c;
}

.status-pill--issue {
    background: #fef3c7;
    color: #92400e;
}

.status-pill--neutral {
    background: #e5e7eb;
    color: #374151;
}

/* Sentiment pills: positive=green, negative=red, neutral=yellow (match PDF) */
.sentiment-pill {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sentiment-pill--positive {
    background: #d1fae5;
    color: #047857;
}

.sentiment-pill--negative {
    background: #fee2e2;
    color: #b91c1c;
}

.sentiment-pill--neutral {
    background: #fef9c3;
    color: #854d0e;
}

.audit-text {
    margin: 0 0 0.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.audit-text:last-child {
    margin-bottom: 0;
}

/* PDF-Match Chart Styles */
.chart-outer-container {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px 20px 20px 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto; /* Handle overflow on small screens */
}

.chart-flex {
    display: flex;
    justify-content: space-around;
    align-items: flex-end; /* Aligns bars to bottom */
    height: 160px; /* Fixed height for consistency */
    min-width: 600px; /* Ensure bars don't get crushed on mobile */
}

.bar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0 4px;
}

.bar-container {
    width: 45%;
    height: 100%; /* Occupies the graph area */
    display: flex;
    align-items: flex-end; /* Pushes fill to bottom */
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    position: relative;
    padding-bottom: 0; /* Reset */
}

.bar-fill {
    width: 100%;
    background: #5e17eb; /* Purple */
    border-radius: 4px 4px 0 0;
    min-height: 2px;
    transition: height 0.5s ease;
}

.bar-data-label {
    font-size: 11px;
    font-weight: bold;
    color: #5e17eb;
    margin-top: 12px;
    text-align: center;
}

.bar-month-label {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

/* Responsive: narrow (e.g. phones) */
@media (max-width: 600px) {
    .navbar {
        padding: var(--spacing-sm);
        font-size: 1.1rem;
    }

    .main-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .form-container {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        flex: 1 1 auto;
    }

    .result-header {
        padding: 12px var(--spacing-sm);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .report-frame {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .report-frame,
    .report-frame iframe {
        min-height: 360px;
    }

    .audit-stats {
        flex-direction: column;
    }

    .audit-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .audit-table table {
        width: 100%;
    }
}

/* Responsive: medium and up */
@media (min-width: 601px) {
    .report-frame,
    .report-frame iframe {
        min-height: 600px;
    }
}

@media (min-width: 900px) {
    .report-frame,
    .report-frame iframe {
        min-height: 800px;
    }
}

/* Site footer */
.site-footer {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: var(--text);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.footer-copyright {
    opacity: 0.85;
}

.footer-trustpilot,
.trustpilot-widget {
    flex-shrink: 0;
}

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

.footer-link {
    color: var(--primary);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Legal pages */
.legal-page .main-container {
    max-width: 720px;
}

.legal-page h1,
.legal-page h2.legal-h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}

.legal-page p, .legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-page ul {
    margin: 0.5rem 0 1rem 1.25rem;
}

.legal-page a {
    color: var(--primary);
}

.legal-page .lang-section,
.pricing-page .lang-section {
    display: none;
}

.legal-page .lang-section.active,
.pricing-page .lang-section.active {
    display: block;
}

.legal-page code {
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Nav link (for Pricing) */
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link-active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

/* Pricing page styles */
.pricing-page .main-container {
    max-width: 1000px;
}

.pricing-container {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.pricing-page h1,
.pricing-page h2.legal-h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.pricing-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--spacing-lg);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card h2 {
    font-size: 1.25rem;
    margin: 0 0 16px;
    color: var(--text);
}

.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.15);
}

.pricing-card-popular:hover {
    box-shadow: 0 12px 40px rgba(94, 23, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-credits {
    font-size: 1rem;
    color: #666;
    margin-left: 4px;
}

.price-per-credit {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    background: #f0f0f0;
    color: var(--text);
}

.pricing-cta:hover {
    background: #e5e5e5;
}

.pricing-cta:active {
    transform: scale(0.98);
}

.pricing-cta-primary {
    background: var(--primary);
    color: white;
}

.pricing-cta-primary:hover {
    background: var(--primary-hover);
}

/* Pricing FAQ */
.pricing-faq {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-faq h2 {
    font-size: 1.5rem;
    margin: 0 0 24px;
    color: var(--text);
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--text);
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Pricing page responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card-popular {
        order: -1;
    }

    .pricing-page h1,
    .pricing-page h2.legal-h1 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-faq {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .nav-link {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .pricing-container {
        padding-top: var(--spacing-md);
    }

    .pricing-intro {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 24px 20px;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #120524;
    color: #fff;
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-banner:not(.hidden) {
    display: block;
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-message {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cookie-btn-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: var(--spacing-sm);
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: flex-end;
    }
}
