/* ================================================================
   SEP Cookie Consent Banner — Full Width Bottom
   ================================================================ */

#sep-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #111827;
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
    font-family: Arial, Helvetica, sans-serif;
    display: none; /* JS controls visibility via slideDown */
}

#sep-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#sep-cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 260px;
}

#sep-cookie-icon {
    font-size: 28px;
    flex-shrink: 0;
}

#sep-cookie-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}

#sep-cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
    margin-left: 4px;
}

#sep-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.sep-cookie-btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    white-space: nowrap;
}

.sep-cookie-btn-accept {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}
.sep-cookie-btn-accept:hover {
    background: #059669;
    border-color: #059669;
}

.sep-cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.25);
}
.sep-cookie-btn-decline:hover {
    color: #fff;
    border-color: rgba(255,255,255,.6);
}

/* Mobile */
@media ( max-width: 600px ) {
    #sep-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 16px 20px;
    }
    #sep-cookie-buttons {
        width: 100%;
    }
    .sep-cookie-btn {
        flex: 1;
        text-align: center;
    }
}