@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;
}

/* --------------------------------------------------- Announcement Bar (FINAL CLEAN) --------------------------------------------------- */

.moz-announcement-bar {
  background: linear-gradient(90deg, #ff4d8d, #4da6ff);
  color: #fff;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1050;

  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* remove container flex conflicts */
.moz-announcement-bar .container {
  display: block;
  height: 100%;
}

/* link */
.moz-announcement-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}
.moz-announcement-bar a:hover {
  color: #111;
}
/* --------------------------------------------------- ROTATOR --------------------------------------------------- */

.moz-announcement-rotator {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* slides */
.moz-announcement-slide {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%) translateY(8px);
  opacity: 0;

  transition: all 0.4s ease;
  white-space: nowrap;
}

.moz-announcement-slide {
  will-change: transform, opacity;
}

.moz-announcement-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.moz-announcement-slide {
  opacity: 0;
  pointer-events: none;
}

.moz-announcement-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Navbar */
.moz-nav {
  position: sticky;
  top: 40px; /* height of announcement bar */
  z-index: 1020;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.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 Split>--------------------------------------------------- */

.moz-hero-split{
  min-height:650px;
  display:flex;
  align-items:center;

  background-size:60%;
  background-repeat:no-repeat;
  background-position:right center;

  position:relative;

  filter: contrast(1.03) saturate(1.05);
}

/* gradient overlay */
.moz-hero-split:before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    rgba(255,224,240,1) 0%,
    rgba(216,243,255,1) 45%,
    rgba(243,244,249,0.35) 70%,
    rgba(243,244,249,0.1) 85%,
    rgba(243,244,249,0) 100%
  );
}

/* subtle hero highlight */
.moz-hero-split:after{
  content:"";
  position:absolute;

  right:20%;
  top:50%;
  transform:translateY(-50%);

  width:500px;
  height:500px;

  background:radial-gradient(
    circle,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0) 70%
  );

  pointer-events:none;
}

.moz-hero-text{
  position:relative;
  z-index:2;
}

/* hide mobile image on desktop */
.moz-hero-mobile-img{
  display:none;
}


/* ---------------------------------------------------<Mobile Hero>--------------------------------------------------- */

@media (max-width:768px){

  .moz-hero-split{
    background-size:cover;
    background-position:center;
    min-height:520px;

    display:flex;
    align-items:flex-end;
    text-align:center;
  }

  .moz-hero-split{
    will-change:transform;
  }

  .moz-hero-desc{
    display:none;
  }

  .moz-hero-text{
    width:100%;
    padding:30px 20px 40px;
  }

  .moz-hero-split:before{
    background:linear-gradient(
      180deg,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0.45) 65%,
      rgba(0,0,0,0.75) 100%
    );
  }

  .moz-hero-text h1{
    color:#fff;
  }
	
  .moz-hero-text .btn{
	margin-top:12px;
  }

}





/* 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: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.moz-strip-label,
.moz-strip-sub {
  display: block;
}
.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;
}
/* Remove default link styling */
.moz-strip-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Only show hover effect on mobile */
@media (max-width: 767px) {
  .moz-strip-item {
    padding: 18px;
    transition: all 0.2s ease;
  }

  .moz-strip-item:active {
    transform: scale(0.98);
  }

  .label-arrow::after {
    content: " →";
    margin-left: 6px;
    font-weight: 600;
  }
}

/* Sections */
/*.moz-section-light {
  background-color: var(--moz-light);
}*/
/* ---------------------------------------------------<Shop Section Background>--------------------------------------------------- */

.moz-section-light {
  background: linear-gradient(
    180deg,
    #f7f8fc 0%,
    #ffffff 100%
  );
}

/* 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);
}

/* ---------------------------------------------------<Product Card Polish>--------------------------------------------------- */

.moz-product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.moz-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* image zoom effect */
.moz-product-thumb img {
  transition: transform .4s ease;
}

.moz-product-card:hover .moz-product-thumb img {
  transform: scale(1.05);
}

.moz-product-thumb {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

/* Featured product cards – homepage */

#featuredSplide .splide__arrow {
  background: white;
  border: 1px solid #eee;
}

#featuredSplide .splide__arrow svg {
  fill: #111;
}

#featuredSplide .splide__slide {
  padding-bottom: 5px;
}



.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);
}

.moz-product-body p {
  margin-bottom: .6rem;
}

.moz-product-body .price {
  font-size: 15px;
  font-weight: 600;
}

/* ---------------------------------------------------
   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%
  );
}

/* ---------------------------------------------------<Social Elite>--------------------------------------------------- */

.moz-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.moz-social-card {
  display: block;
  text-decoration: none;
  color: #111;

  border-radius: 20px;
  padding: 22px 16px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SOFT GRADIENT GLOW */
.moz-social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4d8d, #4da6ff);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* SHIMMER LAYER (ELITE TOUCH) */
.moz-social-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.2) 50%,
    transparent 60%
  );
  opacity: 0;
  transform: rotate(25deg);
  transition: opacity 0.3s ease;
}

