/* 🍪 COOKIE/SESSION NOTICE - BOTTOM LEFT */
.cookie-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    pointer-events: none;
}

.cookie-notice {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    padding: 20px;
    pointer-events: all;
    animation: slideUpFadeLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideUpFadeLeft {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
.cookie-notice-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #94a3b8;
}

.cookie-notice-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-notice-close i {
    font-size: 14px;
}

.cookie-notice-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.cookie-notice-icon i {
    font-size: 22px;
    color: #fff;
}

.cookie-notice-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
}

.cookie-notice-text {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.5;
}

.cookie-notice-features {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 14px;
}

.cookie-notice-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.cookie-notice-feature:last-child {
    margin-bottom: 0;
}

.cookie-notice-feature i {
    color: #10b981;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-notice-feature span {
    color: #cbd5e1;
    font-size: 11px;
    line-height: 1.4;
}

.cookie-notice-duration {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.4;
}

.cookie-notice-actions {
    display: flex;
    gap: 8px;
}

.cookie-notice-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cookie-notice-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.cookie-notice-btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

.cookie-notice-btn i {
    font-size: 14px;
}

/* Mobile Responsive - Bottom Sheet */
@media (max-width: 768px) {
    .cookie-notice-overlay {
        background: rgba(0, 0, 0, 0.4);
        pointer-events: all;
    }
    
    .cookie-notice {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 20px 20px 24px;
        animation: slideUpMobile 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        transform: translateY(100%);
    }
    
    @keyframes slideUpMobile {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Drag handle */
    .cookie-notice::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .cookie-notice {
        width: 360px;
        bottom: 20px;
        left: 20px;
    }
}
