/* Cookie Bar Styles - Golden Investment Group Aesthetic */

.cookie-consent-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(26, 29, 46, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    padding: 20px 0;
    z-index: 10001;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-bar.show {
    bottom: 0;
}

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: #c0c0c0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 35px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #c0c0c0;
    color: #000000;
}

.cookie-btn-accept:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
        gap: 20px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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