/* TikTok subtle tint */
.moz-social-card:nth-child(1) {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85),
    rgba(0,0,0,0.03)
  );
}

/* Instagram subtle tint */
.moz-social-card:nth-child(2) {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85),
    rgba(225,48,108,0.05)
  );
}

/* HOVER */
.moz-social-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.6);
}

.moz-social-card:hover::before {
  opacity: 0.12;
}

.moz-social-card:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

/* SHIMMER ANIMATION */
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* INNER */
.moz-social-inner {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ICON */
.moz-social-inner i {
  font-size: 34px;
  margin-bottom: 12px;
  transition: transform 0.25s ease;
}

/* ICON MICRO ANIMATION */
.moz-social-card:hover i {
  transform: scale(1.1) rotate(2deg);
}

/* PLATFORM COLORS */
.moz-social-card:nth-child(1) i {
  color: #000;
}

.moz-social-card:nth-child(2) i {
  color: #E1306C;
}

/* TEXT */
.moz-social-inner h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.moz-social-inner p {
  font-size: 12px;
  color: #666;
  margin-bottom: 14px;
  min-height: 48px;
}

/* BUTTON */
.moz-social-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;

  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d8d, #4da6ff);
  color: #fff;

  transition: all 0.25s ease;
}

/* BUTTON HOVER */
.moz-social-card:hover .moz-social-btn {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* PRESS (MOBILE FEEL) */
.moz-social-card:active {
  transform: scale(0.96);
}

/* MOBILE */
@media (max-width: 768px) {
  .moz-social-card {
    padding: 18px 12px;
  }

  .moz-social-inner i {
    font-size: 28px;
  }

  .moz-social-inner h3 {
    font-size: 14px;
  }

  .moz-social-inner p {
    font-size: 12px;
  }
}


/* ---------------------------------------------------
   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
--------------------------------------------------- */
/* ---------------------------------------------------
   PDP STICKY LEFT COLUMN
--------------------------------------------------- */
/* --------------------------------------------------- PDP Layout --------------------------------------------------- */

.moz-pdp-left{
  position: sticky;
  top: 100px; /* adjust for navbar height */
  align-self: flex-start;
}

/* Prevent sticky from breaking on mobile */
@media (max-width: 991px){
  .moz-pdp-left{
    position: relative;
    top: auto;
  }
}

.moz-pdp-hero {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: visible;
  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;
  border-radius:24px;
}

/* 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{
  margin-top:40px;
}

/* ------------------------------
   Top / Bottom Config Cards
------------------------------ */

.moz-half-grid{
display:grid;
grid-template-columns:repeat(2, minmax(0,1fr));
gap:16px;
align-items:start;
}

.moz-half-card{
background:#fff;
border-radius:14px;
padding:16px;
box-shadow:0 6px 16px rgba(0,0,0,.06);
border:1px solid rgba(0,0,0,.05);
width:100%;
}

.moz-half-title{
font-size:0.9rem;
font-weight:600;
margin-bottom:12px;
color:#444;
}

.moz-half-fields{
display:flex;
flex-direction:column;
gap:12px;
}

.moz-half-field{
width:100%;
}

.moz-half-card:first-child{
border-top:3px solid #ff4b92;
}

.moz-half-card:last-child{
border-top:3px solid #00b4ff;
}

/* --------------------------------
   Active Half Highlight
-------------------------------- */

.moz-half-card{
transition: all .25s ease;
}

.moz-half-card.active-half{
border:2px solid #6c63ff;
box-shadow:0 8px 24px rgba(108,99,255,.25);
transform:scale(1.02);
}

.moz-half-title{
display:flex;
justify-content:space-between;
align-items:center;
font-size:0.95rem;
font-weight:600;
}

.moz-half-indicator{
font-size:14px;
opacity:.55;
transition:opacity .25s ease, transform .25s ease;
}

.moz-half-card.active-half .moz-half-indicator{
opacity:1;
transform:scale(1.15);
}

.moz-half-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.moz-half-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.moz-config-helper{
  font-size:.9rem;
  color:#6c757d;
  margin-top:-4px;
  margin-bottom:16px;
}

@media (max-width:768px){
.moz-half-grid{
grid-template-columns:1fr;
}
}



/* ---------------------------------------------------
   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;
  }
}


/* ---------------------------------------------------
PDP BENEFITS
--------------------------------------------------- */

.moz-pdp-benefits{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:.9rem;
}

.moz-benefit-item{
  display:flex;
  align-items:center;
  gap:8px;
  color:#555;
}

.moz-benefit-item i{
  font-size:1rem;
  color:#6b6b6b;
}




/* ---------------------------------------------------
ACCESSORIES
--------------------------------------------------- */

.moz-accessories{
margin-top:30px;
}

.moz-accessory-heading{
font-size:18px;
margin-bottom:15px;
}

.moz-accessory-card{
display:flex;
gap:20px;
padding:18px;
border:1px solid #eee;
border-radius:12px;
background:#fafafa;
}

.moz-accessory-image img{
width:110px;
border-radius:10px;
}

.moz-accessory-title{
font-size:16px;
font-weight:600;
margin-bottom:5px;
}

.moz-accessory-price{
font-weight:600;
margin-bottom:10px;
}

.moz-accessory-option{
margin-bottom:10px;
}

.moz-add-accessory{
margin-top:8px;
}

@media(max-width:768px){

.moz-accessory-card{
flex-direction:column;
}

.moz-accessory-image img{
width:100%;
max-width:220px;
}

}

/* accessory toggle */

.moz-accessory-toggle{
display:flex;
align-items:center;
gap:8px;
margin-top:8px;
font-weight:500;
cursor:pointer;
}

/* options hidden by default */

.moz-accessory-options{
display:none;
margin-top:12px;
}

/* when enabled */

.moz-accessory-card.active .moz-accessory-options{
display:block;
}


.moz-accessory-card{
cursor:pointer;
transition:.2s ease;
}

.moz-accessory-card:hover{
background:#f7f7f7;
}

/* 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;
}

.jdgm-preview-badge {
  min-height: 18px;
  font-size: 13px;
}


.moz-no-reviews{
text-align:center;
padding:40px;
}

.moz-no-reviews h3{
font-size:1.3rem;
margin-bottom:10px;
}

.moz-no-reviews button{
border-radius:999px;
padding:10px 22px;
font-weight:600;
}

.moz-review-stars{
font-size:24px;
color:#2FAFF3;
margin-bottom:10px;
}

.moz-no-reviews .moz-btn-primary{
color:#fff;
border-radius:999px;
}

.moz-no-reviews{
display:none;
text-align:center;
padding:40px;
}

.moz-bundle-total {
  font-size: 0.95rem;
}

.moz-bundle-total strong {
  font-size: 1.1rem;
  color: #28a745!important;
}
.moz-pdp-price-row {
  gap: 10px;
}

.moz-pdp-bulk-link {
  font-size: 0.9rem;
  white-space: nowrap;
}

.accordion-button i {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Premium highlight effect */
.moz-accordion-highlight {
  animation: mozHighlight 1.2s ease, mozScale 0.3s ease;
}

@keyframes mozScale {
  0% { transform: scale(0.98); }
  100% { transform: scale(1); }
}

@keyframes mozHighlight {
  0% {
    background-color: rgba(255, 0, 150, 0.15);
  }
  100% {
    background-color: transparent;
  }
}

/* --------------------------------------------------- Reviews Splide --------------------------------------------------- */

#mozReviewsSplide {
  position: relative;
  margin: 50px 0;
}

