/* ---- 商店頁 — Apple 風格產品頁 ---- */
.page-shop {
  background: #000;
}

.page-shop .nav-link-active {
  color: var(--text);
}

.page-shop .nav.scrolled {
  background: rgba(0, 0, 0, 0.72);
}

.shop-main {
  overflow-x: clip;
}

/* 捲動開場 */
.shop-cinema {
  position: relative;
  height: 420vh;
  background: #000;
}

.shop-cinema-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  overflow: hidden;
  background: #000;
  perspective: 1600px;
}

.shop-cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
}

.shop-cinema-text {
  position: absolute;
  top: 16vh;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 28px;
  will-change: transform, opacity;
}

.shop-cinema-line {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 5.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.shop-cinema-line + .shop-cinema-line {
  margin-top: 0.2em;
}

.shop-cinema-card-wrap {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 5;
  width: min(72vw, 500px);
  transform-style: preserve-3d;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.shop-cinema-card-inner {
  transform-style: preserve-3d;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.03) inset,
    0 60px 140px rgba(0, 0, 0, 0.75);
}

.shop-cinema-card-inner img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.shop-cinema-card-glow {
  position: absolute;
  bottom: -14%;
  left: 50%;
  width: 85%;
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.shop-cinema-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 6;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.shop-cinema-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  animation: shop-cinema-scroll 1.8s ease-in-out infinite;
}

@keyframes shop-cinema-scroll {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .shop-cinema {
    height: auto;
  }

  .shop-cinema-sticky {
    position: relative;
    min-height: 100vh;
  }

  .shop-cinema-line {
    opacity: 1;
    transform: none;
  }

  .shop-cinema-card-wrap {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 48px;
    opacity: 1;
    transform: none !important;
  }

  .shop-cinema-hint {
    display: none;
  }
}

/* Hero */
.shop-hero {
  padding: 80px 24px 24px;
  text-align: center;
}

.shop-hero-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-hero-title {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-hero-sub {
  margin: 12px 0 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
}

.shop-hero-tagline {
  margin: 28px auto 0;
  max-width: 420px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* 產品舞台 */
.shop-stage {
  position: relative;
  padding: 20px 24px 80px;
}

.shop-stage-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.shop-card-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(280px, 52vw, 520px);
  perspective: 1400px;
}

.shop-card-3d {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  cursor: grab;
}

.shop-card-3d.is-dragging {
  cursor: grabbing;
}

.shop-card-flipper {
  position: relative;
  width: 100%;
  aspect-ratio: 860 / 540;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-card-flipper.is-flipped {
  transform: rotateY(180deg);
}

.shop-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.shop-card-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.shop-card-face--back {
  transform: rotateY(180deg);
}

.shop-card-shadow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  width: min(75%, 640px);
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.14) 0%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 1;
}

.shop-stage-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.shop-face-toggle {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

.shop-face-btn {
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.shop-face-btn.is-active {
  color: #000;
  background: #fff;
}

.shop-face-btn:hover:not(.is-active) {
  color: var(--text);
}

.shop-stage-hint {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* 敘事區 */
.shop-story {
  padding: 80px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.shop-story-block {
  text-align: center;
  margin-bottom: 72px;
}

.shop-story-block h2 {
  margin: 0 0 24px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.shop-story-block h2 span {
  background: linear-gradient(135deg, #fff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-story-block p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.shop-story-block p strong {
  color: var(--text);
  font-weight: 600;
}

/* Apple 風格大標語 */
.shop-statement {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, #000 0%, #0c0c0c 50%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-statement-eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-statement-title {
  margin: 0 auto 24px;
  max-width: 800px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 30%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-statement-desc {
  margin: 0 auto;
  max-width: 580px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-secondary);
}

/* Apple 風格交替區塊 */
.shop-blocks {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.shop-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-block:last-child {
  border-bottom: none;
}

.shop-block--reverse .shop-block-copy {
  order: 2;
}

.shop-block--reverse .shop-block-visual {
  order: 1;
}

.shop-block-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-block-copy h3 {
  margin: 0 0 20px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.shop-block-copy > p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.shop-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-block-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.shop-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.shop-block-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-block-img {
  width: 100%;
  max-width: 420px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.shop-block-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border-radius: var(--radius-full);
}

/* NFC 示意 */
.shop-nfc-mock {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
}

.shop-nfc-phone {
  position: absolute;
  top: 0;
  left: 50%;
  width: 58%;
  aspect-ratio: 9 / 18;
  transform: translateX(-50%);
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.shop-nfc-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 20px;
}

.shop-nfc-app {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.shop-nfc-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.shop-nfc-waves {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.shop-nfc-waves span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: shop-nfc-pulse 1.4s ease-in-out infinite;
}

.shop-nfc-waves span:nth-child(2) { animation-delay: 0.2s; }
.shop-nfc-waves span:nth-child(3) { animation-delay: 0.4s; }

@keyframes shop-nfc-pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.shop-nfc-card-mini {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 72%;
  transform: translateX(-50%) rotate(-8deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.shop-nfc-card-mini img {
  display: block;
  width: 100%;
}

/* Bento 格 */
.shop-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.shop-bento-item {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}

.shop-bento-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.shop-bento-item--wide {
  grid-column: 1 / -1;
}

.shop-bento-item--accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
}

.shop-bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.shop-bento-icon svg {
  width: 24px;
  height: 24px;
}

.shop-bento-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.shop-bento-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.shop-bento-num {
  display: block;
  margin-bottom: 4px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* 規格表 */
.shop-compare {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px;
}

.shop-compare-head {
  text-align: center;
  margin-bottom: 48px;
}

.shop-compare-head h2 {
  margin: 0 0 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.shop-compare-head p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.shop-compare-table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.shop-compare-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-compare-row:last-child {
  border-bottom: none;
}

.shop-compare-row span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.shop-compare-row span:last-child {
  color: var(--text);
  font-weight: 500;
}

.shop-compare-row--head {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.shop-compare-row--head span {
  color: var(--text) !important;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.shop-compare-note {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
}

.shop-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-spec {
  padding: 32px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.shop-spec:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.shop-spec-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-spec strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-spec p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* 全幅特色 */
.shop-feature {
  padding: 100px 24px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
}

.shop-feature--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-feature-copy {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.shop-feature-copy h2 {
  margin: 0 0 20px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.shop-feature-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.shop-feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.shop-feature-img {
  width: min(42%, 380px);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-feature-img--front {
  transform: rotate(-6deg) translateY(8px);
}

.shop-feature-img--back {
  transform: rotate(6deg) translateY(-8px);
}

.shop-feature:hover .shop-feature-img--front {
  transform: rotate(-3deg) translateY(0);
}

.shop-feature:hover .shop-feature-img--back {
  transform: rotate(3deg) translateY(0);
}

/* 細節列 */
.shop-details {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px;
}

.shop-detail-row {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-detail-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-detail-num {
  flex-shrink: 0;
  width: 40px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
}

.shop-detail-body h3 {
  margin: 0 0 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.shop-detail-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* 購買區 */
.shop-buy {
  padding: 40px 24px 120px;
}

.shop-buy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.shop-buy-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-buy-info h2 {
  margin: 0 0 8px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-buy-info h2 span {
  display: block;
  margin-top: 4px;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.shop-buy-desc {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
}

.shop-buy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-buy-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-secondary);
}

.shop-buy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.shop-buy-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  min-width: 220px;
}

.shop-buy-price {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-buy-btn {
  width: 100%;
  justify-content: center;
}

.shop-buy-back {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.shop-buy-back:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .shop-spec-grid {
    grid-template-columns: 1fr;
  }

  .shop-block {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 40px;
  }

  .shop-block--reverse .shop-block-copy,
  .shop-block--reverse .shop-block-visual {
    order: unset;
  }

  .shop-block-copy {
    text-align: center;
  }

  .shop-block-list {
    align-items: center;
  }

  .shop-statement {
    padding: 80px 24px;
  }

  .shop-compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 20px;
  }

  .shop-feature-visual {
    flex-direction: column;
  }

  .shop-feature-img {
    width: min(80%, 340px);
  }

  .shop-feature-img--front,
  .shop-feature-img--back {
    transform: none;
  }

  .shop-buy-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .shop-buy-list {
    align-items: center;
  }

  .shop-buy-actions {
    width: 100%;
  }

  .shop-detail-row {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .shop-hero {
    padding-top: 120px;
  }
}
