/* 商品画像：90x180px固定で統一 */
.prod-item .prod-img img {
    width: 90px;
    height: 180px;
    object-fit: contain;
    object-position: center;
}

/* ローディングオーバーレイ */
.prod-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.prod-loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: prod-spin 0.8s linear infinite;
}

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

/* FILTERボタン */
.prod-form-btn button {
    cursor: pointer;
}

/* 0件メッセージ */
.prod-no-results {
    width: 100%;
    text-align: center;
    padding: 60px 0;
}