/* Give breathing room for glow */
#mozReviewsSplide .splide__track {
  overflow: visible;
  padding: 30px 0;
}

#mozReviewsSplide .splide__slide {
  padding: 10px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* --------------------------------------------------- Card --------------------------------------------------- */

.moz-quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  position: relative;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

/* Default (dim side cards) */
#mozReviewsSplide .splide__slide .moz-quote-card {
  opacity: 0.6;
  transform: scale(0.95);
}

/* --------------------------------------------------- ACTIVE (CENTER) --------------------------------------------------- */

/* This is the REAL fix */
#mozReviewsSplide .splide__slide.is-active.is-visible .moz-quote-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Glow (soft halo, not box) */
#mozReviewsSplide .splide__slide.is-active.is-visible .moz-quote-card::before {
  content: "";
  position: absolute;
  inset: -12px; /* more spread */
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 0, 150, 0.12),
    rgba(0, 123, 255, 0.12)
  );

  filter: blur(28px); /* softer glow */
  z-index: -1;
}

/* Hover (only slight lift now) */
.moz-quote-card:hover {
  transform: translateY(-3px);
}

/* --------------------------------------------------- Stars --------------------------------------------------- */

.moz-stars {
  color: #f5b50a;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* --------------------------------------------------- Arrows Outside --------------------------------------------------- */

#mozReviewsSplide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;

  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

/* LEFT */
#mozReviewsSplide .splide__arrow--prev {
  left: -60px;
}

/* RIGHT */
#mozReviewsSplide .splide__arrow--next {
  right: -60px;
}

/* Hover */
#mozReviewsSplide .splide__arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 992px) {
  #mozReviewsSplide .splide__arrow--prev {
    left: -15px;
  }

  #mozReviewsSplide .splide__arrow--next {
    right: -15px;
  }
}

/* --------------------------------------------------- Review Meta / Badges --------------------------------------------------- */

.moz-review-meta {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}

/* Base badge */
.moz-badge {
  margin-left: 6px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #f1f1f1;
  color: #555;
  display: inline-block;
}

/* Verified badge */
.moz-badge-green {
  background: #e6f7ed;
  color: #1e7e34;
  font-weight: 500;
}

/* --------------------------------------------------- Fix Mobile Horizontal Scroll --------------------------------------------------- */

/* Prevent sideways scroll globally */
body {
  overflow-x: hidden;
}

/* On mobile, contain the slider */
@media (max-width: 768px) {
  #mozReviewsSplide .splide__track {
    overflow: hidden;
  }

  #mozReviewsSplide .splide__slide {
    padding: 5px;
  }
}