/* Cookie Banner Design */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 29, 53, 0.95);
    color: #fff;
    padding: 2.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    display: none;
    font-family: 'Montserrat', sans-serif;
    border-top: 3px solid #00d2a0;
    backdrop-filter: blur(10px);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content h3 {
    margin: 0 0 1rem;
    color: #00d2a0;
    font-size: 1.5rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.cookie-content a {
    color: #00d2a0;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cookie {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-accept {
    background: #00d2a0;
    color: #0a1d35;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-settings {
    background: transparent;
    color: #00d2a0;
    text-decoration: underline;
    border: none;
    padding: 0;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Modal Settings */
.cookie-settings-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 2.5rem;
    border-radius: 8px;
    z-index: 10001;
    width: 90%;
    max-width: 600px;
    display: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.cookie-settings-modal h4 {
    margin-top: 0;
    color: #0a1d35;
    border-bottom: 2px solid #00d2a0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-option label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
}

.cookie-option span {
    font-size: 0.85rem;
    color: #666;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00d2a0;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #eee;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
}

@media (max-width: 768px) {
    .cookie-consent-overlay {
        padding: 1.5rem;
    }
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    .btn-cookie {
        width: 100%;
    }
}
