.scaak-cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    width: min(560px, calc(100% - 32px));
    color: #333;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
}

.scaak-cookie-consent.is-dismissed {
    display: none;
}

.scaak-cookie-card,
.scaak-cookie-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #A4243B;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.scaak-cookie-card {
    padding: 24px;
}

.scaak-cookie-kicker {
    display: block;
    margin-bottom: 8px;
    color: #A4243B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scaak-cookie-card h3,
.scaak-cookie-panel h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: none;
}

.scaak-cookie-card p,
.scaak-cookie-panel p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.scaak-cookie-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scaak-cookie-btn {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    transition: all 0.2s ease;
}

.scaak-cookie-btn-primary {
    border-color: #A4243B;
    background: #A4243B;
    color: #fff;
}

.scaak-cookie-btn-primary:hover,
.scaak-cookie-btn-primary:focus {
    border-color: #842033;
    background: #842033;
    color: #fff;
}

.scaak-cookie-btn-secondary:hover,
.scaak-cookie-btn-secondary:focus {
    border-color: #A4243B;
    color: #A4243B;
}

.scaak-cookie-panel {
    display: none;
    padding: 24px;
}

.scaak-cookie-panel.is-open {
    display: block;
}

.scaak-cookie-card.is-hidden {
    display: none;
}

.scaak-cookie-options {
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.scaak-cookie-option {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #eee;
    background: #fafafa;
}

.scaak-cookie-option strong {
    display: block;
    margin-bottom: 4px;
    color: #222;
    font-size: 14px;
}

.scaak-cookie-option span {
    display: block;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.scaak-cookie-switch {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 26px;
}

.scaak-cookie-switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.scaak-cookie-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #cfcfcf;
    transition: 0.2s;
}

.scaak-cookie-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    transition: 0.2s;
}

.scaak-cookie-switch input:checked + .scaak-cookie-slider {
    background: #A4243B;
}

.scaak-cookie-switch input:checked + .scaak-cookie-slider:before {
    transform: translateX(22px);
}

.scaak-cookie-switch input:disabled + .scaak-cookie-slider {
    cursor: not-allowed;
    opacity: 0.8;
}

.scaak-cookie-legal {
    margin-top: 14px !important;
    font-size: 12px !important;
    color: #777 !important;
}

.scaak-cookie-link {
    color: #A4243B;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

.scaak-cookie-settings-link {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 568px) {
    .scaak-cookie-consent {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .scaak-cookie-card,
    .scaak-cookie-panel {
        padding: 20px;
    }

    .scaak-cookie-actions,
    .scaak-cookie-btn {
        width: 100%;
    }

    .scaak-cookie-option {
        display: block;
    }

    .scaak-cookie-switch {
        margin-top: 12px;
    }
}
