@charset "utf-8";
/* CSS Document */

:root {
  --moz-blue: #00b4ff;
  --moz-pink: #ff4b92;
  --moz-dark: #111118;
  --moz-light: #f5f5f7;
}
html {
  scroll-behavior: smooth;
}

/* Global */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--moz-light);
  color: #1d1d1f;
}

a {
  text-decoration: none;
}

/* Global page background so the bands stand off the page a bit */
body {
  background: #f3f4f9;
}

/* Hero stands on its own “card” */
.moz-hero {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border-radius: 0 0 24px 24px;
  margin-bottom: 2.5rem;
}

/* Generic sections */
.moz-section {
  position: relative;
  background: #ffffff;
}

/* Alternating light bands */
.moz-section-light {
  background: #f7f8fc;
}

/* Divider between sections so they don't run together */
.moz-section + .moz-section {
  border-top: 1px solid #e1e4f0;
}

/* Small colored pill at the top center of each band for separation */
.moz-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6bb5, #8f7bff);
  opacity: 0.8;
}

/* Give headings a bit more breathing room from that pill */
.moz-section h2.h3 {
  margin-top: 0.75rem;
}



/* Navbar */
.moz-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.moz-logo {
  height: 38px;
  width: auto;
  border-radius: 10px;
}

.moz-brand-text {
  font-size: 1.1rem;
}

/* Cart icon in nav */
.moz-cart-link {
  color: #111827;
  background: transparent;
  border: none;
  padding: 0;
}

.moz-cart-link .bi {
  font-size: 1.5rem;
}

.moz-cart-link:hover,
.moz-cart-link:focus {
  color: #ec4899; /* matches the gradient vibe */
}

/* Small badge for item count */
.moz-cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #ffffff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* ---------------------------------------------------
   Cart count badge (pink → blue gradient)
--------------------------------------------------- */
#moz-cart-count {
  background: linear-gradient(135deg, #e84aa6 0%, #2fa4ff 100%)!important;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px #fff; /* keeps it readable on light nav */
}
.moz-cart-link #moz-cart-count {
  transform: translate(-40%, -40%);
}


/* Hero */
.moz-hero {
  background: radial-gradient(circle at top left, #ffe0f0 0, #f5f5f7 45%, #d8f3ff 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.moz-overline {
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #6e6e73;
}

.moz-hero-heading {
  font-size: clamp(2.3rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
}

.moz-hero-subtitle {
  font-size: 0.98rem;
  color: #6e6e73;
}

/* Buttons */
.moz-btn-primary {
  background: linear-gradient(135deg, var(--moz-pink), var(--moz-blue));
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.moz-btn-primary:hover {
  opacity: 0.92;
  color: #fff;
}

/* ---------------------------------------------------
   Gradient Ghost Button
--------------------------------------------------- */
.moz-btn-ghost {
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #1d1d1f;
  font-weight: 500;
  border: none;
  padding: 10px 22px;
  z-index: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Gradient border */
.moz-btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5fa2, #4facfe);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover */
.moz-btn-ghost:hover {
  background: #fff;
  color: #111;
}
.moz-btn-ghost::before {
  background-size: 200% 200%;
  transition: background-position 300ms ease;
}

.moz-btn-ghost:hover::before {
  background-position: right center;
}


/* Hero product wrapper */
.moz-hero-product {
  max-width: 360px;
  margin-inline: auto;
}

/* Outer card – soft white with even padding */
.moz-hero-card {
  border-radius: 32px;
  background-color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  padding: 18px;          /* even padding all around */
}

/* Phone-style 9:16 frame inside the card */
.moz-hero-product-shot {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;       /* behind the video */
}

/* Make sure the video fills the phone frame */
.moz-hero-product-shot video,
.moz-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Accent glow stays the same */
.moz-hero-accent-circle {
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 146, 0.6), rgba(0, 180, 255, 0));
  z-index: -1;
}




/* Feature strip */
.moz-strip {
  background-color: #f7f8fc;          /* soft light to match sections */
  border-top: none;
  border-bottom: none;
}

.moz-strip-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
}

.moz-strip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #111827;
  position: relative;
  padding-bottom: 0.25rem;
  margin-bottom: 0.1rem;
}

.moz-strip-label::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4b92, #20b6ff);
}

.moz-strip-sub {
  font-size: 0.8rem;
  color: #6b7280;
}


/* Sections */
.moz-section-light {
  background-color: var(--moz-light);
}

/* Product cards */
.moz-product-card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.moz-product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.moz-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Featured product cards – homepage */
.moz-product-card-featured {
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border: none;
}

/* Taller, more dominant image */
.moz-product-card-featured .moz-product-thumb {
  height: 300px;              /* adjust up/down as you want */
}

/* Compact title/price row */
.moz-product-card-featured .moz-product-body {
  padding: 0.9rem 1rem;
}

.moz-product-card-featured .moz-product-body h6,
.moz-product-card-featured .moz-product-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.moz-product-card-featured .moz-product-body span {
  font-size: 0.95rem;
}

