/* ============================================================================
   Phase 2 + 3 (2026-05-08) — store enhancements

   Phase 2: 訂單追蹤 timeline + 客服聯絡 panel (/store/orders/:id)
   Phase 3: 手機版 cart bottom-sheet drawer (/store, /store/item/:id)
   Phase 4: 空狀態插畫 (gpt-image-2 generated)

   This file is loaded after styles-customer.css + marine-home.css so it
   can override base shell styles where needed.
   ============================================================================ */

/* ============================================================================
   Phase 2 — 訂單進度 timeline + 3-channel 客服 panel
   ============================================================================ */

.dp-order-timeline {
  margin: 24px 0 12px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: 16px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(7, 16, 38, 0.84) 100%);
  box-shadow: 0 8px 32px -16px rgba(34, 211, 238, 0.18);
}

.dp-order-timeline > h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.dp-order-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.dp-order-timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding-bottom: 24px;
}

.dp-order-timeline__step.is-last {
  padding-bottom: 0;
}

.dp-order-timeline__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(148, 163, 184, 0.4);
  color: rgba(148, 163, 184, 0.6);
  z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.dp-order-timeline__step.is-done .dp-order-timeline__dot {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: rgba(16, 185, 129, 0.7);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.dp-order-timeline__step.is-current .dp-order-timeline__dot {
  background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
  border-color: rgba(34, 211, 238, 0.85);
  color: #0a1a3e;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16), 0 0 20px rgba(34, 211, 238, 0.55);
  animation: dpOrderTimelinePulse 2s ease-in-out infinite;
}

.dp-order-timeline__step.is-cancelled .dp-order-timeline__dot {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-color: rgba(239, 68, 68, 0.7);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4);
}

@keyframes dpOrderTimelinePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16), 0 0 20px rgba(34, 211, 238, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.08), 0 0 28px rgba(34, 211, 238, 0.7); }
}

.dp-order-timeline__connector {
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.32) 0%, rgba(148, 163, 184, 0.16) 100%);
  z-index: 0;
}

.dp-order-timeline__step.is-done .dp-order-timeline__connector {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.55) 0%, rgba(34, 211, 238, 0.45) 100%);
}

.dp-order-timeline__step.is-pending .dp-order-timeline__connector {
  background: rgba(148, 163, 184, 0.18);
}

.dp-order-timeline__step.is-cancelled .dp-order-timeline__connector {
  background: rgba(239, 68, 68, 0.4);
}

.dp-order-timeline__body {
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.dp-order-timeline__label {
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

.dp-order-timeline__step.is-pending .dp-order-timeline__label {
  color: rgba(148, 163, 184, 0.7);
  font-weight: 600;
}

.dp-order-timeline__step.is-current .dp-order-timeline__label {
  color: #22d3ee;
  font-weight: 800;
}

.dp-order-timeline__time {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
  font-variant-numeric: tabular-nums;
}

.dp-order-timeline__desc {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.85);
}

.dp-order-timeline__step.is-pending .dp-order-timeline__desc {
  color: rgba(148, 163, 184, 0.55);
}

.dp-order-timeline__raw {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.18);
}

.dp-order-timeline__raw summary {
  cursor: pointer;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.75);
  list-style: none;
  padding: 6px 0;
  user-select: none;
}

.dp-order-timeline__raw summary::-webkit-details-marker { display: none; }
.dp-order-timeline__raw summary::before {
  content: "▸ ";
  display: inline-block;
  transition: transform 0.2s ease;
}
.dp-order-timeline__raw[open] summary::before { content: "▾ "; }

.dp-order-timeline__raw-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: rgba(203, 213, 225, 0.82);
}

.dp-order-timeline__raw-list li {
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  display: grid;
  gap: 4px;
}

.dp-order-timeline__raw-list strong {
  color: #f1f5f9;
  font-size: 13px;
}

.dp-order-timeline__raw-list span {
  color: rgba(148, 163, 184, 0.72);
  font-variant-numeric: tabular-nums;
}

