/* ========================================
   Cozy Shop — cozyapp.app/shop.html
   ======================================== */

/* ======== Shop Hero ======== */
.shop-hero {
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 56px;
  max-width: 720px;
  margin: 0 auto;
}
.shop-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.shop-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 28px;
}
.shop-hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
}
.shop-hero-meta span::before {
  content: '·';
  margin-right: 20px;
}
.shop-hero-meta span:first-child::before {
  display: none;
}
.shop-hero-os {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.shop-hero-os-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
.shop-hero-os-icon:hover {
  transform: scale(1.12);
}
/* ======== Back to Top ======== */
.shop-back-top {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-back-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.shop-back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.shop-back-top:hover {
  background: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ======== Theme Grid ======== */
.shop-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* ======== Theme Card ======== */
.shop-card {
  margin-bottom: 88px;
}
.shop-card-wallpaper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.shop-card-wallpaper:hover {
  transform: translateY(-4px);
}
.shop-card-wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
/* Placeholder for themes without images yet */
.shop-card-wallpaper .shop-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* Hover overlay */
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.shop-card-wallpaper:hover .shop-card-overlay {
  opacity: 1;
}
.shop-card-overlay span {
  background: rgba(255,255,255,0.95);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: var(--radius-button);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Badge (FREE / tier) */
.shop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
}
.shop-badge-free {
  background: var(--text-primary);
  color: #fff;
}
/* .shop-badge-tier removed — only FREE badge is used */

/* Card info */
.shop-card-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 4px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.shop-card-text {
  flex: 1;
  min-width: 240px;
}
.shop-card-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.shop-card-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: 10px;
}
.shop-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-card-tag {
  background: #f5f5f2;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
}

/* Card actions */
.shop-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  flex-shrink: 0;
}
.shop-card-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ======== Buttons ======== */
.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.shop-btn-primary {
  background: var(--text-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.shop-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.shop-btn-accent {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,161,184,0.3);
}
.shop-btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,161,184,0.4);
}
.shop-btn-in-cart {
  background: #eee;
  color: var(--text-tertiary);
  cursor: default;
  box-shadow: none;
}

/* ======== Lightbox ======== */
.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: shopFadeIn 0.3s ease;
}
.shop-lightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  flex-shrink: 0;
}
.shop-lightbox-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.shop-lightbox-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.shop-lightbox-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.shop-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Lightbox tabs */
.shop-lightbox-tabs {
  display: flex;
  gap: 4px;
  padding: 0 32px 16px;
  flex-shrink: 0;
}
.shop-lightbox-tab {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-lightbox-tab.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Lightbox content */
.shop-lightbox-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px 16px;
}
.shop-lightbox-wallpaper {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.shop-lightbox-wallpaper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-lightbox-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 640px;
  width: 100%;
  padding: 24px 0;
  justify-items: center;
}
.shop-lightbox-icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.shop-lightbox-icon-cell img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.shop-lightbox-icons-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 12px 0 16px;
  line-height: 1.5;
}

/* Category pills (lightbox) */
.shop-cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.shop-cat-pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

/* Desktop mockup */
.shop-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-mockup-screen {
  width: 800px;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 6px solid #444;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.shop-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-mockup-stand {
  width: 50px;
  height: 18px;
  background: linear-gradient(#555, #444);
  border-radius: 0 0 3px 3px;
}
.shop-mockup-base {
  width: 100px;
  height: 5px;
  background: linear-gradient(#555, #444);
  border-radius: 0 0 8px 8px;
}

/* Lightbox bottom bar */
.shop-lightbox-bar {
  flex-shrink: 0;
  padding: 20px 32px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-lightbox-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shop-lightbox-bar-thumb {
  width: 56px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}
.shop-lightbox-bar-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.shop-lightbox-bar-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.shop-lightbox-bar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.shop-lightbox-bar-price {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

/* ======== Cart Drawer ======== */
.shop-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 290;
  animation: shopFadeIn 0.2s ease;
}
.shop-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  z-index: 300;
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  animation: shopSlideIn 0.3s ease;
}
.shop-cart-header {
  padding: 24px 24px 18px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-cart-header h3 {
  font-size: 20px;
  font-weight: 800;
}
.shop-cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ccc;
  padding: 0;
}
.shop-cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 24px;
}
.shop-cart-empty {
  text-align: center;
  padding: 48px 0;
  color: #ccc;
  font-size: 14px;
}
.shop-cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f8f8f6;
}
.shop-cart-item-thumb {
  width: 56px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}
.shop-cart-item-name {
  font-size: 14px;
  font-weight: 800;
}
.shop-cart-item-sub {
  font-size: 11px;
  color: var(--text-tertiary);
}
.shop-cart-item-price {
  font-size: 15px;
  font-weight: 800;
  margin-left: auto;
  white-space: nowrap;
}
.shop-cart-item-remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #ccc;
  padding: 0 4px;
  margin-left: 8px;
}
.shop-cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid #f0f0f0;
}
.shop-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.shop-cart-total-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}
.shop-cart-total-price {
  font-size: 24px;
  font-weight: 800;
}
.shop-cart-checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.shop-cart-checkout-btn:hover {
  transform: translateY(-1px);
}
.shop-cart-secure {
  text-align: center;
  margin-top: 12px;
  font-size: 11px;
  color: #ccc;
}

