/* =============================================
   DIE MEAT SHOP — Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f5ede0;
  --cream-2:  #ede0cc;
  --bone:     #d9c9b0;
  --charcoal: #1a1614;
  --dark:     #111010;
  --red:      #c0392b;
  --red-deep: #96200f;
  --red-glow: rgba(192,57,43,.18);
  --tan:      #8b6b4a;
  --text:     #2c2320;
  --muted:    #7a6a5e;
  --white:    #ffffff;
  --nav-h:    68px;
  --radius:   4px;
  --radius-lg:12px;
  --shadow:   0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:0 12px 48px rgba(0,0,0,.22);
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .7em 1.6em; border-radius: var(--radius);
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn--primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 20px var(--red-glow); }
.btn--ghost {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--add {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
  font-size: .85rem; padding: .55em 1.3em;
}
.btn--add:hover { background: var(--red); border-color: var(--red); }
.btn--small { padding: .45em 1em; font-size: .8rem; }
.btn--full { width: 100%; }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}
.section-tag--light { color: var(--bone); }

.section-header {
  text-align: center;
  max-width: 600px; margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--charcoal); line-height: 1.15; margin-bottom: .75rem;
}
.section-header--dark h2 { color: var(--cream); }
.section-header p { color: var(--muted); font-size: 1.05rem; font-weight: 300; }
.section-header--dark p { color: var(--bone); }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(17,16,16,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 1.5rem; height: var(--nav-h);
}
.nav__brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.nav__logo-icon { font-size: 1.5rem; line-height: 1; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-text strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); letter-spacing: .01em; }
.nav__brand-text small { font-size: .68rem; color: var(--bone); letter-spacing: .12em; text-transform: uppercase; font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone); text-decoration: none; transition: color .2s;
}
.nav__links a:hover { color: var(--red); }
.nav__cart-btn {
  display: flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--white); border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .5em 1.1em; border-radius: var(--radius);
  cursor: pointer; transition: background .2s; position: relative;
}
.nav__cart-btn:hover { background: var(--red-deep); }
.cart-badge {
  background: var(--white); color: var(--red);
  font-size: .7rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--bone); border-radius: 2px; transition: all .3s;
}
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.06);
  padding: 1rem 1.5rem 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bone); text-decoration: none; padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__mobile-link:hover { color: var(--red); }
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1600&q=80') center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,10,8,.88) 0%,
    rgba(26,14,10,.75) 50%,
    rgba(17,10,8,.6) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero__location {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bone); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
}
.hero__location::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: var(--red);
}
.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero__heading em {
  font-style: italic; color: var(--red);
  display: block;
}
.hero__sub {
  font-size: 1.1rem; font-weight: 300; color: var(--bone);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero__stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: .15rem; }
.hero__stat-val {
  font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--bone); opacity: .7;
}
.hero__stat-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
}
.hero__stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.2); }

/* ── HAMPERS ───────────────────────────────── */
.hampers {
  background: var(--cream);
  padding: 6rem 1.5rem;
}
.hampers__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.hamper-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; position: relative;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.hamper-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hamper-card--featured {
  background: var(--charcoal);
  border-color: var(--red);
}
.hamper-card--featured .hamper-card__name,
.hamper-card--featured .hamper-card__tag,
.hamper-card--featured .hamper-card__price { color: var(--cream); }
.hamper-card--featured .hamper-card__desc { color: var(--bone); }
.hamper-card--featured .hamper-card__items li { color: var(--bone); }
.hamper-card--featured .hamper-card__items li::before { background: var(--red); }
.hamper-card--featured .hamper-card__price-label { color: var(--muted); }
.hamper-card__badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3em .9em; border-radius: 0 0 var(--radius) var(--radius);
}
.hamper-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.hamper-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.2;
}
.hamper-card__desc { font-size: .95rem; color: var(--muted); font-weight: 300; }
.hamper-card__items {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: .4rem;
}
.hamper-card__items li {
  font-size: .88rem; color: var(--text); font-weight: 400;
  padding-left: 1rem; position: relative;
}
.hamper-card__items li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--tan);
}
.hamper-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid rgba(0,0,0,.07); gap: 1rem;
}
.hamper-card--featured .hamper-card__footer { border-top-color: rgba(255,255,255,.1); }
.hamper-card__price-row { display: flex; flex-direction: column; }
.hamper-card__price-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hamper-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1.1;
}
.hampers__note {
  text-align: center; margin-top: 2.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

/* ── CUTS ──────────────────────────────────── */
.cuts {
  background: var(--charcoal);
  padding: 6rem 1.5rem;
}
.cuts .section-header { margin: 0 auto 3rem; }
.cuts__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.cut-card {
  background: rgba(255,255,255,.03);
  padding: 1.75rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem;
  transition: background .2s;
}
.cut-card:hover { background: rgba(255,255,255,.07); }
.cut-card__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tan);
}
.cut-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin: .35rem 0 .4rem;
}
.cut-card__desc { font-size: .88rem; color: var(--bone); font-weight: 300; }
.cut-card__footer {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.cut-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-right: auto;
}
.cut-card__qty { display: flex; align-items: center; gap: .3rem; }
.qty-btn {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1); color: var(--cream); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); cursor: pointer; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: rgba(255,255,255,.2); }
.qty-input {
  width: 38px; text-align: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); color: var(--cream); font-size: .9rem;
  padding: .2em 0; -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── VISIT ─────────────────────────────────── */
