/* ═══════════════════════════════════════════
   OUR MEAT SECTION – Brisket Yard
   ═══════════════════════════════════════════ */

.meat-section {
  position: relative;
  background: #111;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* ── Farm background image (right half) ── */
.meat-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
}

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

/* Gradient: solid dark on left → transparent on right */
.meat-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #111 0%,
    rgba(17,17,17,0.96) 8%,
    rgba(17,17,17,0.65) 38%,
    rgba(17,17,17,0.15) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* ── Inner layout ── */
.meat-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4.5rem 0;
}

/* ── LEFT CONTENT ── */
.meat-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.meat-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.meat-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.82;
  max-width: 360px;
  margin-bottom: 1.6rem;
}

/* ── Features list ── */
.meat-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.meat-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #bbb;
}

.meat-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: rgba(232,100,26,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meat-feat-icon svg {
  width: 12px;
  height: 12px;
}

/* ── CTA button ── */
.btn-meet {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-meet:hover {
  background: transparent;
  color: var(--orange);
}

/* ── RIGHT COLUMN ── */
.meat-right-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
}

/* ── Traceability card ── */
.trace-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(8,6,3,0.88);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(6px);
  max-width: 360px;
}

.trace-text {
  flex: 1;
  min-width: 0;
}

.trace-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.45rem;
}

.trace-card p {
  font-size: 0.76rem;
  color: #999;
  line-height: 1.65;
  margin: 0;
}

/* ── QR code box ── */
.trace-qr {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  padding: 3px;
}

.trace-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .meat-bg { width: 100%; }
  .meat-bg::before {
    background: linear-gradient(
      to right,
      rgba(17,17,17,0.97) 0%,
      rgba(17,17,17,0.85) 55%,
      rgba(17,17,17,0.55) 100%
    );
  }
  .meat-right-col { justify-content: flex-start; margin-top: 2rem; }
  .trace-card { max-width: 100%; }
}

@media (max-width: 575px) {
  .meat-inner { padding: 3rem 0; }
  .trace-card { flex-direction: column; align-items: flex-start; }
  .trace-qr { width: 60px; height: 60px; }
}