/* Smooth hover animation */
.moz-product-card-featured {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Raise + deepen shadow on hover/focus */
.moz-product-card-featured:hover,
.moz-product-card-featured:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}


.moz-product-thumb {
  height: 180px;
  background: linear-gradient(135deg, #fdf2ff, #e3f5ff);
}

.moz-product-body {
  padding: 1rem 1.1rem 1.1rem;
}

.moz-cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2ff, #e3f5ff);
}


/* ---------------------------------------------------
   Mozzie – Fidget Add Ons Gradient Section
--------------------------------------------------- */
.moz-addon-section > .container {
  position: relative;
  z-index: 1;
}

.moz-addon-section {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(255, 100, 200, 0.25) 0%,
      rgba(100, 180, 255, 0.25) 100%
    );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

/* ---------------------------------------------------
   TikTok Embed – Contained Phone Style
--------------------------------------------------- */

.moz-social-embed {
  max-height: 520px;      /* KEY: limits height */
  max-width: 300px;       /* phone-like width */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #000;
}

/* Prevent TikTok from forcing huge min heights */
.moz-social-embed iframe {
  max-height: 520px !important;
}




/* ---------------------------------------------------
   3D Badge
--------------------------------------------------- */
.moz-viewer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  cursor: help;
  z-index: 5;
  user-select: none;
}

/* ---------------------------------------------------
   Flip Btn
--------------------------------------------------- */
.moz-3d-control {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease;
}

.moz-3d-control:hover {
  background: rgba(0,0,0,0.85);
}


/* ---------------------------------------------------
   Thumbnails
--------------------------------------------------- */
.moz-pdp-thumb-btn {
  border: 2px solid transparent;
  padding: 2px;
  border-radius: 12px;
  background: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.moz-pdp-thumb-btn:hover {
  transform: scale(1.04);
}

.moz-pdp-thumb-btn.is-active {
  border-color: #111;
  outline: 2px solid #6c63ff;
  outline-offset: 2px;
  background: rgba(108, 99, 255, 0.08);
}

/* ---------------------------------------------------
   PDP Viewer Shell
--------------------------------------------------- */
.moz-pdp-hero {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #eee;
}

#product3dViewer,
#productImageViewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* Both viewers sit in the exact same place */
.moz-pdp-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

/* Visible state */
.moz-pdp-viewer.viewer-visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Hidden state */
.moz-pdp-viewer.viewer-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.moz-pdp-image-wrap {
  pointer-events: auto;
}

.moz-pdp-image-wrap.viewer-hidden {
  pointer-events: none;
}

/* ---------------------------------------------------
   PDP Hero – Soft Energy Glow
--------------------------------------------------- */

.moz-pdp-hero {
  position: relative;
  z-index: 1;
}

.moz-pdp-hero::before {
  content: '';
  position: absolute;
  inset: -48px;
  z-index: -1;
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 100, 200, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(100, 180, 255, 0.22),
      transparent 60%
    );
  filter: blur(42px);
  pointer-events: none;
}


/* ---------------------------------------------------
   Image Zoom-on-hover (only when image is active)
--------------------------------------------------- */
.moz-pdp-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* IMPORTANT: scaling only the img prevents layout jumps */
.moz-pdp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1);
  transform-origin: center center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Only zoom when image viewer is visible */
.moz-pdp-image-wrap:hover img.viewer-visible {
  transform: translateZ(0) scale(1.04);
}

/* ---------------------------------------------------
   PDP Config Card – Brand Accent
--------------------------------------------------- */

.moz-hero-card {
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden; /* KEY FIX */
}


.moz-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(
    90deg,
    #ff66cc,
    #66b3ff
  );
}

/* ---------------------------------------------------
   PDP CTA Button – Soft Glow
--------------------------------------------------- */

.moz-add-to-cart-form .moz-btn-primary {
  box-shadow:
    0 10px 28px rgba(255, 100, 200, 0.28),
    0 6px 18px rgba(100, 180, 255, 0.28);
}

