.wc-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
}

.wc-cookie-box,
.wc-cookie-modal-box {
    background: #ffffff;
    color: #172033;
    border: 1px solid #d9e1ec;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    border-radius: 16px;
}

.wc-cookie-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.wc-cookie-text p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: #475569;
}

.wc-cookie-actions,
.wc-cookie-modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.wc-cookie-btn.primary {
    background: #2563eb;
    color: white;
}

.wc-cookie-btn.secondary {
    background: #eef2f7;
    color: #172033;
}

.wc-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(15, 23, 42, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.wc-cookie-modal[hidden],
.wc-cookie-banner[hidden] {
    display: none !important;
}

.wc-cookie-modal-box {
    width: 100%;
    max-width: 560px;
    padding: 22px;
}

.wc-cookie-modal-box h2 {
    margin: 0 0 16px;
}

.wc-cookie-option {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #e5eaf1;
}

.wc-cookie-option input {
    margin-top: 4px;
}

.wc-cookie-option small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    line-height: 1.4;
}

.wc-cookie-option.disabled {
    opacity: 0.8;
}

@media (max-width: 760px) {
    .wc-cookie-box {
        display: block;
    }

    .wc-cookie-actions {
        margin-top: 14px;
    }

    .wc-cookie-btn {
        width: 100%;
    }
	}