/* ======== Floating Cart Button ======== */
.shop-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 190; /* Below lightbox (200) so it doesn't overlap */
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shopPopIn 0.3s ease;
  transition: transform 0.2s;
}
.shop-fab:hover {
  transform: translateY(-2px);
}
.shop-fab-count {
  background: #fff;
  color: var(--text-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* ======== Toast ======== */
.shop-toast {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  background: var(--text-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: shopToastIn 0.3s ease;
  pointer-events: none;
}

/* ======== FAQ ======== */
.shop-faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 24px 72px;
}
.shop-faq h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.shop-faq details {
  padding: 18px 0;
  border-bottom: 1px solid #f0f0ed;
}
.shop-faq summary {
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-faq summary::-webkit-details-marker { display: none; }
.shop-faq summary::after {
  content: '+';
  color: #ddd;
  font-size: 22px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.shop-faq details[open] summary::after {
  transform: rotate(45deg);
}
.shop-faq details p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  padding-right: 40px;
}

/* ======== Bottom CTA ======== */
.shop-cta {
  background: var(--text-primary);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.shop-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.shop-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  margin: 0 auto 28px;
}
.shop-cta a {
  display: inline-block;
  background: #fff;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s;
}
.shop-cta a:hover {
  transform: translateY(-2px);
}

/* ======== Checkout ======== */
.shop-checkout {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}
.shop-checkout-inner {
  max-width: 520px;
  width: 100%;
}
.shop-checkout-back {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
}
.shop-checkout h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.shop-checkout-summary {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}
.shop-checkout-items {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glass);
}
.shop-checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f8f8f6;
}
.shop-checkout-item:last-of-type {
  border-bottom: none;
}
.shop-checkout-item-thumb {
  width: 56px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}
.shop-checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  margin-top: 8px;
}
.shop-checkout-total-row span:last-child {
  font-size: 20px;
  font-weight: 800;
}
.shop-checkout-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.shop-checkout input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #eee;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.shop-checkout input[type="email"]:focus {
  border-color: var(--text-primary);
}
.shop-checkout-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.shop-checkout-method {
  flex: 1;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.shop-checkout-method.selected {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}
.shop-checkout-method-icon {
  font-size: 20px;
  margin-bottom: 6px;
}
.shop-checkout-method-label {
  font-size: 14px;
  font-weight: 800;
}
.shop-checkout-method-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}
.shop-checkout-method.selected .shop-checkout-method-sub {
  color: rgba(255,255,255,0.6);
}
.shop-checkout-provider {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glass);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
}
.shop-checkout-paypal-hint {
  background: #FFF8E1;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.shop-checkout-pay-btn {
  width: 100%;
  padding: 18px;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: all 0.2s;
}
.shop-checkout-pay-btn:disabled {
  background: #ddd;
  color: var(--text-tertiary);
  cursor: default;
  box-shadow: none;
}
.shop-card-field {
  margin-bottom: 12px;
  min-height: 40px;
}
#card-form-container {
  margin-bottom: 16px;
}
.shop-checkout-note {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  color: #ccc;
}

/* Processing spinner */
.shop-processing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.shop-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #eee;
  border-top-color: var(--text-primary);
  border-radius: 50%;
  animation: shopSpin 0.8s linear infinite;
  margin: 0 auto 24px;
}

/* Success page */
.shop-success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.shop-success-inner {
  text-align: center;
  max-width: 440px;
  padding: 0 32px;
}
.shop-success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.shop-success h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.shop-success p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.shop-success-order {
  background: #f5f5f2;
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
}

/* ======== Image Protection ======== */
.shop-card-wallpaper img,
.shop-lightbox-wallpaper img,
.shop-lightbox-icon-cell img,
.shop-mockup-screen img,
.shop-lightbox-bar-thumb,
.shop-cart-item-thumb,
.shop-checkout-item-thumb {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
/* Overlay to block right-click on card images */
.shop-card-wallpaper::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.shop-card-overlay {
  z-index: 2;
}
.shop-badge {
  z-index: 3;
}

/* ======== Animations ======== */
@keyframes shopFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shopSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes shopPopIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes shopToastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes shopSpin { to { transform: rotate(360deg); } }

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .shop-card-info {
    flex-direction: column;
    gap: 16px;
  }
  .shop-card-actions {
    width: 100%;
    justify-content: space-between;
  }
  .shop-cart {
    width: 100vw;
  }
  .shop-lightbox-top {
    padding: 16px 20px;
  }
  .shop-lightbox-tabs {
    padding: 0 20px 12px;
  }
  .shop-lightbox-body {
    padding: 0 20px 12px;
  }
  .shop-lightbox-bar {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .shop-lightbox-bar-actions {
    justify-content: space-between;
  }
  .shop-lightbox-icons-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 16px;
  }
  .shop-lightbox-icon-cell img {
    width: 64px;
    height: 64px;
  }
  .shop-fab {
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
    font-size: 14px;
  }
  .shop-checkout-methods {
    flex-direction: column;
  }
  .shop-mockup-screen {
    width: 100%;
    border-width: 4px;
  }
}

@media (max-width: 480px) {
  .shop-hero h1 {
    font-size: 32px;
  }
  .shop-card-text h2 {
    font-size: 22px;
  }
}