.moz-pdp-description {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* ---------------------------------------------------
   PDP MOBILE ACCORDION STEPS
--------------------------------------------------- */
@media (max-width: 767.98px) {

  .moz-pdp-step-toggle {
    background: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  .moz-pdp-step-toggle .step-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: #6b7280;
    text-transform: uppercase;
  }

  .moz-pdp-step-toggle .step-title {
    flex: 1;
    font-size: 0.9rem;
  }

  .moz-pdp-step-toggle .step-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
  }

  .moz-pdp-step-content {
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    display: none;
  }

  .moz-pdp-step.is-open .moz-pdp-step-content {
    display: block;
  }

  .moz-pdp-step.is-open .step-icon {
    transform: rotate(45deg);
  }
  .moz-pdp-step-content {
    animation: fadeSlide 0.25s ease;
  }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
/* ---------------------------------------------------
   PDP DESKTOP – DISABLE ACCORDION
--------------------------------------------------- */
@media (min-width: 768px) {

  /* Hide accordion buttons entirely */
  .moz-pdp-step-toggle {
    display: none;
  }

  /* Always show content */
  .moz-pdp-step-content {
    display: block !important;
    margin-top: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  /* Remove accordion state visuals */
  .moz-pdp-step {
    box-shadow: none;
    border-radius: 0;
  }

}
@media (min-width: 768px) {
  .moz-pdp-step {
    margin-bottom: 1.75rem;
  }
}




/* Footer */
.moz-footer {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .moz-hero {
    min-height: auto;
  }

  .moz-hero-heading {
    font-size: 2.1rem;
  }
}

.bi-tiktok {
  color: #000;
}

.bi-instagram {
  color: #e1306c;
}


.moz-img-panel {
  border-radius: 24px;
  background: #f5f7fb;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moz-img-panel-inner {
  padding: 24px;
  text-align: center;
  border: none;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
}

.moz-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.moz-quote-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.moz-checklist {
  list-style: none;
  padding-left: 0;
}
.moz-checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}
.moz-checklist li::before {
  content: '•';
  position: absolute;
  left: 10px;
  top: 0;
  font-weight: 700;
}


/* Add-on cards: horizontal layout with thumbnail */
.moz-addon-card {
  padding: 1.1rem 1.25rem;
}

.moz-addon-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

/* Make sure text doesn’t crowd edge when we removed padding */
.moz-addon-card .moz-product-body h6,
.moz-addon-card .moz-product-body p,
.moz-addon-card .moz-product-body a {
  /* optional; you can leave as-is if spacing feels good */
}

/* Small hover lift to match featured cards vibe */
.moz-addon-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.moz-addon-card:hover,
.moz-addon-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}




/* How-to video sizing */
.moz-video-panel {
  aspect-ratio: 9 / 16;        /* match hero phone ratio */
  max-height: 520px;
  max-width: 360px;            /* a bit narrower than hero so it feels secondary */
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.7); /* subtle frame */
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.moz-video-panel .moz-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* On mobile, let it feel like a regular phone video */
@media (max-width: 767.98px) {
  .moz-video-panel {
    max-width: 100%;
    max-height: 480px;
    aspect-ratio: 9 / 16;
    margin-left: auto;
    margin-right: auto;
  }
}


.moz-safety-panel {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-left: 4px solid #ff4b92; /* brand accent */
}
.alert-warning {
    background: #fff8e5;
    border: 1px solid #f4d48a;
    color: #8a6d3b;
    border-radius: 8px;
}



/*.product-3d-viewer {
  width: 100%;
  height: 360px;        
  background: #f0f0f0; 
  border-radius: 16px;
}
model-viewer {
  width: 100%;
  height: 100%;
  display: block;
}*/


/* ---------------------------------------------------
   About Page
--------------------------------------------------- */

.moz-about-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  background: #f5f5f5;
}

.moz-about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ---------------------------------------------------
   Contact Page Card Accent (Optional)
--------------------------------------------------- */

.moz-hero-card {
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.moz-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff66cc, #66b3ff);
}


/* ---------------- CART DRAWER ---------------- */

.moz-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9998;
}

.moz-cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,.15);
  transition: right .3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.moz-cart-drawer.open {
  right: 0;
}

.moz-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.moz-cart-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moz-cart-header button {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.moz-cart-items {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.moz-cart-item {
  margin-bottom: 12px;
}

.moz-cart-footer {
  padding: 16px;
  border-top: 1px solid #eee;
}



.moz-bulk-order {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}

.moz-bulk-order h3 {
  margin-bottom: 8px;
}

.moz-bulk-order p {
  margin-bottom: 16px;
  color: #555;
}

.moz-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.moz-pdp-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.moz-bulk-order {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(250,250,252,0.95)
  );
  border: 1px dashed rgba(0,0,0,0.25);
}
/* Bulk pricing link */
.moz-pdp-bulk-link {
  margin-top: 6px;
  font-size: 0.9rem;
}

.moz-pdp-bulk-link a {
  color: #777;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.25);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.moz-pdp-bulk-link a:hover {
  color: var(--moz-pink);
}

/* Price + qty grouping */
.moz-pdp-price-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.moz-icon-box::before {
  content: "📦";
  margin-right: 8px;
}

/* Mobile layout */
@media (max-width: 480px) {
  .moz-pdp-price-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .moz-pdp-price-main {
    justify-content: center;
  }

  .moz-pdp-bulk-link {
    font-size: 0.85rem;
    margin-top: 2px;
  }
}

/* Form grid collapse */
@media (max-width: 640px) {
  .moz-form-grid {
    grid-template-columns: 1fr;
  }
}

.moz-alert {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.moz-alert-success {
  background: #dff1e6;
  border: 1px solid #b7e1c6;
  color: #245c3a;
}

.moz-alert-error {
  background: #fde2e2;
  border: 1px solid #f5b5b5;
  color: #7a1f1f;
}

#sortable-images tr {
  cursor: grab;
}
#sortable-images tr:active {
  cursor: grabbing;
}

