/* ============================================================
   LETAP FISHING — Sectors Page Styles
   css/sectors.css
   ============================================================ */

/* ─── INTRO ─── */
.sectors-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sectors-overview-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sector-overview-chip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  background: var(--navy-light);
  transition: border-color 0.25s, background 0.25s;
}
.sector-overview-chip:hover {
  border-color: rgba(197,151,62,.4);
  background: rgba(197,151,62,.05);
}
.chip-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  min-width: 24px;
  opacity: 0.7;
}
.chip-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
}

/* ─── SECTOR DETAIL ─── */
.sector-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sector-detail-reverse { direction: rtl; }
.sector-detail-reverse > * { direction: ltr; }

.sector-detail-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1rem;
}
.sector-detail-text .section-tag { margin-top: 0.5rem; }
.sector-detail-text .section-body em {
  font-style: italic;
  color: rgba(248,249,250,.75);
}
.sector-detail-text .section-body strong {
  color: var(--white);
  font-weight: 500;
}

/* ─── SECTOR FACTS ─── */
.sector-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(197,151,62,.07);
}
.sector-fact:last-child { border-bottom: none; }
.fact-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact-val {
  font-size: 0.88rem;
  color: var(--white);
  text-align: right;
}

/* ─── VISUAL CARD ─── */
.sector-visual-card {
  background: var(--navy-light);
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector-visual-label {
  padding: 0.75rem 1.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  text-align: center;
  border-top: 1px solid rgba(197,151,62,.1);
}

/* ─── DUAL SECTOR GRID ─── */
.dual-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.dual-sector-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(197,151,62,.1);
  border-radius: var(--radius);
  background: var(--navy-light);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.dual-sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.dual-sector-card:hover { border-color: rgba(197,151,62,.4); }
.dual-sector-card:hover::after { transform: scaleX(1); }
.dual-sector-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.dual-sector-card .section-body em {
  font-style: italic;
  color: rgba(248,249,250,.75);
}

/* ─── PRODUCTS SECTION ─── */
.products-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.products-header .section-tag { justify-content: center; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  background: var(--navy-light);
  border: 1px solid rgba(197,151,62,.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: rgba(197,151,62,.35);
  transform: translateY(-3px);
}

.product-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(197,151,62,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-icon svg { width: 32px; height: 32px; }

.product-body { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }

.product-body h4 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.product-species {
  font-size: 0.76rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.product-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,151,62,.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* "And Much More" card */
.product-card-more {
  border-style: dashed;
  border-color: rgba(197,151,62,.2);
  background: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}
.product-card-more:hover { border-color: rgba(197,151,62,.45); transform: none; }
.product-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}
.product-more-icon { width: 52px; height: 52px; margin-bottom: 0.25rem; }
.product-more-icon svg { width: 52px; height: 52px; }
.product-card-more h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-light);
}
.product-card-more p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
}

/* Products info note */
.products-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(197,151,62,.05);
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  margin-top: 1rem;
}
.pnote-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.pnote-icon svg { width: 20px; height: 20px; }
.products-note p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}
.products-note p strong { color: var(--white); font-weight: 500; }
.products-note p a { color: var(--gold); border-bottom: 1px solid rgba(197,151,62,.3); transition: color var(--transition); }
.products-note p a:hover { color: var(--gold-light); }

/* ─── SECTOR FISH IMAGE CARDS ─── */
.sector-fish-card {
  background: var(--navy-light);
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 2.5rem 2rem 0;
}
.sector-fish-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.sector-fish-card:hover .sector-fish-img { transform: scale(1.04) translateY(-4px); }

/* Two fish side by side (Pilchards & Anchovy) */
.sector-fish-duo { padding: 2rem 1.5rem 0; }
.sector-fish-duo-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}
.sector-fish-duo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.sector-fish-duo-item .sector-fish-img { max-height: 160px; }
.sector-fish-duo-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

/* ─── PILCHARD CAROUSEL ─── */
.pilchard-carousel-card {
  background: var(--navy-light);
  border: 1px solid rgba(197,151,62,.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.pilchard-carousel {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.pc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: none;
}

.pc-slide {
  min-width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.pc-slide.active {
  display: flex;
}

.pc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Show the full photo (no cropping) for carousels whose images
   don't match the wide carousel frame */
.pc-fit-contain .pc-slide { background: var(--navy); }
.pc-fit-contain .pc-slide img { object-fit: contain; }

.pc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid rgba(197,151,62,.45);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.pc-btn:hover {
  background: rgba(197,151,62,.2);
  border-color: var(--gold);
}

.pc-prev { left: 10px; }
.pc-next { right: 10px; }

.pc-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.pc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(197,151,62,.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pc-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ─── CAROUSEL PLACEHOLDER SLIDE ─── */
.pc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--navy);
  gap: 0.85rem;
}
.pc-placeholder svg {
  width: 52px;
  height: 52px;
}
.pc-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.35;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .sectors-intro-grid,
  .sector-detail-grid,
  .dual-sector-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sector-detail-reverse { direction: ltr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}
