/* 
  ALBROKSA WEB SEMILLA - GLOBAL CSS
  Premium Design System
*/

:root {
    /* Color Palette */
    --red: #D30000;
    --red-hover: #B30000;
    --red-dim: rgba(211, 0, 0, 0.08);
    --red-glow: rgba(211, 0, 0, 0.15);

    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F9FA;
    --tertiary-bg: #F1F3F5;

    --text: #1F2937;
    --text-dim: #4B5563;
    --text-dimmer: #6B7280;

    --border: rgba(0, 0, 0, 0.08);
    --border-red: rgba(211, 0, 0, 0.2);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-tech: 'JetBrains Mono', monospace;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.04), 0 20px 80px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--border-red);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: white;
    /* Moves the background here to allow blobs to show through the body */
}

body {
    font-family: var(--font-body);
    background: transparent;
    /* Allows background blobs to be visible */
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* --- VISUAL DEPTH & TEXTURE --- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 100%);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    /* No separator as requested */
    transition: var(--transition);
}

.nav-left {
    display: flex;
    align-items: center;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-dropdown {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1200;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.nav-dropdown-menu a:hover {
    background: var(--red-dim);
    color: var(--red);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.cta-nav {
    padding: 10px 24px;
    background: var(--red);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-nav:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--red-glow);
}

/* --- HAMBURGER BUTTON --- */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
    transition: var(--transition);
}

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

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-logo {
    width: 140px;
    height: auto;
}

.menu-close {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: auto;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-submenu-title {
    margin-top: 8px;
}

.mobile-submenu-title a {
    color: var(--red);
}

.mobile-submenu-item a {
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-dim);
    padding-left: 16px;
}

.mobile-links a.active {
    color: var(--red);
}

.mobile-nav-footer {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.mobile-app-links {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.mobile-app-links img {
    height: 35px;
}

.mobile-copyright {
    font-size: 0.75rem;
    color: var(--text-dimmer);
    font-weight: 600;
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
.hero {
    padding: 180px 5% 100px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    background: transparent;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-title em {
    font-style: normal;
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

/* --- FORM CARD --- */
.form-card {
    position: relative;
    background: var(--secondary-bg);
    border: 1px solid var(--border-red);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-dimmer);
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px var(--red-glow);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-dimmer);
    margin-top: 8px;
}

.form-privacy input {
    margin-top: 3px;
}

.form-btn {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--red-glow);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 0, 0, 0.2);
}

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

.btn-outline:hover {
    background: var(--secondary-bg);
    border-color: var(--text-dimmer);
}

/* --- SECTIONS --- */
section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* --- CARDS & GRIDS --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--border-red);
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--red-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--red);
}

.card-icon i {
    font-size: 24px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* --- NEW FOOTER DESIGN --- */
footer {
    background: var(--secondary-bg);
    padding: 60px 40px 40px;
    border-top: none;
    /* No separator as requested */
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Inner pages hero spacing */
.hero-inner {
    min-height: 50vh !important;
    padding-top: 220px !important;
}

.hero-map-card {
    background: linear-gradient(145deg, #f3f5f7 0%, #eef1f4 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.hero-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-map-placeholder {
    width: 100%;
    min-height: 290px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.45);
    color: var(--text-dimmer);
    font-family: var(--font-tech);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Associations Row */
.footer-associations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    transition: var(--transition);
}

.footer-associations img {
    width: 150px;
    height: auto;
}

.footer-divider {
    height: 0;
    /* Hidden as requested */
    background: transparent;
    margin: 0 0 40px;
}

/* Contact Row */
.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.contact-pill i {
    font-size: 18px;
    color: var(--red);
}

.contact-separator {
    width: 1.5px;
    height: 20px;
    background: var(--border);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--red);
    opacity: 0.8;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dimmer);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-copy em {
    font-style: normal;
    color: var(--red);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dimmer);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-bubble {
    background: white;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.wa-bubble span {
    display: block;
    color: var(--text);
}

.wa-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.wa-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* --- APP SECTION STYLES --- */
.app-section {
    background: var(--tertiary-bg);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--border);
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.app-badge img {
    height: 45px;
    transition: var(--transition);
}

.app-badge:hover img {
    transform: translateY(-4px);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    nav {
        height: 70px;
        width: calc(100% - 40px);
        padding: 0 16px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-links,
    .cta-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 140px 5% 60px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .form-card {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 30px 24px;
    }

    .hero-map-card {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Guided Insurance Form Wizard */
.wizard-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 100px;
}

.wizard-box {
    background: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.wizard-head {
    margin-bottom: 24px;
}

.wizard-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.wizard-progress {
    color: var(--text-dimmer);
    font-size: 0.9rem;
    font-weight: 600;
}

.wizard-feedback {
    min-height: 1.4rem;
    margin: 0 0 18px;
    font-size: 0.9rem;
    color: var(--text-dimmer);
}

.wizard-feedback-error {
    color: var(--red);
    font-weight: 600;
}

.wizard-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.wizard-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.wizard-field[hidden] {
    display: none !important;
}

.wizard-span-12 {
    grid-column: span 12;
}

.wizard-span-6 {
    grid-column: span 6;
}

.wizard-span-4 {
    grid-column: span 4;
}

.wizard-span-3 {
    grid-column: span 3;
}

.wizard-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.wizard-required {
    color: var(--red);
}

.wizard-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.wizard-input::placeholder {
    color: #9ca3af;
}

.wizard-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px var(--red-glow);
}

.wizard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wizard-grid-address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-grid-address .wizard-input:first-child,
.wizard-grid-address .wizard-input:last-child {
    grid-column: span 2;
}

.wizard-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.wizard-choice-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.wizard-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text);
}

.wizard-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin: 8px 0 2px;
}

.wizard-field-section {
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
}

.wizard-field-section:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.wizard-consent {
    display: grid;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}

.wizard-consent-text {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dimmer);
    max-height: 160px;
    overflow: auto;
    padding-right: 8px;
}

.wizard-hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-dimmer);
}

.wizard-actions {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.wizard-success {
    grid-column: 1 / -1;
    background: rgba(5, 150, 105, 0.1);
    color: #065f46;
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .wizard-shell {
        padding: 0 20px 80px;
    }

    .wizard-box {
        padding: 24px;
    }

    .wizard-form {
        grid-template-columns: 1fr;
    }

    .wizard-grid {
        grid-template-columns: 1fr;
    }

    .wizard-span-12,
    .wizard-span-6,
    .wizard-span-4,
    .wizard-span-3 {
        grid-column: span 1;
    }

    .wizard-grid-address .wizard-input:first-child,
    .wizard-grid-address .wizard-input:last-child {
        grid-column: span 1;
    }

    .wizard-actions {
        flex-direction: column;
    }

    .wizard-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 40px;
    width: min(450px, calc(100% - 80px));
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-red);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-header i {
    font-size: 24px;
    color: var(--red);
}

.cookie-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.9rem;
}

.cookie-actions .btn-ghost {
    background: transparent;
    color: var(--text-dimmer);
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    border: none;
    font-family: inherit;
    margin-top: 5px;
}

.cookie-actions .btn-ghost:hover {
    color: var(--text);
}

.cookie-settings {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.cookie-settings.active {
    max-height: 500px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.option-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.option-info p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.cookie-option input[type="checkbox"] {
    appearance: none;
    width: 44px;
    height: 24px;
    background: var(--tertiary-bg);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-option input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-option input[type="checkbox"]:checked {
    background: var(--red);
}

.cookie-option input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.settings-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.legal-link {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        padding: 24px;
    }
}
