@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:      #0F0E0D;
  --charcoal:   #1A1916;
  --card-bg:    #1E1D1A;
  --border:     #2E2C27;
  --border-light: #3D3A33;
  --gold:       #F0EBE0;
  --gold-light: #FAF7F2;
  --gold-dark:  #C8C0B0;
  --cream:      #F0EBE0;
  --cream-dim:  #C8C0B0;
  --muted:      #7A7468;
  --red:        #8B1A1A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-caps:  'Oswald', sans-serif;
  --font-body:  'Lato', sans-serif;

  --max-width: 1280px;
  --section-pad: 6rem 2rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}

.label {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
}

.section-title span { color: var(--gold); font-style: italic; }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.divider-diamond {
  font-size: 0.5rem;
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-caps);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--border-light);
}
.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-logo {
  display: flex;
  justify-content: center;
}
.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  box-shadow: 0 0 12px rgba(201, 151, 58, 0.25);
  object-fit: cover;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-caps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
  position: relative;
}
.cart-btn:hover { color: var(--gold); }

.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  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;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-logo {
  width: 220px;
  height: 220px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 0 40px rgba(201, 151, 58, 0.35), 0 0 80px rgba(201, 151, 58, 0.12);
  object-fit: cover;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.hero-sub {
  font-family: var(--font-caps);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-badge {
  text-align: center;
}
.hero-badge .badge-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.4rem;
}
.hero-badge .badge-label {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SHOP BY PROTEIN
   ============================================================ */
.protein-section {
  padding: var(--section-pad);
  background: var(--charcoal);
}

.protein-section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.protein-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.protein-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--card-bg);
  transition: transform 0.3s ease;
}

.protein-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}

.protein-card-bg {
  position: absolute;
  inset: 0;
  background-color: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.5);
}

.protein-card:hover .protein-card-bg {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.protein-card-body {
  position: relative;
  z-index: 2;
}

.protein-rule {
  width: 36px;
  height: 2px;
  background: var(--cream);
  margin: 0 auto 1.25rem;
  opacity: 0.5;
}

.protein-card h3 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.protein-card p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-family: var(--font-caps);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.protein-card .btn {
  font-size: 0.75rem;
  padding: 0.65rem 1.5rem;
}

/* ============================================================
   WHY TWIN T
   ============================================================ */
.why-section {
  padding: var(--section-pad);
  background: var(--black);
}

.why-section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}

.why-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.why-card:hover { background: var(--card-bg); }

.why-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.why-icon svg { display: block; }

.why-card h4 {
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-section {
  padding: var(--section-pad);
  background: var(--charcoal);
}

.featured-section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}

.product-card {
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.product-card:hover { background: #222119; }

.product-card-img {
  aspect-ratio: 1;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-placeholder {
  color: var(--border-light);
  display: block;
}

.product-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.product-card .product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
}

.add-to-cart-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
  cursor: pointer;
}
.add-to-cart-btn:hover { background: var(--gold-light); }

/* ============================================================
   BULK ORDERS BANNER
   ============================================================ */
.bulk-section {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.bulk-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(201,151,58,0.02) 30px,
      rgba(201,151,58,0.02) 60px
    );
  pointer-events: none;
}

.bulk-section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bulk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}

.bulk-card {
  background: var(--charcoal);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.bulk-card.featured-bulk {
  background: var(--card-bg);
  border: 2px solid var(--gold-dark);
}

.bulk-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-caps);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
}

.bulk-animal {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.bulk-card h3 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.bulk-card .bulk-sub {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.bulk-features {
  list-style: none;
  margin-bottom: 2rem;
}
.bulk-features li {
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bulk-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ============================================================
   DELIVERY SECTION
   ============================================================ */
.delivery-section {
  padding: var(--section-pad);
  background: var(--gold);
  color: var(--black);
}

.delivery-section .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.delivery-text .label { color: rgba(0,0,0,0.5); }
.delivery-text h2 { color: var(--black); margin: 1rem 0; }
.delivery-text p { font-size: 1rem; line-height: 1.7; opacity: 0.8; margin-bottom: 1.5rem; }

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(0,0,0,0.15);
}

.delivery-opt {
  background: rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
}
.delivery-opt h4 {
  font-family: var(--font-caps);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.delivery-opt p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080807;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-header {
  padding: 5rem 2rem 3rem;
  background: var(--charcoal);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.shop-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

.shop-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.filter-group h4 {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-caps);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  padding-left: 1rem;
}
.filter-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.2s;
}
.filter-btn:hover { color: var(--cream); }
.filter-btn.active { color: var(--cream); }
.filter-btn.active::before { height: 100%; }

.shop-main {}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.shop-count {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 7rem 2rem 5rem;
  background: var(--charcoal);
  text-align: center;
}

.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

.about-story {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-story .label { display: block; margin-bottom: 1rem; }

.about-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-story p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-values {
  padding: var(--section-pad);
  background: var(--charcoal);
}
.about-values .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--charcoal);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-family: var(--font-caps);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-close {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--cream); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.cart-item-price {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  color: var(--gold);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-qty button {
  width: 24px;
  height: 24px;
  background: var(--border-light);
  color: var(--cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty button:hover { background: var(--gold); color: var(--black); }
.cart-qty span {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--red); }

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-subtotal span:first-child {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-subtotal .total-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}

.cart-footer .btn { width: 100%; justify-content: center; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.checkout-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.checkout-form-section .label {
  display: block;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder { color: var(--muted); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-section-title {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-top: 2.5rem;
}

.order-summary {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--cream-dim);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}
.summary-total span:first-child {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.summary-total .price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

#stripe-card-element {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
}
#stripe-card-element.focused { border-color: var(--gold); }

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--charcoal);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  animation: slideInToast 0.3s ease;
  font-size: 0.875rem;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .delivery-section .inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }

  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .protein-grid { grid-template-columns: 1fr; }
  .protein-card { aspect-ratio: 3/2; }
  .products-grid,
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .bulk-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badges { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid,
  .shop-products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
