/* CART */
/* ================================================
   RESET & TOKENS
   ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --page-bg:    #f4f4f6;
  --white:      #ffffff;
  --black:      #111111;
  --border:     #e8e8ec;
  --border-md:  #d5d5db;
  --text-1:     #111111;
  --text-2:     #555560;
  --text-3:     #999aaa;
  --accent:     #ff4700;
  --accent-bg:  #fff5f0;
  --green:      #00a651;
  --green-bg:   #e8f8f1;
  --blue:       #2563eb;
  --blue-bg:    #eff6ff;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
  --shadow:     0 2px 8px rgba(0,0,0,0.08);
  --transition: 0.18s ease;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
img { display: block; }
 
/* ================================================
   TOP MINI HEADER
   ================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
}
.header-logo span { color: var(--accent); }
.header-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.header-back:hover { color: var(--black); }
.header-back svg { flex-shrink: 0; }
.header-sep { width: 1px; height: 20px; background: var(--border); }
.header-title { font-size: 16px; font-weight: 700; color: var(--black); }
.header-count {
  font-size: 12px;
  font-weight: 700;
  background: var(--black);
  color: #fff;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: 2px;
}
 
/* ================================================
   FREE SHIPPING PROGRESS BAR
   ================================================ */
.shipping-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}
.shipping-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shipping-bar-text { font-size: 12px; color: var(--text-2); white-space: nowrap; }
.shipping-bar-text strong { color: var(--green); font-weight: 700; }
.shipping-bar-track {
  flex: none;
  width: 160px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.header-shipping {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shipping-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.5s ease;
}
.shipping-bar-icon { font-size: 18px; display: flex; align-items: center; color: var(--text-2); flex-shrink: 0; }
.shipping-bar-icon.qualified { color: var(--green); }
 
/* ================================================
   PAGE LAYOUT
   ================================================ */
.cart-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 20px 120px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}
 
/* ================================================
   LEFT COLUMN — CART ITEMS
   ================================================ */
.cart-col {}
 
/* Section card */
.section-card {
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.section-card:last-child { margin-bottom: 0; }
 
/* Select-all header */
.cart-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.select-all-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-all-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.select-all-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
}
.btn-delete-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  background: none;
  border: none;
  transition: color var(--transition);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.btn-delete-all:hover { color: var(--accent); background: var(--accent-bg); }
 
