/* Cookie Consent Popup Styles */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
}

/* Fix for header spacing */
.header-space-ddmnhome {
    height: 160px !important; /* Reduced from default height from 191px */
}

.cookie-consent-container {
    background-color: #000;
    color: #fff;
    max-width: 450px;
    width: 90%;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Gotham', Arial, sans-serif;
    margin: 0 30px 30px 0;
    pointer-events: auto;
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
}

.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-btn {
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Gotham', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background-color: #fff;
    color: #000;
}

.cookie-btn-accept:hover {
    background-color: #f0f0f0;
}

.cookie-btn-options {
    display: flex;
    gap: 10px;
}

.cookie-btn-essential {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    flex: 1;
    font-size: 12px;
    padding: 10px 5px;
    border-radius: 30px;
}

.cookie-btn-essential:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    flex: 1;
    font-size: 12px;
    padding: 10px 5px;
    border-radius: 30px;
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 480px) {
    .cookie-consent-container {
        padding: 20px;
    }

    .cookie-consent-text {
        font-size: 14px;
    }

    .cookie-btn {
        font-size: 14px;
        padding: 12px 15px;
    }

    .cookie-btn-essential, .cookie-btn-reject {
        font-size: 11px;
        padding: 10px 5px;
    }
}
