/**
 * WooSpoke Cookie Consent Styles
 */

.wscc-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: wsccSlideIn 0.4s ease-out;
}

.wscc-cookie-banner.wscc-bottom {
    bottom: 0;
}

.wscc-cookie-banner.wscc-top {
    top: 0;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.wscc-top.wscc-cookie-banner {
    animation-name: wsccSlideInTop;
}

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

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

.wscc-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.wscc-icon {
    flex-shrink: 0;
    color: #c9a227;
}

.wscc-text {
    flex: 1;
}

.wscc-text p {
    margin: 0;
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

.wscc-privacy {
    margin-top: 8px !important;
}

.wscc-privacy-link {
    color: #c9a227;
    text-decoration: none;
    font-weight: 500;
}

.wscc-privacy-link:hover {
    color: #d4b445;
    text-decoration: underline;
}

.wscc-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.wscc-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.wscc-btn-accept {
    background: #c9a227;
    color: #0a0a0f;
}

.wscc-btn-accept:hover {
    background: #d4b445;
    transform: translateY(-1px);
}

.wscc-btn-decline {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wscc-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hide animation */
.wscc-cookie-banner.wscc-hiding {
    animation: wsccSlideOut 0.3s ease-in forwards;
}

@keyframes wsccSlideOut {
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.wscc-top.wscc-hiding {
    animation-name: wsccSlideOutTop;
}

@keyframes wsccSlideOutTop {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wscc-container {
        flex-direction: column;
        text-align: center;
    }

    .wscc-content {
        flex-direction: column;
        align-items: center;
    }

    .wscc-buttons {
        width: 100%;
        justify-content: center;
    }

    .wscc-btn {
        flex: 1;
        max-width: 160px;
    }
}

