/* ============================================
   PARLEMEN — Brand Design System
   Colors: Brick Red + Warm Cream | Font: DM Sans + Lora
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Lora:wght@500;600&display=swap');

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

:root {
  --red-deep: #6B2A1C;
  --red-primary: #7C3524;
  --red-mid: #924232;
  --red-light: #AC5E4C;
  --cream: #ECEADB;
  --cream-light: #F3F1E4;
  --cream-dark: #D6CEBC;
  --gold: #B89258;
  --black: #1C1410;
  --shadow: rgba(28, 20, 16, 0.15);
  --shadow-heavy: rgba(28, 20, 16, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.top-seal {
  background: var(--red-deep);
  padding: 1.25rem 1rem 1rem;
  display: flex;
  justify-content: center;
}

.seal-wrap {
  position: relative;
  display: inline-flex;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  min-width: 19px;
  height: 19px;
  background: var(--cream);
  color: var(--red-deep);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  border: 1.5px solid var(--red-deep);
}

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

.cart-badge.pop {
  animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- CATEGORY NAV ---- */

.cat-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--red-deep);
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
}

.cat-nav.scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.cat-nav-inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1px;
}

@media (min-width: 768px) {
  .cat-nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

.cat-nav-inner::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  flex-shrink: 0;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 240, 232, 0.25);
  background: transparent;
  color: rgba(245, 240, 232, 0.7);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-pill:hover {
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--cream);
}

.cat-pill.active {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--red-deep);
  font-weight: 600;
}

.top-seal-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0;
  animation: sealIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* ---- HERO SECTION ---- */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--red-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(160, 34, 43, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-seal {
  width: min(280px, 60vw);
  height: auto;
  opacity: 0;
  animation: sealIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.hero-wordmark {
  width: min(320px, 70vw);
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--cream-dark);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
  position: relative;
  z-index: 2;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-dark);
  opacity: 0;
  animation: fadeUp 0.6s ease 2s forwards, floatY 2s ease-in-out 2.6s infinite;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 2;
}

.hero-scroll-hint svg {
  display: block;
  margin: 0.4rem auto 0;
  width: 20px;
  stroke: var(--cream-dark);
}

/* Floating people-ring watermark behind hero */
.hero-bg-ring {
  position: absolute;
  width: min(600px, 120vw);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  animation: slowSpin 120s linear infinite;
}

/* ---- SECTION BASE ---- */

.section {
  padding: 4rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--red-deep);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.section-subtitle {
  font-size: 0.8rem;
  color: var(--red-mid);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- CATALOG ---- */

.catalog-section {
  background: var(--cream);
  padding-top: 0.75rem;
}

.catalog-category {
  margin-bottom: 2.5rem;
}

.catalog-category-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-mid);
  border-bottom: 1.5px solid var(--cream-dark);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-light);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  transition: var(--transition);
  cursor: default;
  gap: 0.75rem;
}

.item-card:hover {
  border-color: var(--red-mid);
  box-shadow: 0 2px 12px var(--shadow);
}

.item-card.sold-out {
  opacity: 0.45;
  filter: grayscale(0.6);
  cursor: default;
}

.item-card.sold-out:hover {
  border-color: var(--cream-dark);
  box-shadow: none;
}

.item-card.featured {
  border-color: var(--gold);
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--cream-light) 0%, rgba(184, 146, 88, 0.07) 100%);
}

.item-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 14px rgba(186, 154, 96, 0.2);
}

.item-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 0.05rem 0.35rem;
  margin-left: 0.45rem;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1.6;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.3;
}

.item-desc {
  font-size: 0.78rem;
  color: var(--red-light);
  margin-top: 0.1rem;
  opacity: 0.7;
}

.item-stock {
  font-size: 0.72rem;
  color: #998;
  margin-top: 0.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.item-stock.low {
  color: var(--red-mid);
}

.item-stock.out {
  color: #aaa;
  font-style: italic;
}

.item-add-btn.disabled,
.item-qty-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.item-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--red-deep);
  white-space: nowrap;
}

.item-add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red-mid);
  background: transparent;
  color: var(--red-mid);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.item-add-btn:hover {
  background: var(--red-mid);
  color: var(--cream);
  transform: scale(1.1);
}

.item-add-btn:active {
  transform: scale(0.95);
}

.item-add-btn.added {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--cream);
}

/* ---- CATALOG INLINE QTY CONTROLS ---- */

.item-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.item-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red-mid);
  background: transparent;
  color: var(--red-mid);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.item-qty-btn:hover {
  background: var(--red-mid);
  color: var(--cream);
}

.item-qty-btn:active {
  transform: scale(0.9);
}

.item-qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--red-deep);
}

/* ---- SCROLL TO TOP ---- */

