.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    z-index: 9998;
    font-family: 'Poppins', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.btn-accept {
    background: #ff6f61;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept:hover {
    background: #ff5438;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .btn-accept {
        width: 100%;
        max-width: 280px;
    }
}

.privacy-link {
    color: #ff6f61;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
}

.privacy-link:hover {
    color: #ff5438;
    text-decoration: none;
}