/* ---- 客服聯絡 panel ---- */

.dp-order-support {
  margin: 16px 0;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 16px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(20, 16, 8, 0.82) 100%);
  box-shadow: 0 8px 32px -16px rgba(250, 204, 21, 0.14);
}

.dp-order-support__head {
  margin-bottom: 16px;
}

.dp-order-support__head h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #facc15;
  letter-spacing: 0.02em;
}

.dp-order-support__head p {
  margin: 0;
  font-size: 13px;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.55;
}

.dp-order-support__channels {
  display: grid;
  gap: 10px;
}

.dp-order-support__channel {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  text-decoration: none;
  color: #f1f5f9;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.dp-order-support__channel:hover,
.dp-order-support__channel:focus-visible {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -8px rgba(34, 211, 238, 0.3);
  outline: none;
}

.dp-order-support__channel--primary {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14) 0%, rgba(14, 165, 233, 0.08) 100%);
  border-color: rgba(34, 211, 238, 0.35);
}

.dp-order-support__channel--primary:hover,
.dp-order-support__channel--primary:focus-visible {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.22) 0%, rgba(14, 165, 233, 0.14) 100%);
  border-color: rgba(34, 211, 238, 0.65);
}

.dp-order-support__channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.28);
  flex-shrink: 0;
}

.dp-order-support__channel--primary .dp-order-support__channel-icon {
  background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
  color: #0a1a3e;
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
}

