.category-header {
    padding: 20px;
    text-align: center;
    font-family: 'Apple SD Gothic Neo', sans-serif;
}

.category-header h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.category-header p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 10px;
}

.shop-card {
    width: 45%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.shop-card:hover {
    transform: translateY(-4px);
}

.shop-card img {
    width: 100%;
    aspect-ratio: 4 / 3; /* 4:3 비율 유지 */
    object-fit: cover;
    border-radius: 8px;
}

.shop-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
}

.shop-info h3 {
    font-size: 16px;
    margin: 5px 0;
}

.shop-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: auto; /* 시공가를 아래로 밀기 위한 설정 */
}

.shop-info .price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 14px;
    margin-top: 10px;
    display: block;
}