.scroll-top-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-deep);
  color: var(--cream);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 45;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--red-mid);
}

/* ---- STICKY BOTTOM BAR ---- */

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-bar.visible {
  transform: translateY(0);
}

.bottom-bar-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bottom-bar-icon {
  position: relative;
  flex-shrink: 0;
}

.bottom-bar-seal {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.1);
}

.bottom-bar-item-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  background: var(--cream);
  color: var(--red-deep);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1px solid var(--red-deep);
}

.bottom-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.bottom-bar-count {
  font-size: 0.8rem;
  color: var(--cream-dark);
  font-weight: 600;
}

.bottom-bar-total {
  font-size: 1.05rem;
  font-weight: 600;
}

.bottom-bar-btn {
  padding: 0.65rem 1.5rem;
  background: var(--cream);
  color: var(--red-deep);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.bottom-bar-btn:hover {
  background: var(--gold);
  color: var(--cream-light);
}

.bottom-bar-btn:active {
  transform: scale(0.96);
}

/* ---- ORDER SECTION ---- */

.order-section {
  background: var(--red-deep);
  color: var(--cream);
  padding: 3rem 1.5rem;
}

.order-section .section-title {
  color: var(--cream);
}

.order-section .section-subtitle {
  color: var(--cream-dark);
}

.order-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--cream-dark);
  font-style: italic;
  font-size: 0.95rem;
  border: 2px dashed rgba(245, 240, 232, 0.2);
  border-radius: var(--radius);
}

.order-items {
  margin-bottom: 1.5rem;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  gap: 0.5rem;
}

.order-item-name {
  flex: 1;
  font-weight: 400;
  font-size: 0.9rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--cream);
  color: var(--red-deep);
}

.qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.order-item-price {
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid var(--cream-dark);
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---- FORM ---- */

.order-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(245, 240, 232, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 240, 232, 0.12);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.2);
}

.form-input.error {
  border-color: #ff6b6b;
  animation: shake 0.4s ease;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--cream);
  color: var(--red-deep);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ---- PAYMENT / SUCCESS OVERLAY ---- */

.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 16, 0.95);
  z-index: 100;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.success-overlay.visible {
  display: block;
}

.payment-card {
  background: var(--cream);
  border-radius: 16px;
  max-width: 400px;
  margin: 2rem auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-header {
  background: var(--red-deep);
  color: var(--cream);
  padding: 1.5rem;
  text-align: center;
}

.payment-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.payment-subtitle {
  font-size: 0.85rem;
  color: var(--cream-dark);
  opacity: 0.9;
}

.payment-summary {
  padding: 1.5rem;
  background: var(--cream-light);
  border-bottom: 1px dashed var(--cream-dark);
}

.payment-items {
  font-size: 0.85rem;
  color: var(--red-mid);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.payment-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--red-deep);
}

.payment-total-amount {
  font-weight: 700;
  font-size: 1.25rem;
}

.payment-qris {
  padding: 1.5rem;
  text-align: center;
}

.payment-qris-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.payment-qris-note {
  font-size: 0.8rem;
  color: var(--red-light);
  font-weight: 500;
}

.payment-instructions {
  padding: 0 1.5rem 1.5rem;
}

.payment-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 500;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.payment-contacts {
  padding: 1.5rem;
  background: var(--cream-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contacts-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-mid);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.contact-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  flex: 1;
}

.contact-id {
  font-size: 0.75rem;
  color: var(--red-light);
  font-weight: 500;
}

.contact-btn.wa {
  border-left: 4px solid #25D366;
}

.contact-btn.discord {
  border-left: 4px solid #5865F2;
}

.contact-btn.tiktok {
  border-left: 4px solid #000000;
}

.payment-close {
  display: block;
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: none;
  border-top: 1px solid var(--cream-dark);
  color: var(--red-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.payment-close:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--red-deep);
}

/* ---- FOOTER ---- */

.footer {
  background: var(--black);
  color: var(--cream-dark);
  text-align: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(245, 240, 232, 0.05);
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ---- LOADING SPINNER ---- */

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--red-deep);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* ---- ANIMATIONS ---- */

@keyframes sealIn {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badgePop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes cardAdd {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.025);
    box-shadow: 0 4px 16px rgba(184, 146, 88, 0.25);
  }

  100% {
    transform: scale(1);
  }
}

.item-card.adding {
  animation: cardAdd 0.4s ease;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- SCROLL REVEAL ---- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }

  .hero-seal {
    width: 300px;
  }

  .hero-wordmark {
    width: 360px;
  }

  .section-title {
    font-size: 2rem;
  }

  .item-card {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .item-name {
    font-size: 0.85rem;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .order-item-name {
    font-size: 0.82rem;
  }
}