/* Movving – red & white warm, modern */
:root {
  --red: #c41e3a;
  --red-dark: #9e1830;
  --red-light: #e85a6b;
  --red-warm: #b91c3c;
  --white: #fffbfa;
  --cream: #fff5f3;
  --gray-warm: #4a4040;
  --gray-soft: #6b5b5b;
  --shadow: 0 8px 32px rgba(196, 30, 58, 0.12);
  --shadow-hover: 0 12px 40px rgba(196, 30, 58, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-warm);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
a:hover {
  color: var(--red-dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 251, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 30, 58, 0.08);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  flex-wrap: wrap;
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red-warm);
  letter-spacing: -0.02em;
}
.header-logo svg {
  width: 36px;
  height: 36px;
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger – visible only on phones/small screens */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--gray-warm);
  transition: color 0.2s;
}
.header-hamburger:hover {
  color: var(--red);
}
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.header-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.header-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav dropdown */
.header-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
  box-shadow: var(--shadow);
  z-index: 99;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.25rem;
}
.header-dropdown.open {
  display: flex;
}
.header-dropdown .btn,
.header-dropdown a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--red);
  font-family: inherit;
}
.header-dropdown .btn:hover,
.header-dropdown a:hover {
  background: var(--cream);
  color: var(--red-dark);
}
.header-dropdown .btn-primary,
.header-dropdown a.btn-primary {
  background: var(--red);
  color: var(--white);
}
.header-dropdown .btn-primary:hover,
.header-dropdown a.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .header-hamburger {
    display: flex;
  }
  .header-nav {
    display: none;
  }
  .header-dropdown.open {
    display: flex;
  }
}

@media (min-width: 769px) {
  .header-dropdown {
    display: none !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--red-dark);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45);
  transform: translateY(-1px);
}
.header-nav .btn-primary,
.header-nav a.btn-primary {
  color: var(--white);
}
.header-nav .btn-primary:hover,
.header-nav a.btn-primary:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* Main content area (below fixed header) */
main {
  padding-top: 72px;
  min-height: calc(100vh - 72px);
}

/* Hero */
.hero {
  padding: 4rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(232, 90, 107, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite reverse;
}
@keyframes heroGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-warm);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}
.hero .tagline {
  font-size: 1.15rem;
  color: var(--gray-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

/* How it works */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-warm);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.how-it-works {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0 0.5rem;
  margin-bottom: 3rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(196, 30, 58, 0.08);
  text-align: center;
  flex: 1 1 260px;
  max-width: 320px;
  animation: fadeInUp 0.6s ease-out both;
}
.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(3) { animation-delay: 0.2s; }
.step-card:nth-child(5) { animation-delay: 0.3s; }
.step-card .step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
}
.step-card h3 {
  font-size: 1.15rem;
  color: var(--gray-warm);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--gray-soft);
}
.step-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  min-height: 80px;
  margin: 0 0.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c41e3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") center/24px 24px no-repeat;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .how-it-works { flex-direction: column; align-items: center; }
  .step-arrow { width: 24px; height: 24px; min-height: 24px; transform: rotate(90deg); margin: 0.5rem 0; background-size: 20px 20px; }
}

.hero-cta {
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-cta .btn {
  margin-bottom: 0.75rem;
}
.hero-cta p {
  font-size: 0.9rem;
  color: var(--gray-soft);
}

/* Offers / shippers */
.offers {
  background: var(--cream);
  padding: 3rem 2rem;
}
.offers-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.offer-card .offer-img {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}
.offer-card .offer-name {
  font-weight: 600;
  color: var(--gray-warm);
}
.offer-card .offer-desc {
  font-size: 0.85rem;
  color: var(--gray-soft);
  margin-top: 0.25rem;
}
.offers-grid-images {
  grid-template-columns: repeat(3, 1fr);
}
.offer-card-image .offer-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .offers-grid-images { grid-template-columns: 1fr; }
}

.order-search-wrap {
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.search-box {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.search-box input {
  flex: 1;
  min-width: 140px;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(196, 30, 58, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.search-box input:focus {
  outline: none;
  border-color: var(--red);
}
.search-box .btn { flex-shrink: 0; }

/* Reviews */
.reviews {
  padding: 3rem 2rem;
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(196, 30, 58, 0.08);
  transition: transform 0.3s;
}
.review-card:hover {
  transform: translateY(-2px);
}
.review-rating {
  color: #e6a800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray-warm);
  margin-bottom: 0.75rem;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-soft);
}
.review-status {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
  font-weight: 500;
}

/* Footer – compact */
.site-footer {
  background: var(--gray-warm);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.footer-inner > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.footer-links a {
  color: rgba(255, 251, 250, 0.9);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-contact p,
.footer-hours,
.footer-places {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 251, 250, 0.85);
}
.footer-contact a {
  color: var(--red-light);
}
.footer-bottom {
  text-align: center;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255, 251, 250, 0.6);
}

/* Page titles (for register, signin, etc.) */
.page-hero {
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
}
.page-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-warm);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: var(--gray-soft);
}

/* Forms */
.form-wrap {
  max-width: 440px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-warm);
  margin-bottom: 0.4rem;
}
.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(196, 30, 58, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}
.form-group input::placeholder {
  color: #aaa;
}
.form-actions {
  margin-top: 1.5rem;
}
.form-actions .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-soft);
}
.form-footer a {
  font-weight: 600;
}

