/* ========================================
   COOKIE CONSENT BANNER STYLES
   Minimal bottom-right banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(226, 25, 25, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-width: 360px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 20px;
    line-height: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Chakra Petch', sans-serif;
}

.cookie-banner a {
    color: #e21919;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-banner a:hover {
    color: #ff3333;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
}

.cookie-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Chakra Petch', sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #e21919 0%, #ff3333 100%);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ff3333 0%, #e21919 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(226, 25, 25, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 14px 16px;
    }

    .cookie-banner p {
        font-size: 12px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Compact variant for even smaller size */
@media (min-width: 769px) {
    .cookie-banner.compact {
        max-width: 320px;
        padding: 12px 16px;
    }

    .cookie-banner.compact p {
        font-size: 12px;
    }

    .cookie-banner.compact .cookie-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}