/* =========================================
   Product List Page Specific Styles
   (Cleaned: Shared styles moved to common.css)
   ========================================= */

/* --- Hero Image (ヒーロー画像) --- */
.vl-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
}
.vl-hero img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
/* PC (960px以上) */
@media (min-width: 960px) {
  .vl-hero {
    max-width: var(--container, 1120px);
    margin-inline: auto;
    margin-top: 24px;
    /* 角丸削除済み */
  }
}

/* --- Brand Profile (ブランド・カテゴリ説明エリア) --- */
.vl-brand-profile {
  /*padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e3;*/
  margin-bottom: 0;
}
.vl-brand-profile .name-en {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0;
  line-height: 1.2;
}
.vl-brand-profile .name-ja {
  font-size: var(--fz-s, 14px);
  color: var(--muted, #666);
  margin: 4px 0 16px;
  font-weight: 400;
}
.vl-brand-profile .description {
  font-size: var(--fz-s, 14px);
  line-height: 1.75;
  color: #333;
  margin: 0 0 20px;
}
.vl-brand-profile dl {
  font-size: var(--fz-s, 14px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.vl-brand-profile dt {
  font-weight: 600;
  color: var(--muted, #666);
}
.vl-brand-profile dd {
  margin: 0;
}

/* --- Controls (並び替えプルダウン) --- */
.vl-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.vl-controls select {
  font-family: inherit;
  font-size: var(--fz-s, 14px);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  min-width: 160px;
  cursor: pointer;
  color: #333;
}
.vl-controls select:focus {
  outline: 2px solid #0b0917;
  outline-offset: 1px;
}

/* --- Utility Classes for List Layout --- */
.vl-brand-profile--merge-bottom {
  border-bottom: none;
  padding-bottom: 0;
}
.vl-brand-profile--merge-top {
  border-top: none;
  padding-top: 0;
}

/* --- Pagination (List Only) --- */
.vl-pagination{margin-top:32px;padding:0}
.vl-pagination ul{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin:0;padding:0}
.vl-pagination a, .vl-pagination span{display:inline-block;min-width:40px;height:40px;padding:0 12px;line-height:40px;text-align:center;border:1px solid #ddd;border-radius:8px;background:#fff;font-size:var(--fz-s);transition:all .2s ease}
.vl-pagination a:hover{background:var(--ink);color:#fff;border-color:var(--ink)}
.vl-pagination span.vl-current{background:var(--ink);color:#fff;border-color:var(--ink);font-weight:600}
.vl-pagination span.vl-dots{border:none;background:none}