.collectible-search-result {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.collectible-search-result .collectible-preview {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.collectible-search-result .collectible-info {
    flex: 1;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 20px;
}

.collectible-search-result .collectible-images {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex: 1;
}

.collectible-search-result .collectible-images img {
    width: 350px;
    height: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.collectible-search-output {
    min-height: 24px;
    margin-top: 10px;
}

/* блок "идёт поиск" */
.cp-loading {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #666;
    font-size: 14px;
}

/* крутилка */
.cp-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #555;
    border-radius: 50%;
    animation: cp-spin 0.8s linear infinite;
}

@keyframes cp-spin {
    to { transform: rotate(360deg); }
}

/* плавное появление результата */
.fade-in {
    opacity: 0;
    animation: cp-fade 220ms ease-out forwards;
}

@keyframes cp-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* стиль кнопки "Поиск" */
.collectible-search-form .button {
    background-color: #ca0000;             /* основной цвет */
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;                    /* ← увеличили размер */
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;                       /* чуть крупнее шрифт */
    line-height: 1.2;
    transition: 
        background-color 0.25s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* наведение — ярче и чуть приподнята */
.collectible-search-form .button:hover {
    background-color: #e00000;
    box-shadow: 0 4px 10px rgba(224, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* эффект нажатия — слегка вжимается */
.collectible-search-form .button:active {
    background-color: #b00000;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

/* фокус — подсветка клавиатурного фокуса */
.collectible-search-form .button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.35);
}