.cpc-design-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: hsl(213.88deg 100% 35%) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.cpc-design-chip:hover,
.cpc-design-chip:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    color: #fff !important;
}

.cpc-design-chip:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.cpc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
}

.cpc-modal-overlay.cpc-modal-open {
    display: flex;
}

.cpc-modal-content {
    position: relative;
    width: 80%;
    max-width: 1100px;
    background: #0b1221;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.cpc-modal-body {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background: #0f172a;
}

.cpc-modal-body img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cpc-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

html.cpc-modal-open {
    overflow: hidden;
}

@media (min-width: 1025px) {
    .cpc-modal-content {
        width: 35%;
        max-width: none;
    }

    .cpc-meta-chip-item {
        display: block;
    }
}
