/* ============================================================
   Bean & Brew — Professional Coffee Shop
   Palette: BG #17120F | Dark Brown #241812 | Coffee #6F4E37
            Cream #F5E6D3 | Gold #C89B5B | White #FFFDF9
   ============================================================ */

:root {
  --bg: #17120F;
  --dark: #241812;
  --coffee: #6F4E37;
  --cream: #F5E6D3;
  --gold: #C89B5B;
  --white: #FFFDF9;
  --muted: rgba(245, 230, 211, 0.62);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { width: min(1200px, 92%); margin: 0 auto; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a97f45);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(200, 155, 91, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 155, 91, 0.45);
}

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

.btn-outline:hover { background: var(--gold); color: var(--dark); }

.btn-lg { padding: 15px 40px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(23, 18, 15, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 155, 91, 0.14);
  transition: box-shadow 0.3s ease;
}

.header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo { display: flex; align-items: center; gap: 11px; }

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 0 0 1px rgba(200, 155, 91, 0.35);
}

.logo-mark img { width: 100%; height: 100%; object-fit: cover; }

.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.nav { display: flex; align-items: center; gap: 28px; }

.nav-list { display: flex; gap: 26px; }

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Cart button ---------- */
.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 155, 91, 0.12);
  border: 1px solid rgba(200, 155, 91, 0.3);
  color: var(--gold);
  font-size: 17px;
  transition: all 0.3s ease;
}

.cart-btn:hover { background: rgba(200, 155, 91, 0.24); }

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), #a97f45);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.cart-badge.show { opacity: 1; transform: scale(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,18,15,0.5) 0%, rgba(23,18,15,0.78) 60%, var(--bg) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow.gold { color: var(--gold); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub { font-size: 17px; font-weight: 300; color: var(--muted); }

/* ---------- Menu ---------- */
.menu { background: var(--dark); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(200, 155, 91, 0.4);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn i { color: var(--gold); }
.tab-btn:hover { border-color: var(--gold); }

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), #a97f45);
  color: var(--dark);
  border-color: transparent;
  font-weight: 500;
}

.tab-btn.active i { color: var(--dark); }

.menu-panel { display: none; animation: fadeUp 0.5s ease; }
.menu-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg);
  border: 1px solid rgba(200, 155, 91, 0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all 0.3s ease;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  position: relative;
}

.menu-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.menu-item.added {
  border-color: var(--gold);
  background: rgba(200, 155, 91, 0.1);
  transform: scale(0.97);
}

.menu-item-body { display: flex; flex-direction: column; gap: 3px; }

.menu-item-name { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--white); }

.menu-item-price {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-price small { font-size: 13px; font-weight: 400; color: var(--muted); }

.menu-item-add {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 155, 91, 0.12);
  color: var(--gold);
  font-size: 15px;
  transition: all 0.3s ease;
}

.menu-item:hover .menu-item-add {
  background: linear-gradient(135deg, var(--gold), #a97f45);
  color: var(--dark);
}

.menu-note {
  margin-top: 42px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.menu-note i { color: var(--gold); margin-right: 6px; }

/* ---------- About ---------- */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media { position: relative; }

.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 520px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -20px;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--bg);
  box-shadow: var(--shadow);
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-features { margin: 26px 0 32px; display: grid; gap: 12px; }

.about-features li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.about-features i { color: var(--gold); font-size: 18px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.8;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23, 18, 15, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item span {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.gallery-item:hover span { opacity: 1; transform: translateY(0); }

/* ---------- Offers ---------- */
.offers { background: var(--bg); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}

.offer-card {
  position: relative;
  background: var(--dark);
  border: 1px solid rgba(200, 155, 91, 0.18);
  border-radius: var(--radius);
  padding: 44px 28px 34px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.offer-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, #2b1c14, var(--dark));
}

.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.offer-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  background: linear-gradient(135deg, var(--gold), #a97f45);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 40px;
  transform: rotate(45deg);
}

.offer-icon { font-size: 38px; color: var(--gold); margin-bottom: 18px; }

.offer-card h3 { font-family: var(--font-head); font-size: 23px; color: var(--white); margin-bottom: 10px; }
.offer-card p { font-size: 15px; font-weight: 300; color: var(--muted); }

.offer-cta {
  text-align: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px dashed rgba(200, 155, 91, 0.4);
}

.offer-cta p { font-family: var(--font-head); font-size: 21px; color: var(--cream); margin-bottom: 20px; }

/* ---------- Contact ---------- */
.contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text { font-size: 16px; font-weight: 300; color: var(--muted); margin-bottom: 30px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 155, 91, 0.12);
}

.contact-item > i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 155, 91, 0.12);
  color: var(--gold);
  font-size: 18px;
}

