/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-notice.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    flex: 1;
}

.cookie-link {
    color: #0ea0c7;
    text-decoration: none;
    cursor: pointer;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-btn {
    background-color: #2f2f2f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #1f1f1f;
}

.cookie-btn:active {
    background-color: #222;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 12px 15px;
    }

    .cookie-notice-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-notice p {
        font-size: 13px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
