/* ── item/detail.php ── */
.range {
    padding: 20px 30px;
    background: url(/images/spacer-dot.png);
    background-size: 2px auto;
    background-repeat: repeat;
    margin-bottom: 20px;
}

.range li {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.range li {
    border-bottom: 1px solid #999;
    padding: 0.5em 0;
    display: flex;
    align-items: baseline;
}

.range li {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.range.point li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0eb";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    line-height: 1;
    color: #FFD43B;
    margin-right: 10px;
    font-weight: bold;
}

.range {
    padding: 20px 30px;
    background: url(/assets/images/spacer-dot.png);
    background-size: 2px auto;
    background-repeat: repeat;
}

.recommend-tag span {
    background-color:#999;
    display: inline-block;
    margin-right: 10px;
    padding: 3px 5px;
    color: #FFF;
    font-size: 14px;
}

.recommend-tag span:first-child {
    color: #333;
    background-color: #FFF;
    border: 1px solid #333;
}

/* ── item/index.php ── */
.item-list-section {
    padding: 64px 0 80px;
}
.item-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}
.item-card-link {
    width: calc((100% - 72px) / 4);
    text-decoration: none;
    color: #0B0B0C;
    display: block;
    position: relative;
}
.item-card-link__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #E6E7EA;
    margin-bottom: 12px;
    position: relative;
}
.item-card-link__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.item-card-link__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0B0B0C;
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    font-weight: bold;
}
.item-card-link__name {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0 0 4px;
    line-height: 1.5;
}
.item-card-link__collab {
    font-size: 0.8rem;
    color: #6B8F76;
    margin: 0;
    line-height: 1.5;
}
.item-search-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E6E7EA;
}
.item-search-bar select,
.item-search-bar input[type="text"] {
    border: 1px solid #E6E7EA;
    padding: 6px 10px;
    font-size: 0.85rem;
    background: #fff;
    color: #0B0B0C;
}
.item-search-bar button {
    border: 1px solid #0B0B0C;
    background: #0B0B0C;
    color: #fff;
    padding: 6px 20px;
    font-size: 0.85rem;
    cursor: pointer;
}
.item-result-count {
    font-size: 0.85rem;
    color: #6B8F76;
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .item-card-link { width: calc((100% - 24px) / 2); }
}
@media (max-width: 540px) {
    .item-card-link { width: calc((100% - 16px) / 2); }
    .item-grid { gap: 16px; }
}
