.geh-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 16px;
    animation: gehCookieSlide 0.4s ease-out;
}

@keyframes gehCookieSlide {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.geh-cookies[hidden] {
    display: none !important;
}

.geh-cookies__card {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 -2px 40px rgba(0,0,0,0.14), 0 4px 24px rgba(0,0,0,0.08);
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-top: 3px solid #BA721C;
}

.geh-cookies__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.geh-cookies__content {
    flex: 1;
    min-width: 0;
}

.geh-cookies__titulo {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.geh-cookies__cuerpo {
    margin: 0 0 6px;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
}

.geh-cookies__legal {
    margin: 0 0 14px;
    font-size: 11px;
    color: #94a3b8;
}

.geh-cookies__opts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8ecf1;
}

.geh-cookies__opts[hidden] {
    display: none !important;
}

.geh-cookies__opt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.geh-cookies__opt--disabled {
    cursor: default;
    opacity: 0.7;
}

.geh-cookies__chk {
    display: none;
}

.geh-cookies__check {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    background: #fff;
}

.geh-cookies__check--on,
.geh-cookies__chk:checked + .geh-cookies__check {
    background: #BA721C;
    border-color: #BA721C;
    color: #fff;
}

.geh-cookies__check--on::after,
.geh-cookies__chk:checked + .geh-cookies__check::after {
    content: '✓';
    font-size: 11px;
    font-weight: 700;
}

.geh-cookies__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    min-width: 160px;
}

.geh-cookies__btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.18s;
    text-align: center;
    white-space: nowrap;
}

.geh-cookies__btn--aceptar {
    background: #BA721C;
    color: #fff;
}

.geh-cookies__btn--aceptar:hover {
    background: #9e601a;
}

.geh-cookies__btn--rechazar {
    background: #f1f5f9;
    color: #374151;
    border: 1px solid #e2e8f0;
}

.geh-cookies__btn--rechazar:hover {
    background: #e2e8f0;
}

.geh-cookies__btn--guardar {
    background: #BA721C;
    color: #fff;
}

.geh-cookies__btn--guardar:hover {
    background: #9e601a;
}

.geh-cookies__btn--guardar[hidden] {
    display: none !important;
}

.geh-cookies__btn--config {
    background: transparent;
    color: #64748b;
    font-size: 12px;
    padding: 6px 10px;
    text-decoration: underline;
}

.geh-cookies__btn--config:hover {
    color: #BA721C;
}

@media (max-width: 768px) {
    .geh-cookies__card {
        flex-direction: column;
        padding: 20px;
        border-radius: 14px 14px 0 0;
    }

    .geh-cookies__actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }

    .geh-cookies__btn--aceptar,
    .geh-cookies__btn--guardar,
    .geh-cookies__btn--rechazar {
        flex: 1;
    }
}
