/* ========================================
   COOKIE NOTICE
======================================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-notice-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-notice-content svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #FF6B35;
}

.cookie-notice-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #D1D5DB;
}

.cookie-notice-content a {
    color: #FF6B35;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-notice-content a:hover {
    color: #E55A2A;
}

.cookie-notice-btn {
    padding: 12px 32px;
    background: #FF6B35;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-notice-btn:hover {
    background: #E55A2A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-notice.hiding {
    animation: slideDown 0.4s ease-out forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px 0;
    }

    .cookie-notice-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-notice-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cookie-notice-content p {
        font-size: 0.875rem;
    }

    .cookie-notice-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-notice-content svg {
        width: 20px;
        height: 20px;
    }

    .cookie-notice-content p {
        font-size: 0.8125rem;
    }
}
