/* Floating Card Container */
.cookie-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.98); /* Near solid for readability */
    backdrop-filter: blur(10px); /* Glass effect behind it */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 10000;
    
    /* Animation Start State */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Brand Accent */
    border-left: 4px solid var(--accent-red);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Active State (Shown via JS) */
.cookie-float.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* Icon & Text */
.cookie-icon { font-size: 24px; margin-bottom: -10px; }

.cookie-text h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-color);
}

.cookie-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.cookie-text a {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: 600;
}

/* Buttons */
.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 5px;
}

.btn-text {
    background: none;
    border: none;
    font-size: 13px;
    color: #999;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-text:hover { color: var(--text-color); }

.btn-pill-sm {
    background: var(--accent-red);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.btn-pill-sm:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Mobile Tweak */
@media (max-width: 480px) {
    .cookie-float {
        left: 5%;
        bottom: 20px;
        width: 90%;
    }
}