/* ── Catalogue Section ── */
#catalogueSection {
  padding: 30px 0 20px;
}

.ctrl-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.ctrl-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ctrl-title {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
}

.shuffle-tag,
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.filter-tag {
  background: var(--o-lt);
  border-color: rgba(255, 102, 0, .2);
  color: var(--o);
  display: none;
}

.filter-tag.show {
  display: inline-flex;
}

.count-pill {
  background: var(--ink2);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.reset-btn {
  background: var(--bg);
  color: var(--mid);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--t);
}

.reset-btn:hover {
  background: var(--ink2);
  color: white;
}

/* Filter chips */
.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 10px;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.fchip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  transition: var(--t);
}

.fchip:hover {
  border-color: var(--o);
  color: var(--o);
}

.fchip.active {
  background: var(--o);
  border-color: var(--o);
  color: white;
  box-shadow: var(--sh-o);
}

.fchip.fall.active {
  background: var(--ink2);
  border-color: var(--ink2);
  box-shadow: var(--sh);
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.pcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fIn .4s var(--ease) both;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.pc-img-w {
  position: relative;
  aspect-ratio: 3/4;
  background: #eee;
  overflow: hidden;
}

.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.pcard:hover .pc-img {
  transform: scale(1.08);
}

.pc-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.pc-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: white;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--t);
}

.pc-wa:hover {
  background: var(--wa-dk);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.empty-state i {
  font-size: 50px;
  color: var(--border);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-family: var(--fh);
  font-size: 22px;
  margin-bottom: 8px;
}

.btn-reset {
  margin-top: 20px;
  background: var(--o);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
}

/* Load More */
.lm-wrap {
  text-align: center;
  margin-top: 40px;
}

.lm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--o);
  color: var(--o);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--t);
}

.lm-btn:hover {
  background: var(--o);
  color: white;
  box-shadow: var(--sh-o);
}