.visit {
  background: var(--cream-2);
  padding: 6rem 1.5rem;
}
.visit__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
}
.visit__info .section-tag { display: block; margin-bottom: .5rem; }
.visit__info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900;
  color: var(--charcoal); margin-bottom: 1rem;
}
.visit__info p { color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.visit__info address {
  font-style: normal;
  font-size: 1.05rem; color: var(--text); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.visit__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--red);
  text-decoration: none; letter-spacing: .02em;
  transition: color .2s;
}
.visit__phone:hover { color: var(--red-deep); }
.visit__map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 420px;
  border: 3px solid var(--bone);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 768px) {
  .visit__inner { grid-template-columns: 1fr; gap: 2rem; }
  .visit__map { height: 280px; }
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 4rem 1.5rem 2rem;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--cream); margin-bottom: .75rem;
}
.footer__brand p { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.7; }
.footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone); margin-bottom: 1rem;
}
.footer__col address, .footer__col p {
  font-style: normal; font-size: .9rem; color: var(--muted); line-height: 1.7; font-weight: 300;
}
.footer__col a { color: var(--red); text-decoration: none; font-size: .95rem; }
.footer__col a:hover { text-decoration: underline; }
.footer__note { font-size: .82rem !important; margin-top: .5rem; }
.footer__copy {
  text-align: center; padding-top: 2rem;
  font-size: .8rem; color: var(--muted); letter-spacing: .08em;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── CART DRAWER ───────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 1001; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--cream-2);
}
.cart-drawer__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--charcoal);
}
.cart-drawer__close {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--muted);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-drawer__close:hover { background: var(--cream); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty p { color: var(--muted); margin-bottom: 1.5rem; }
.cart-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 0; border-bottom: 1px solid var(--cream-2);
}
.cart-item__info { flex: 1; }
.cart-item__name { font-size: .95rem; font-weight: 600; color: var(--charcoal); }
.cart-item__sub { font-size: .8rem; color: var(--muted); }
.cart-item__price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); }
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: .85rem; padding: .3rem;
  transition: color .2s;
}
.cart-item__remove:hover { color: var(--red); }
.cart-drawer__footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--cream-2);
  background: var(--cream);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart-total span:first-child { font-weight: 600; color: var(--charcoal); }
.cart-total span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--charcoal);
}
.cart-drawer__note {
  font-size: .78rem; color: var(--muted); text-align: center;
  margin-top: .75rem;
}

/* ── ORDER PAGE STYLES ─────────────────────── */
.order-page {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 5rem;
  background: var(--cream); min-height: 100vh;
}
.order-page__inner { max-width: 700px; margin: 0 auto; }
.order-page__inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--charcoal); margin-bottom: .5rem;
}
.order-page__inner > p { color: var(--muted); margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75em 1em;
  border: 1.5px solid var(--bone); border-radius: var(--radius);
  font-family: 'Barlow', sans-serif; font-size: 1rem; color: var(--text);
  background: var(--white); transition: border-color .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal);
  margin: 2rem 0 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--bone);
}
.order-summary {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--bone); padding: 1.5rem; margin-bottom: 2rem;
}
.order-summary__item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .5rem 0; border-bottom: 1px solid var(--cream);
  font-size: .95rem;
}
.order-summary__item:last-child { border-bottom: none; }
.order-summary__item span:last-child { font-weight: 600; }
.order-summary__total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; margin-top: .5rem; border-top: 2px solid var(--charcoal);
}
.order-summary__total span:first-child { font-weight: 700; font-size: 1.05rem; }
.order-summary__total span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--charcoal);
}
.alert-success {
  background: #d4edda; border: 1px solid #c3e6cb;
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  color: #155724; font-size: .95rem; margin-bottom: 2rem;
}
.alert-error {
  background: #f8d7da; border: 1px solid #f5c6cb;
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  color: #721c24; font-size: .95rem; margin-bottom: 2rem;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 640px) {
  .hero__cta { flex-direction: column; }
  .hero__stats { gap: 1rem; }
  .hero__stat-div { display: none; }
  .hampers__grid { grid-template-columns: 1fr; }
  .cuts__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .cuts__grid { grid-template-columns: 1fr; }
}
