/* Cookie Consent Banner — DoctorDoctor.ca */

.dd-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1e2023;
    color: #e0e0e0;
    padding: 18px 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    font-size: 14px;
    line-height: 1.5;
}

.dd-cookie-banner.dd-cookie-show {
    transform: translateY(0);
}

.dd-cookie-banner.dd-cookie-hide {
    transform: translateY(100%);
}

.dd-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.dd-cookie-text {
    flex: 1;
    min-width: 0;
}

.dd-cookie-text p {
    margin: 0;
    color: #e0e0e0;
}

.dd-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.dd-cookie-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.dd-cookie-btn-accept {
    background: #0088cc;
    color: #fff;
}

.dd-cookie-btn-accept:hover {
    background: #006da3;
    color: #fff;
}

.dd-cookie-btn-learn {
    background: transparent;
    color: #adb5bd;
    border: 1px solid #555;
}

.dd-cookie-btn-learn:hover {
    background: #2a2d31;
    color: #fff;
    text-decoration: none;
}

/* Responsive: stack on small screens */
@media (max-width: 576px) {
    .dd-cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .dd-cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .dd-cookie-btn {
        flex: 1;
        text-align: center;
    }
}
