#cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(42, 41, 46, .97);
    color: #f5f5f5;
    border-top: 3px solid #62ac5e;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}

#cookie-consent .cookie-inner {
    max-width: 1444px;
    min-width: 320px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#cookie-consent .cookie-text {
    flex: 1 1 auto;
    margin-bottom: 8px;
}

#cookie-consent .cookie-title {
    margin: 0 0 12px 0;
    font-family: "GerberaBold";
    font-size: 22px;
    line-height: 1.2;
    color: #f5f5f5;
}

#cookie-consent .cookie-desc {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

#cookie-consent .cookie-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

/* Buttons styled to match existing concept */
#cookie-consent .cookie-btn-accept {
    background: #62ac5e;
    color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

#cookie-consent .cookie-btn-accept:hover {
    background: #4f8d4c;
}

#cookie-consent .cookie-btn-decline {
    background: transparent;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
}

#cookie-consent .cookie-btn-decline:hover {
    background: #f5f5f5;
    color: #2a292e;
}

@media (max-width: 575.98px) {
    #cookie-consent .cookie-inner {
        flex-direction: column;
        gap: 12px;
    }
    #cookie-consent .cookie-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