/* Free delivery badge */
.delivery-badge-row {
  padding: 8px 18px;
  background: var(--green-bg);
  border-bottom: 1px solid #c3e8d7;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
 
/* ---- CART ITEM CARD ---- */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.cart-item:last-child { border-bottom: none; }
.cart-item.item-unchecked { background: #fafafa; }
.cart-item.item-unchecked .item-image { opacity: 0.55; }
.cart-item.item-unchecked .item-title { color: var(--text-3); }
 
/* Custom checkbox */
.item-checkbox { flex-shrink: 0; padding-top: 2px; }
.cb-wrap {
  display: block;
  position: relative;
  width: 20px; height: 20px;
  cursor: pointer;
  user-select: none;
}
.cb-wrap input { position: absolute; opacity: 0; width: 0; height: 0; }
.cb-mark {
  position: absolute;
  inset: 0;
  border: 1.8px solid #cccccc;
  border-radius: 4px;
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.cb-wrap input:checked ~ .cb-mark {
  background: var(--black);
  border-color: var(--black);
}
.cb-mark::after {
  content: '';
  position: absolute;
  display: none;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #fff;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.cb-wrap input:checked ~ .cb-mark::after { display: block; }
 
/* Product image */
.item-image {
  width: 88px;
  height: 112px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f0f3;
  position: relative;
  transition: opacity var(--transition);
}
.item-image img { width: 100%; height: 100%; object-fit: cover; }
.item-image-badge {
  position: absolute;
  bottom: 4px; left: 4px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
 
/* Item details */
.item-details { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.item-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
 
/* Variant pills */
.variant-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.variant-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f4f4f6;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color var(--transition);
}
.variant-pill:hover { border-color: var(--black); }
.variant-pill svg { width: 9px; height: 9px; color: var(--text-3); }
.color-swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
}
.stock-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stock-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; }
 
/* Price block */
.item-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.price-block { display: flex; flex-direction: column; gap: 2px; }
.current-price { font-size: 17px; font-weight: 800; color: var(--accent); line-height: 1; }
.original-price { font-size: 11px; color: var(--text-3); text-decoration: line-through; }
.discount-badges { display: flex; align-items: center; gap: 5px; margin-top: 2px; flex-wrap: wrap; }
.discount-badge {
  display: inline-block;
  background: #fdecea;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
}
.badge-discount {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid rgba(255,71,0,0.15);
}
.badge-timer {
  font-size: 10px;
  font-weight: 600;
  color: #cc3700;
  display: flex; align-items: center; gap: 3px;
}
 
/* Quantity + action controls */
.item-controls { display: flex; align-items: center; gap: 8px; }
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-md);
  border-radius: 100px;
  overflow: hidden;
  height: 32px;
  background: var(--white);
}
.qty-btn {
  width: 32px; height: 32px;
  border: none;
  background: none;
  color: var(--text-1);
  font-size: 17px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: #f4f4f6; }
.qty-btn:disabled { color: var(--text-3); cursor: not-allowed; }
.qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  border: none;
  background: none;
  outline: none;
}
.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-val[type=number] { -moz-appearance: textfield; }
 
.icon-btn {
  width: 30px; height: 30px;
  border: none;
  background: none;
  color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.icon-btn:hover { color: var(--text-1); background: #f4f4f6; }
.icon-btn.del:hover { color: var(--accent); background: var(--accent-bg); }
.icon-btn svg { width: 16px; height: 16px; }
 
/* ---- EMPTY CART STATE ---- */
.empty-cart {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  gap: 16px;
}
.empty-cart-icon { font-size: 56px; line-height: 1; }
.empty-cart h3 { font-size: 18px; font-weight: 700; color: var(--text-1); }
.empty-cart p { font-size: 13px; color: var(--text-3); max-width: 260px; }
.btn-shop {
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  margin-top: 4px;
  transition: background var(--transition), transform var(--transition);
}
.btn-shop:hover { background: #333; transform: translateY(-1px); }
 
/* ---- COUPON (shared field styles, used inside Order Summary) ---- */
.coupon-label { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.coupon-label svg { width: 15px; height: 15px; color: var(--accent); }
.coupon-row { display: flex; gap: 8px; }
.coupon-input {
  flex: 1;
  height: 40px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-1);
  outline: none;
  transition: border-color var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.coupon-input::placeholder { text-transform: none; color: var(--text-3); }
.coupon-input:focus { border-color: var(--black); }
.btn-apply {
  height: 40px;
  padding: 0 20px;
  background: var(--black);
  color: #fff;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-apply:hover { background: #333; }
.coupon-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px dashed #93c5fd;
  padding: 3px 10px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.coupon-tag:hover { background: #dbeafe; }
 

 
/* ================================================
   RIGHT COLUMN — ORDER SUMMARY
   ================================================ */
.summary-col {}
.summary-card {
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: 76px;
}
 
.summary-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.summary-head h3 { font-size: 16px; font-weight: 700; color: var(--text-1); }
.summary-head p { font-size: 11px; color: var(--text-3); margin-top: 2px; }
 
/* Thumbnail strip */
.thumb-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.thumb-item {
  position: relative;
  width: 52px; height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: border-color var(--transition), opacity var(--transition);
  flex-shrink: 0;
}
.thumb-item.thumb-unchecked { opacity: 0.35; border-style: dashed; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-check {
  position: absolute;
  top: 2px; right: 2px;
  width: 13px; height: 13px;
  background: var(--black);
  color: #fff;
  font-size: 8px;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
 
/* Coupon (nested inside Order Summary) */
.summary-coupon {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.coupon-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--green-bg);
  border: 1px solid #b7ebd3;
  border-radius: var(--radius-sm);
}
.coupon-applied-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.coupon-applied-text { flex: 1; font-size: 12px; color: var(--text-2); }
.coupon-applied-text strong { color: var(--green); font-weight: 700; letter-spacing: 0.03em; }
.coupon-remove {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.coupon-remove:hover { background: rgba(0,0,0,0.08); color: var(--text-1); }
 
/* Price breakdown */
.summary-body { padding: 16px 20px; }
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 5px 0;
}
.price-line .lbl { color: var(--text-2); }
.price-line .val { font-weight: 600; color: var(--text-1); }
.price-line .val.saving { color: var(--accent); }
.price-line .val.free { color: var(--green); font-weight: 700; }
.badge-small {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}
.badge-urgent { color: var(--accent); background: var(--accent-bg); border: 1px solid rgba(255,71,0,0.15); }
 
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
 
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4px 0;
}
.total-lbl { font-size: 14px; font-weight: 700; color: var(--text-1); }
.total-val { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.saved-line { font-size: 12px; font-weight: 600; color: var(--green); margin-top: 4px; }
.rewards-line {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.rewards-val { font-weight: 700; color: var(--accent); }
.info-dot {
  width: 14px; height: 14px;
  border: 1px solid var(--text-3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--text-3);
  cursor: pointer;
  flex-shrink: 0;
}
 
/* Checkout button */
.checkout-wrap {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.free-ship-flag {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  display: flex; align-items: center; gap: 4px;
}
.btn-checkout {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: background var(--transition), transform var(--transition);
}
.btn-checkout:hover { background: #222; transform: translateY(-1px); }
.btn-checkout:active { transform: scale(0.99); }
.btn-checkout-sub {
  font-size: 11px;
  font-weight: 500;
  color: #ff9c7a;
  letter-spacing: 0;
}
.checkout-note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}
.checkout-note strong { color: var(--text-2); }
 
/* Payment icons */
.payment-section {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
}
.payment-title { font-size: 12px; font-weight: 700; color: var(--text-2); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.pay-box {
  border: 1px solid var(--border);
  border-radius: 5px;
  height: 28px;
  display: flex; align-items: center; justify-content: center;
  padding: 3px;
  background: var(--white);
  overflow: hidden;
}
.pay-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pay-text { font-size: 7px; font-weight: 800; color: #444; text-align: center; line-height: 1.1; }
.pay-jazzcash { color: #e65c00; font-size: 7px; font-weight: 900; }
.pay-easypaisa { color: #00a651; font-size: 7px; font-weight: 900; }
.pay-span2 { grid-column: span 2; }
 
/* ================================================
   MOBILE FIXED CHECKOUT BAR
   ================================================ */
.mobile-checkout-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-md);
  z-index: 300;
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-bar-inner {
  display: flex;
  align-items: stretch;
  min-height: 64px;
}
.mobile-bar-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
}
.mobile-bar-label { font-size: 10px; color: var(--text-3); font-weight: 500; }
.mobile-bar-total { font-size: 20px; font-weight: 900; color: var(--accent); line-height: 1.1; }
.mobile-bar-saved { font-size: 10px; font-weight: 600; color: var(--green); }
.mobile-bar-btn {
  padding: 0 24px;
  background: var(--black);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 150px;
  transition: background var(--transition);
}
.mobile-bar-btn:hover { background: #222; }
.mobile-bar-btn span { font-size: 10px; font-weight: 500; color: #ff9c7a; }
.mobile-item-count {
  padding: 6px 16px;
  background: #f9f9fb;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
}
.mobile-item-count strong { color: var(--text-2); }
 
/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast {
  position: fixed;
  top: 70px; right: 20px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: var(--radius);
  z-index: 9999;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 300px;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--green); }
.toast.error   { background: var(--accent); }
 
/* ================================================
   RESPONSIVE — TABLET
   ================================================ */
@media (max-width: 1024px) {
  .cart-page { grid-template-columns: 1fr; padding-bottom: 100px; }
  .summary-col { display: none; }
  .summary-card { position: static; }
  .mobile-checkout-bar { display: flex; flex-direction: column; }
}
 
/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 640px) {
  .cart-page { padding: 12px 12px 90px; gap: 10px; }
  .item-image { width: 76px; height: 96px; }
  .current-price { font-size: 15px; }
  .item-title { font-size: 12px; }
  .cart-item { padding: 14px; gap: 10px; }
  .section-card { border-radius: var(--radius); }
}
 
/* ================================================
   ANIMATIONS
   ================================================ */
.cart-item { transition: background 0.2s, opacity 0.2s; }
.cart-item.removing {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s;
}
 
@keyframes priceUpdate {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.1); color: #ff4700; }
  100% { transform: scale(1); }
}
.price-anim { animation: priceUpdate 0.35s ease; }
 
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