.dp-order-support__channel-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.dp-order-support__channel-body strong {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

.dp-order-support__channel-body span {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dp-order-support__channel-arrow {
  font-size: 22px;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 600;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.dp-order-support__channel:hover .dp-order-support__channel-arrow,
.dp-order-support__channel:focus-visible .dp-order-support__channel-arrow {
  color: #22d3ee;
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .dp-order-timeline {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .dp-order-timeline__step {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding-bottom: 20px;
  }
  .dp-order-timeline__dot {
    width: 28px;
    height: 28px;
  }
  .dp-order-timeline__connector {
    left: 13px;
    top: 28px;
  }
  .dp-order-support {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .dp-order-support__channel {
    grid-template-columns: 40px 1fr auto;
    padding: 12px;
  }
  .dp-order-support__channel-icon {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================================
   Phase 3 — 手機版 cart bottom-sheet drawer
   只在 mobile (<= 768px) 啟用. Desktop 保留原本 nav 到 /store/cart.
   ============================================================================ */

.dp-cart-drawer {
  display: none;
}

@media (max-width: 768px) {
  /* Backdrop */
  .dp-cart-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .dp-cart-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Drawer sheet */
  .dp-cart-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: linear-gradient(180deg, #0a1a3e 0%, #050d23 100%);
    border-top: 1px solid rgba(34, 211, 238, 0.32);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -16px 48px -8px rgba(0, 0, 0, 0.5), 0 -2px 0 0 rgba(34, 211, 238, 0.2);
    max-height: 88vh;
    max-height: 88dvh;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.24, 1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    overflow: hidden;
  }
  .dp-cart-drawer.is-open {
    transform: translateY(0);
  }

  .dp-cart-drawer__handle {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 10px 0 8px;
    cursor: grab;
    touch-action: none;
  }
  .dp-cart-drawer__handle::before {
    content: "";
    width: 44px;
    height: 4px;
    border-radius: 2px;
    background: rgba(148, 163, 184, 0.5);
  }

  .dp-cart-drawer__head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 18px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  }
  .dp-cart-drawer__title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: 0.02em;
  }
  .dp-cart-drawer__count {
    margin-left: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #22d3ee;
  }
  .dp-cart-drawer__close {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(203, 213, 225, 0.85);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
  }
  .dp-cart-drawer__close:hover,
  .dp-cart-drawer__close:focus-visible {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.4);
    outline: none;
  }

  .dp-cart-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px 18px 8px;
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .dp-cart-drawer__empty {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px 12px 20px;
    gap: 10px;
  }
  .dp-cart-drawer__empty img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    opacity: 0.92;
  }
  .dp-cart-drawer__empty h4 {
    margin: 0;
    font-size: 15px;
    color: #f1f5f9;
    font-weight: 700;
  }
  .dp-cart-drawer__empty p {
    margin: 0;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.85);
    line-height: 1.5;
  }

  .dp-cart-drawer__line {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 10px;
  }
  .dp-cart-drawer__line-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(34, 211, 238, 0.08) center / cover no-repeat;
    border: 1px solid rgba(34, 211, 238, 0.2);
    display: grid;
    place-items: center;
    font-size: 9px;
    color: rgba(148, 163, 184, 0.6);
    flex-shrink: 0;
  }
  .dp-cart-drawer__line-body {
    display: grid;
    gap: 2px;
    min-width: 0;
  }
  .dp-cart-drawer__line-title {
    font-size: 13px;
    font-weight: 600;
    color: #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35;
  }
  .dp-cart-drawer__line-meta {
    font-size: 11px;
    color: rgba(148, 163, 184, 0.85);
    font-variant-numeric: tabular-nums;
  }
  .dp-cart-drawer__line-price {
    font-size: 14px;
    font-weight: 800;
    color: #facc15;
    text-align: right;
    font-variant-numeric: tabular-nums;
  }

  .dp-cart-drawer__foot {
    flex-shrink: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 14px 18px 12px;
    background: linear-gradient(180deg, rgba(10, 26, 62, 0.5) 0%, rgba(5, 13, 35, 0.92) 100%);
    display: grid;
    gap: 10px;
  }
  .dp-cart-drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: rgba(203, 213, 225, 0.85);
  }
  .dp-cart-drawer__total strong {
    font-size: 22px;
    font-weight: 800;
    color: #facc15;
    font-variant-numeric: tabular-nums;
  }
  /* BUG L11 fix v9 (2026-05-10 condescending-goldberg): CTA 加大 + 強化 visual
     prominence (cyan→amber gradient + glow + shine sweep). user feedback:
     「前往結帳的按鈕應該更明顯一點」. 字 15→17px + padding 14→18px + 加亮金色
     border + outer glow + subtle shine animation 引導視線.
     BUG L13 fix v9 (2026-05-10): 之前 .dp-cart-drawer__cta (0,1,0) 寫 CSS,
     但 .btn.primary (styles-customer.css:12020, 0,2,0) specificity 更高蓋
     掉我的 background/color/box-shadow → CTA 還是淡 cyan 沒看到金色 gradient.
     改用 .btn.primary.dp-cart-drawer__cta (0,3,0) 雙 class selector 穩贏. */
  .btn.primary.dp-cart-drawer__cta,
  .dp-cart-drawer__cta {
    width: 100%;
    padding: 18px 16px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 14px;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 50%, #fbbf24 100%);
    color: #0a1633;
    border: 1.5px solid rgba(254, 243, 199, 0.78);
    box-shadow:
      0 12px 28px -6px rgba(34, 211, 238, 0.55),
      0 8px 18px -4px rgba(251, 191, 36, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.65),
      inset 0 -2px 6px rgba(217, 119, 6, 0.18);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
    transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 180ms ease,
                filter 180ms ease;
    position: relative;
    overflow: hidden;
  }
  /* Subtle shine sweep — draws eye to CTA without being distracting */
  .btn.primary.dp-cart-drawer__cta::after,
  .dp-cart-drawer__cta::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -40%;
    width: 30%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: dp-cart-cta-shine 3.5s ease-in-out infinite;
  }
  @keyframes dp-cart-cta-shine {
    0%, 60% { left: -40%; opacity: 0; }
    70% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
  }
  .btn.primary.dp-cart-drawer__cta:active,
  .dp-cart-drawer__cta:active {
    transform: scale(0.97);
    filter: brightness(1.05);
  }
  @media (prefers-reduced-motion: reduce) {
    .btn.primary.dp-cart-drawer__cta::after,
    .dp-cart-drawer__cta::after { animation: none; }
  }
  /* "查看完整購物車（桌機版）" 維持 secondary 風格, 加註 (桌機版) 讓用戶知道會跳到非手機 layout */
  .dp-cart-drawer__view-cart {
    text-align: center;
    font-size: 13px;
    color: rgba(148, 163, 184, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(148, 163, 184, 0.4);
    text-underline-offset: 3px;
    padding: 4px 0;
  }
  .dp-cart-drawer__view-cart:hover { color: #22d3ee; }

  /* When drawer open, lock body scroll behind it */
  body.dp-cart-drawer-open {
    overflow: hidden;
  }
}

/* ============================================================================
   Phase 4 — orders empty state (login hint already wired) +
   /store/orders empty state insert
   ============================================================================ */

/* R246 BUG #51 fix (2026-05-11 hardcore-gould): 預設 hidden, .is-visible class
   才顯示. 之前 unconditional `display: grid` 配合 store-orders.js classList.toggle
   ("is-visible") 永遠贏 → 即使 user 未登入 / 已有訂單, 空狀態還是顯示在
   #ordersList 下方 = 重複空狀態 UI. 視覺化驗證: 未登入時頁面顯示「請先登入」
   + 「目前沒有符合條件的訂單」兩塊同時. .is-visible 由 store-orders.js
   line 123/127/170 控制. */
.dp-orders-empty {
  display: none;
  place-items: center;
  text-align: center;
  padding: 36px 20px;
  gap: 14px;
}
.dp-orders-empty.is-visible {
  display: grid;
}
.dp-orders-empty__icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 6px 24px rgba(34, 211, 238, 0.18));
}
.dp-orders-empty h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}
.dp-orders-empty p {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.82);
}
.dp-orders-empty__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .dp-orders-empty__icon {
    width: 160px;
    height: 160px;
  }
}

