/*
 * pet-square swell_child : main.css
 *
 * 子テーマ独自スタイル。SWELL 親テーマのスタイルを上書き / 補強する。
 * bridge プラグイン [psb_shop_list] の装飾もここに書く（段階 3-5a）。
 */

/* ============================================================
   bridge : 店舗一覧（[psb_shop_list]）
   ============================================================ */

.psb-shop-list {
    list-style: none;
    margin: 1.5em 0;
    padding: 0;
    display: grid;
    gap: 1em;
}

.psb-shop-list__item {
    margin: 0;
    padding: 1.2em 1.4em;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.psb-shop-list__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.psb-shop-list__name {
    margin: 0 0 0.4em;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.3;
}

.psb-shop-list__category {
    display: inline-block;
    margin: 0 0 0.6em;
    padding: 0.15em 0.7em;
    background: #f0f4f8;
    border-radius: 12px;
    font-size: 0.8em;
    color: #4a5568;
}

.psb-shop-list__area,
.psb-shop-list__address,
.psb-shop-list__phone,
.psb-shop-list__website {
    margin: 0.2em 0;
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
}

.psb-shop-list__website a {
    color: #2b6cb0;
    text-decoration: none;
    word-break: break-all;
}

.psb-shop-list__website a:hover {
    text-decoration: underline;
}

.psb-shop-list__empty {
    margin: 2em 0;
    padding: 1em;
    text-align: center;
    color: #888;
    background: #f8f8f8;
    border-radius: 4px;
}

/* ============================================================
   theme override: shop-card（template-parts/shop-card.php）
   ============================================================ */

.pst-shop-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.2em;
    align-items: start;
}

.pst-shop-card__media {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    line-height: 0;
}

.pst-shop-card__media:hover .pst-shop-card__shot {
    opacity: 0.85;
}

.pst-shop-card__shot {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.pst-shop-card__body {
    min-width: 0;
}

.pst-shop-card__rating {
    display: flex;
    align-items: baseline;
    gap: 0.3em;
    margin: 0.4em 0;
    font-size: 0.95em;
}

.pst-shop-card__rating-star {
    color: #f59e0b;
    font-size: 1.1em;
    line-height: 1;
}

.pst-shop-card__rating-value {
    font-weight: 700;
    color: #2d3748;
}

.pst-shop-card__rating-count {
    color: #718096;
    font-size: 0.85em;
}

.pst-shop-card__postal {
    color: #718096;
    margin-right: 0.5em;
}

@media (max-width: 600px) {
    .pst-shop-card {
        grid-template-columns: 1fr;
    }
}
