/* =========================================
   shop-list.css — ショップ一覧
   ========================================= */

/* ----- セクション ----- */
.shop-list__section {
    margin-bottom: 48px;
}

.shop-list__section-title {
    /* テーマデフォルトのh2スタイルを使用 */
}

/* ----- グリッド ----- */
.shop-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ----- カード ----- */
.shop-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

/* ----- サムネイル ----- */
.shop-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}

.shop-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #999;
    font-size: 13px;
}

/* ----- カード本体 ----- */
.shop-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
}

.shop-card__title {
    font-size: 15px;
}

.shop-card__badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    background: #f3f4f6;
    border-radius: 3px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.shop-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 auto 0;
    padding-bottom: 8px;
}

.shop-card__meta {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 4px;
}

.shop-card__meta svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ----- 空メッセージ ----- */
.shop-list__empty {
    text-align: center;
    padding: 40px 0;
    color: #999;
}

/* ----- レスポンシブ ----- */
@media (max-width: 1024px) {
    .shop-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .shop-card__body {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .shop-list__grid {
        grid-template-columns: 1fr;
    }
}