/* /store empty product list illustration */

.dp-shop-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px 16px 40px;
  gap: 12px;
  grid-column: 1 / -1;
}
.dp-shop-empty__icon {
  width: 220px;
  height: 220px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 8px 28px rgba(34, 211, 238, 0.22));
}
.dp-shop-empty h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
}
.dp-shop-empty p {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.85);
}

@media (max-width: 640px) {
  .dp-shop-empty__icon {
    width: 170px;
    height: 170px;
  }
}

/* ============================================================================
   Phase A.3 (R24, 2026-05-10 condescending-goldberg): /store/order-success
   慶祝 hero illustration. 配合 win fanfare SFX 一起 fire = 結帳成功 unbox
   moment. Hero ~200px, 中央放 + 加 subtle float + glow animation.
   ============================================================================ */
.store-success-hero {
  display: grid;
  place-items: center;
  margin: -8px 0 -4px;  /* 緊貼 inner card top, 不過分擠開 badge */
  padding-top: 12px;
}
.store-success-hero__img {
  width: 200px;
  height: 200px;
  max-width: 60vw;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 32px rgba(34, 211, 238, 0.42))
    drop-shadow(0 6px 16px rgba(251, 191, 36, 0.35));
  animation:
    storeSuccessHeroFloat 5s ease-in-out infinite,
    storeSuccessHeroGlow 3.2s ease-in-out infinite;
  /* GPU acceleration hint */
  will-change: transform, filter;
}
@keyframes storeSuccessHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes storeSuccessHeroGlow {
  0%, 100% {
    filter:
      drop-shadow(0 14px 32px rgba(34, 211, 238, 0.42))
      drop-shadow(0 6px 16px rgba(251, 191, 36, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 18px 42px rgba(34, 211, 238, 0.62))
      drop-shadow(0 10px 26px rgba(251, 191, 36, 0.55));
  }
}
@media (prefers-reduced-motion: reduce) {
  .store-success-hero__img {
    animation: none;
  }
}
@media (max-width: 480px) {
  .store-success-hero__img {
    width: 160px;
    height: 160px;
  }
}