/* Shipping request form – two columns */
.shipping-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .shipping-form .form-row {
    grid-template-columns: 1fr;
  }
}
.shipping-form .form-section {
  margin-bottom: 2rem;
}
.shipping-form .form-section h3 {
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

/* Pricing summary */
.pricing-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(196, 30, 58, 0.1);
}
.pricing-summary .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.pricing-summary .total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(196, 30, 58, 0.2);
}

/* Payment page – card icons */
.cards-accepted {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.cards-accepted span {
  padding: 0.4rem 0.75rem;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-soft);
}
.card-type-icon {
  width: 40px;
  height: 28px;
  background: linear-gradient(135deg, #1a1f71, #2d3a9f);
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.card-type-icon.amex { background: linear-gradient(135deg, #006fcf, #009ddf); }
.card-type-icon.visa { background: linear-gradient(135deg, #1a1f71, #2d3a9f); }
.card-type-icon.mastercard { background: linear-gradient(135deg, #eb001b, #f79e1b); }

/* Payment page – compact amount due */
.payment-page-wrap {
  padding-top: 6rem;
}
.payment-amount-due {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-warm);
  padding: 0.4rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 30, 58, 0.1);
}
.payment-amount-due span:last-child {
  color: var(--red);
  font-weight: 700;
}

/* Payment overlay – processing then success */
.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 251, 250, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.payment-overlay-box {
  text-align: center;
  padding: 2rem;
}
.payment-overlay-box p {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gray-warm);
}
.payment-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 3px solid rgba(196, 30, 58, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: payment-spin 0.8s linear infinite;
}
@keyframes payment-spin {
  to { transform: rotate(360deg); }
}
.payment-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #2e7d32;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
}
.payment-overlay-box#payment-success p {
  color: #2e7d32;
}

/* Saved card option – compact, fits together */
.saved-card-option {
  margin-bottom: 1.25rem;
  padding: 0.6rem 0.75rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 30, 58, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
}
.saved-card-option-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.saved-card-dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(196, 30, 58, 0.25);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-warm);
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.saved-card-dropdown-btn:hover {
  background: var(--cream);
  border-color: var(--red);
  color: var(--red);
}
.saved-card-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(196, 30, 58, 0.15);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 20;
  max-height: 220px;
  overflow-y: auto;
}
.saved-card-dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--gray-warm);
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(196, 30, 58, 0.08);
  gap: 0.5rem;
}
.saved-card-dropdown-item:last-child {
  border-bottom: none;
}
.saved-card-dropdown-item:hover {
  background: var(--cream);
}
.saved-card-dropdown-item .card-logo,
.saved-card-dropdown-item .card-logo svg {
  width: 32px;
  height: 22px;
}
.saved-card-option .btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  margin-left: auto;
}

/* Card logos (logo + **** last4) */
.card-logo {
  flex-shrink: 0;
  vertical-align: middle;
  border-radius: 3px;
  overflow: hidden;
}
.saved-card-display .card-logo,
.saved-card-display .card-logo svg {
  width: 36px;
  height: 24px;
  display: block;
}
.saved-card-display {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.saved-card-display span:last-child {
  color: var(--gray-warm);
  font-weight: 600;
  font-size: 0.9rem;
}
.card-logo-fallback {
  width: 36px !important;
  height: 24px !important;
  border-radius: 3px;
}

/* Order page (shareable) */
.order-detail {
  max-width: 560px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.order-detail .order-id {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.order-detail .order-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 30, 58, 0.1);
}
.order-detail .order-box h3 {
  font-size: 1rem;
  color: var(--gray-warm);
  margin-bottom: 0.75rem;
}
.order-detail .order-box p {
  font-size: 0.95rem;
  color: var(--gray-soft);
  margin-bottom: 0.25rem;
}
.receiver-payout {
  background: var(--white);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.receiver-payout h3 {
  color: var(--red);
  margin-bottom: 1rem;
}

/* Orders list – bigger cards */
.orders-list {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.order-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 30, 58, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.order-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.order-item a.order-id-link {
  display: inline-block;
  font-weight: 700;
  color: var(--red);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.order-item a.order-id-link:hover {
  text-decoration: underline;
}
.order-item .order-meta {
  font-size: 1rem;
  color: var(--gray-soft);
  margin-bottom: 0.5rem;
}
.order-item .order-status {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.order-item .order-status.paid {
  background: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
}
.order-item .order-status.received {
  background: rgba(33, 150, 243, 0.12);
  color: #1976d2;
}
.order-item .order-view-link {
  margin-top: 1rem;
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility */
.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
