.hanaton-colors-wrap {
    --hanaton-bg-base: transparent;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.1rem 1rem 2rem;
    background: var(--hanaton-bg-base);
    border-radius: 14px;
}

.hanaton-colors-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.065;
    filter: grayscale(1);
    background-image: var(--hanaton-logo);
    background-repeat: repeat;
    background-size: 259px 95px;
    background-position: 0 0;
}

.hanaton-colors-grid {
    position: relative;
    z-index: 1;
}

.hanaton-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.35rem;
}

.hanaton-color-disc {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.hanaton-color-disc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        rgba(0, 0, 0, 0.02) 0,
        rgba(0, 0, 0, 0.02) 0.5px,
        transparent 0.5px,
        transparent 8px
    );
    z-index: 2;
}

.hanaton-color-disc-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hanaton-color-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 4px;
    text-align: center;
    z-index: 3;
    color: #171717;
    overflow: hidden;
}

.hanaton-color-code {
    font-weight: 700;
    font-size: 0.68rem;
    line-height: 1.1;
}

.hanaton-color-desc {
    font-size: 0.55rem;
    line-height: 1.1;
}

.hanaton-color-hidden {
    margin-top: 2px;
    padding-top: 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.hanaton-color-hidden .hanaton-color-code {
    font-size: 0.54rem;
}

.hanaton-color-hidden .hanaton-color-desc {
    font-size: 0.48rem;
}

@media (max-width: 560px) {
    .hanaton-colors-wrap {
        padding-inline: 0.75rem;
    }

    .hanaton-colors-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .hanaton-color-disc {
        width: 152px;
        height: 152px;
    }
}