.contact-item h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.contact-item a, .contact-item span { font-size: 17px; color: var(--white); font-weight: 400; }
.contact-item a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; margin-top: 28px; }

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 155, 91, 0.4);
  color: var(--gold);
  transition: all 0.3s ease;
}

.socials a:hover { background: var(--gold); color: var(--dark); }

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid rgba(200, 155, 91, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 { font-family: var(--font-head); font-size: 24px; color: var(--white); margin-bottom: 22px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(200, 155, 91, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245, 230, 211, 0.45); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

.contact-form textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(200, 155, 91, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-size: 15px;
}

.form-success.show { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  border: 1px solid rgba(200, 155, 91, 0.5);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast i { color: #2ecc71; font-size: 18px; }

/* ---------- Order page ---------- */
.page-order .header { position: sticky; }

.order-main { padding: 60px 0 90px; min-height: 70vh; }

.order-head { margin-bottom: 40px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  transition: color 0.3s ease;
}

.back-link:hover { color: var(--gold); }

.order-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.order-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: start;
}

.order-card {
  background: var(--dark);
  border: 1px solid rgba(200, 155, 91, 0.18);
  border-radius: 20px;
  padding: 30px 30px;
  box-shadow: var(--shadow);
}

.order-card.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.order-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.order-subtitle {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-subtitle i { color: var(--gold); font-size: 18px; }

.bag-count {
  font-size: 14px;
  color: var(--muted);
  background: rgba(200, 155, 91, 0.12);
  padding: 5px 14px;
  border-radius: 30px;
}

/* ---------- Cart rows ---------- */
.cart-items { display: grid; gap: 10px; }

.cart-empty {
  text-align: center;
  padding: 36px 10px;
  color: var(--muted);
  border: 1px dashed rgba(200, 155, 91, 0.3);
  border-radius: var(--radius);
}

.cart-empty i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.cart-empty p { font-family: var(--font-head); font-size: 17px; color: var(--cream); }
.cart-empty small { font-size: 13px; }

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
  border: 1px solid rgba(200, 155, 91, 0.14);
  border-radius: 12px;
  padding: 12px 16px;
}

.cart-name { font-family: var(--font-head); font-size: 15px; color: var(--white); flex: 1; }

.cart-qty { display: flex; align-items: center; gap: 8px; }

.qty-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 155, 91, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover { background: var(--gold); color: var(--dark); }

.qty-val { min-width: 18px; text-align: center; font-size: 15px; color: var(--white); }

.cart-line { font-family: var(--font-head); font-weight: 600; color: var(--gold); white-space: nowrap; }
.cart-line small, #cartTotal small { font-size: 12px; font-weight: 400; color: var(--muted); }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 18px 4px 0;
  border-top: 1px solid rgba(200, 155, 91, 0.2);
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--white);
}

.cart-total-row #cartSubtotal { color: var(--gold); font-weight: 700; }

.cart-empty-actions { margin-top: 20px; display: none; }

/* ---------- Payment methods ---------- */
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pay-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid rgba(200, 155, 91, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--bg);
}

.pay-method:hover { border-color: var(--gold); }

.pay-method.active {
  border-color: var(--gold);
  background: rgba(200, 155, 91, 0.12);
  box-shadow: 0 0 0 1px var(--gold);
}

.pay-method input { display: none; }

.pay-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(200, 155, 91, 0.12);
  color: var(--gold);
  font-size: 17px;
}

.pay-info { display: flex; flex-direction: column; line-height: 1.3; }
.pay-info strong { font-size: 14px; color: var(--white); }
.pay-info small { font-size: 12px; color: var(--muted); }

.pay-note {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(200, 155, 91, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--cream);
}

.modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(200, 155, 91, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border 0.3s ease;
}

.modal-input::placeholder { color: rgba(245, 230, 211, 0.45); }
.modal-input:focus { border-color: var(--gold); }

.btn-checkout { margin-top: 8px; }
.btn-checkout.error { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.modal-hint {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(200, 155, 91, 0.12);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo .logo-text { font-size: 19px; }

.footer-tag { font-size: 14px; color: var(--muted); }

.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-nav a { font-size: 14px; color: var(--muted); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .offers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .order-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark);
    padding: 26px 0 34px;
    gap: 22px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(200, 155, 91, 0.2);
    box-shadow: var(--shadow);
  }

  .nav.open { transform: translateY(0); }

  .nav-list { flex-direction: column; align-items: center; gap: 18px; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 120px; }
  .hero-stats { gap: 28px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4 / 3; }

  .section { padding: 80px 0; }
  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .pay-methods { grid-template-columns: 1fr; }
  .order-card { padding: 24px 20px; }
}
