.simple-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00040A;
    border-top: 1px solid #00040A;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.simple-cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    color: white;
}

.cookie-text a {
    color: white;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #CCCCCC;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-radius: 40px;
    border: solid 2px;
    font-weight: 700;
    white-space: nowrap;
}

.cookie-btn-deny {
    background: white;
    color: #00040A;
    border-color: #00040A;
}

.cookie-btn-deny:hover {
    background: #ccc;
    color: #4c4c4c;
    border-color: #ccc;
}

.cookie-btn-cancel {
    background: #00040A;
    color: white;
    border-color: #00040A;
}

.cookie-btn-cancel:hover {
    background: #ccc;
    border-color: #ccc;
    color: #4c4c4c;
}

.cookie-btn-accept-some {
    background: white;
    color: #00040A;
    border-color: #00040A;
}

.cookie-btn-accept-some:hover {
    background: #ccc;
    color: #4c4c4c;
    border-color: #ccc;
}

.cookie-btn-accept-all {
    background-color: #ccc;
    color: #4c4c4c;
    border-color: #ccc;
}

.cookie-btn-accept-all:hover {
    background: white;
    color: #00040A;
    border-color: white;
}

.cookie-btn-save {
    background-color: #ccc;
    color: #4c4c4c;
    border-color: #ccc;
}

.cookie-btn-save:hover {
    background: white;
    color: #00040A;
    border-color: #00040A;
}

.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.preference-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.preference-item:last-of-type {
    border-bottom: none;
}

.preference-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.preference-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

.preference-info-link {
    color: #00040A;
    text-decoration: none;
    font-size: 12px;
    padding: 2px 8px;
    border: 1px solid #00040A;
    border-radius: 80px;
    transition: all 0.2s ease;
}

.preference-info-link:hover {
    background: #ccc;
    color: #4c4c4c;
    border: 1px solid #ccc;
}

.preference-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #00040A;
}

.preference-item p {
    margin: 0;
    color: #666;
    font-size: 13px;
    margin-left: 28px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

    .modal-content {
        margin: 10px;
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }
}
