/* ============================================================
   Horns & Heritage — added features
   1) Cart empty-state message + Continue Shopping button
   2) Featured Bull of the Week section
   Additive only. Reuses existing design tokens (colors, fonts).
   ============================================================ */

/* ---------- 1) Empty cart state ---------- */
.cart-empty .cart-empty-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cart-empty .cart-empty-msg {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 30ch;
  margin: 0 auto 22px;
}
.cart-empty .cart-empty-cta {
  margin: 0 auto;
}

/* ---------- 2) Featured Bull of the Week ---------- */
.featured-bull {
  background: var(--bg-secondary);
}
.fb-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.fb-media {
  position: relative;
  align-self: stretch;
  min-height: 320px;
}
.fb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fb-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(61, 42, 26, 0.25);
}
.fb-body {
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 52px) clamp(28px, 3.5vw, 48px) 0;
}
@media (max-width: 760px) {
  .fb-body { padding: 26px 26px 30px; }
}
.fb-name {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--text-primary);
  margin: 14px 0 12px;
}
.fb-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 22px;
}
.fb-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.fb-spec {
  flex: 1 1 120px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 16px;
}
.fb-spec-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.fb-spec strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-green);
}
.fb-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(184, 81, 44, 0.1);
  color: var(--rust);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.fb-cd-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.fb-cd-time {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.fb-cta {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (min-width: 761px) {
  .fb-cta { width: auto; }
}

@media (max-width: 760px) {
  .fb-card { grid-template-columns: 1fr; }
  .fb-media { min-height: 240px; }
  .fb-countdown { width: 100%; justify-content: center; }
}
