/* ============================
   INFO SECTIONS - Isolated styles for Thrifters & Resellers pages
   These classes are COMPLETELY INDEPENDENT from other page styles
   ============================ */

/* ---------- INFO SECTION ROW ---------- */
.info-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 60px 0;
  background: #ffffff;
  box-sizing: border-box;
}

/* Home page info sections: soft radial gradient background with animation */
.home-page .info-section {
  position: relative;
  background: linear-gradient(180deg, #e8f8f6 0%, #f0f7ff 50%, #e8f8f6 100%);
  overflow: hidden;
}

/* Reusable animated gradient: smooth continuous rotation, no keyframe cuts.
   Apply .animated-gradient-bg to any section for a seamless rotating gradient (no jumps).
   Home page info sections use it by default. */
.animated-gradient-bg::before,
.home-page .info-section::before {
  content: '';
  position: absolute;
  /* Large centered layer so when rotated it still fully covers the section */
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 70% 50% at 25% 25%, rgba(0, 255, 215, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 75%, rgba(56, 93, 245, 0.25) 0%, transparent 55%);
  /* Single smooth rotation: 0→360deg is seamless at loop, no direction changes */
  animation: gradientSmoothRotate 30s linear infinite;
}

/* Sections using the animated bg need overflow hidden and content above the layer */
.animated-gradient-bg {
  position: relative;
  overflow: hidden;
}
.animated-gradient-bg > *,
.home-page .info-section > * {
  position: relative;
  z-index: 1;
}

/* Single smooth rotation: no discrete keyframes, no direction changes, seamless loop */
@keyframes gradientSmoothRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* How 2 only: flip gradient vertically + reverse rotation direction */
.home-page #info-2::before {
  background:
    radial-gradient(ellipse 70% 50% at 25% 75%, rgba(0, 255, 215, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 25%, rgba(56, 93, 245, 0.25) 0%, transparent 55%);
  animation: gradientSmoothRotate 30s linear infinite reverse;
}

/* ---------- WASHED OUT BACKGROUND VARIANTS ---------- */
/* Light indigo background */
.bg-indigo-wash {
  background: rgba(56, 93, 245, 0.06);
}

/* Light cyan background */
.bg-cyan-wash {
  background: rgba(139, 221, 208, 0.08);
}

/* White background (default/explicit) */
.bg-white {
  background: #ffffff;
}

/* Thrifters - Fun pastel tones (legacy, use thrifters-info-bg for unified look) */
.bg-mint-wash {
  background: rgba(139, 221, 208, 0.12);
}
.bg-periwinkle-wash {
  background: rgba(86, 120, 255, 0.08);
}
.bg-teal-wash {
  background: rgba(100, 200, 190, 0.10);
}

/* Thrifters page - primary teal + purple rotating gradient (thrifters only, not index) */
.thrifters-page .thrifters-info-bg,
.thrifters-info-bg {
  position: relative;
  background: linear-gradient(180deg, #e8f8f6 0%, #f5f0ff 50%, #e8f8f6 100%);
  overflow: hidden;
}
.thrifters-page .thrifters-info-bg > *,
.thrifters-info-bg > * {
  position: relative;
  z-index: 1;
}
.thrifters-page .thrifters-info-bg::before,
.thrifters-info-bg::before {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 25% 25%, rgba(0, 199, 169, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 75%, rgba(94, 97, 255, 0.28) 0%, transparent 55%);
  animation: gradientSmoothRotate 30s linear infinite;
}
.thrifters-page #info-2.thrifters-info-bg::before,
#info-2.thrifters-info-bg::before {
  background:
    radial-gradient(ellipse 70% 50% at 25% 75%, rgba(0, 199, 169, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 25%, rgba(94, 97, 255, 0.28) 0%, transparent 55%);
  animation: gradientSmoothRotate 30s linear infinite reverse;
}

/* Resellers - Slick blue tones */
.bg-deep-blue-wash {
  background: rgba(45, 75, 180, 0.07);
}
.bg-royal-blue-wash {
  background: rgba(60, 100, 200, 0.06);
}
.bg-navy-wash {
  background: rgba(40, 65, 160, 0.08);
}
.bg-steel-blue-wash {
  background: rgba(70, 110, 190, 0.06);
}

/* ---------- INFO INNER CONTAINER ---------- */
.info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
  background: transparent;
}

/* ---------- INFO TEXT ---------- */
.info-text {
  flex: 0 0 56%;
  max-width: 56%;
}

/* ---------- INFO MEDIA ---------- */
.info-media {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
}

/* Ensure ALL .how-media containers have transparent backgrounds - no exceptions */
.how-media,
.info-section .how-media,
.home-page .info-section .how-media,
.home-page .info-inner .how-media,
.info-inner .how-media,
#info-1 .how-media,
#info-2 .how-media,
#info-3 .how-media {
  background: transparent !important;
  background-color: transparent !important;
}

/* ---------- INFO IMAGE ---------- */
.info-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Home page: consistent image height across info 1, 2, 3 */
.home-page #info-1 .img-carousel,
.home-page #info-2 .how-media,
.home-page #info-3 .how-media {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page #info-1 .img-carousel img,
.home-page #info-2 .how-img,
.home-page #info-3 .how-img {
  height: 520px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* ---------- INFO BOX (feature highlight boxes) ---------- */
.info-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 14px;
  margin-bottom: 16px;
}

/* Warning variant */
.info-box.warning {
  background: #FFF5F5;
}

/* ---------- INFO LIST ---------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.info-list li::before {
  content: "";
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background: url('images/icon-checkcircle.svg') no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Warning list styling */
.info-box.warning .info-list li {
  color: #8B0000;
}

.info-box.warning .info-list li::before {
  content: "";
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background: url('images/icon-exclamationcircle.svg') no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- BACKGROUNDS HANDLED BY bg-indigo-wash AND bg-cyan-wash CLASSES ---------- */

/* ---------- MARKETPLACE ICONS ROW ---------- */
.info-marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.info-marketplaces img {
  height: 36px;
  width: auto;
}

/* ---------- IMAGE CAROUSEL (for market value section) ---------- */
.info-carousel {
  position: relative;
  width: 100%;
  max-width: 280px;
  min-height: 300px;
}

.info-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.info-carousel img.active {
  opacity: 1;
  z-index: 2;
}

/* First image sets container height */
.info-carousel img:first-child {
  position: relative;
}

/* ---------- CHECKBOX ANIMATION CONTAINER ---------- */
.info-checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-checkbox-container .info-img {
  position: relative;
  z-index: 1;
}

.info-checkboxes-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: 5;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.info-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-checkbox-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.info-checkbox-item .checkbox-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.info-checkbox-item .checkbox-check {
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background: url('images/icon-checkcircle.svg') no-repeat center / contain;
  flex-shrink: 0;
  font-size: 0;
  overflow: hidden;
  text-indent: -9999px;
}

/* Animated state */
.info-checkbox-item.slide-in {
  opacity: 1;
  transform: translateX(120px);
}

/* Stagger delays */
.info-checkbox-item[data-index="0"] { transition-delay: 0s; }
.info-checkbox-item[data-index="1"] { transition-delay: 0.12s; }
.info-checkbox-item[data-index="2"] { transition-delay: 0.24s; }
.info-checkbox-item[data-index="3"] { transition-delay: 0.36s; }
.info-checkbox-item[data-index="4"] { transition-delay: 0.48s; }
.info-checkbox-item[data-index="5"] { transition-delay: 0.60s; }
.info-checkbox-item[data-index="6"] { transition-delay: 0.72s; }

/* ---------- POP-UP ANIMATION (reusable) ---------- */
/* Apply .pop-up to container, children get .pop-up-item */
.pop-up-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* When container has .pop-up-active, reveal children */
.pop-up-active .pop-up-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for up to 20 items */
.pop-up-item[data-index="0"] { transition-delay: 0s; }
.pop-up-item[data-index="1"] { transition-delay: 0.08s; }
.pop-up-item[data-index="2"] { transition-delay: 0.16s; }
.pop-up-item[data-index="3"] { transition-delay: 0.24s; }
.pop-up-item[data-index="4"] { transition-delay: 0.32s; }
.pop-up-item[data-index="5"] { transition-delay: 0.40s; }
.pop-up-item[data-index="6"] { transition-delay: 0.48s; }
.pop-up-item[data-index="7"] { transition-delay: 0.56s; }
.pop-up-item[data-index="8"] { transition-delay: 0.64s; }
.pop-up-item[data-index="9"] { transition-delay: 0.72s; }
.pop-up-item[data-index="10"] { transition-delay: 0.80s; }
.pop-up-item[data-index="11"] { transition-delay: 0.88s; }
.pop-up-item[data-index="12"] { transition-delay: 0.96s; }
.pop-up-item[data-index="13"] { transition-delay: 1.04s; }
.pop-up-item[data-index="14"] { transition-delay: 1.12s; }
.pop-up-item[data-index="15"] { transition-delay: 1.20s; }
.pop-up-item[data-index="16"] { transition-delay: 1.28s; }
.pop-up-item[data-index="17"] { transition-delay: 1.36s; }
.pop-up-item[data-index="18"] { transition-delay: 1.44s; }
.pop-up-item[data-index="19"] { transition-delay: 1.52s; }

/* ---------- CHECKBOX GRID (reusable row layout) ---------- */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.checkbox-grid .checkbox-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.checkbox-grid .checkbox-tag::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background: url('images/icon-checkcircle.svg') no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icon variant: Search (magnifying glass only) */
.checkbox-grid--search .checkbox-tag::before {
  content: "";
  background: transparent url('images/icon-magnifying-glass.svg') no-repeat center center;
  background-size: 16px 16px;
  border: none;
  filter: brightness(0) saturate(100%) opacity(0.65);
}

.checkbox-grid--search .checkbox-tag {
  position: relative;
  overflow: hidden;
}

.checkbox-grid--search .checkbox-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* Icon variant: Check (icon-checkcircle.svg) */
.checkbox-grid--check .checkbox-tag::before {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background: url('images/icon-checkcircle.svg') no-repeat center / contain;
  flex-shrink: 0;
}

.checkbox-grid--check .checkbox-tag {
  position: relative;
  overflow: hidden;
}

.checkbox-grid--check .checkbox-tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

@media (max-width: 880px) {
  .checkbox-grid--check .checkbox-tag::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }
  
  .checkbox-grid--check .checkbox-tag::after {
    height: 2px;
  }
}

/* Icon variant: Star (gold) */
.checkbox-grid--star .checkbox-tag::before {
  content: "★";
  background: #F59E0B;
  font-size: 12px;
}

/* Icon variant: Heart (red) */
.checkbox-grid--heart .checkbox-tag::before {
  content: "♥";
  background: #EF4444;
  font-size: 11px;
}

@media (max-width: 880px) {
  .checkbox-grid {
    gap: 10px;
  }
  
  .checkbox-grid .checkbox-tag {
    padding: 6px;
    gap: 6px;
    font-size: 12px;
  }
  
  .checkbox-grid .checkbox-tag::before {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  
  .checkbox-grid--search .checkbox-tag::before {
    background-size: 12px 12px;
  }
  
  .checkbox-grid--search .checkbox-tag::after {
    height: 2px;
  }
}

/* ==========================================================================
   USE CASE LIST SECTION
   - .use-case-section: full section wrapper (use when you want a standalone section)
   - .use-case-list: the list itself (can be used inside any container)
   ========================================================================== */

/* ---------- USE CASE SECTION (standalone section wrapper) ---------- */
.use-case-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(0, 255, 215, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 80% 80%, rgba(56, 93, 245, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.use-case-section .container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

.use-case-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.use-case-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a2e);
  margin: 0 0 12px 0;
}

.use-case-section .section-sub {
  font-size: 1.125rem;
  color: var(--text-muted, #64748b);
  margin: 0;
}

@media (max-width: 880px) {
  .use-case-section {
    padding: 60px 0;
  }
  
  .use-case-section .section-title {
    font-size: 1.5rem;
  }
  
  .use-case-section .section-sub {
    font-size: 1rem;
  }
  
  .use-case-section .section-heading {
    margin-bottom: 24px;
  }
}

/* ---------- USE CASE LIST (the list component, usable anywhere) ---------- */
.use-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* When inside a section, center the list and remove top margin */
.use-case-section .use-case-list {
  justify-content: center;
  margin-top: 0;
}

/* ==========================================================================
   USE CASE MARQUEE (animated scrolling rows)
   - Items scroll horizontally in alternating directions per row
   - Creates a zigzag visual effect
   - Auto-initializes via data-marquee attribute
   ========================================================================== */

.use-case-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  width: 100%;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.marquee-content {
  display: flex;
  gap: 12px;
  padding: 0 6px;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

/* Pause animation on hover for readability */
.use-case-marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Alternating directions */
.marquee-row:nth-child(odd) .marquee-content {
  animation-direction: normal;
}

.marquee-row:nth-child(even) .marquee-content {
  animation-direction: reverse;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 880px) {
  .use-case-marquee {
    gap: 10px;
  }
  
  .marquee-content {
    gap: 10px;
    animation-duration: 30s; /* Faster on mobile since less distance */
  }
}

/* ---------- USE CASE ITEM (standalone styling, works in list or marquee) ---------- */
.use-case-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.use-case-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Default icon (magnifying glass) */
.use-case-item::before {
  content: "";
  width: 20px;
  height: 20px;
  background: transparent url('images/icon-magnifying-glass.svg') no-repeat center center;
  background-size: 16px 16px;
  border-radius: 50%;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) opacity(0.65);
}

/* Underline accent */
.use-case-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #5E61FF) 0%, var(--accent-alt, #a855f7) 100%);
}

/* Most Scanned Items: match reseller page – purple to magenta (no yellow) */
#most-scanned {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%) !important;
}
#most-scanned::before {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 25% 25%, rgba(94, 97, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 75% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  animation: gradientSmoothRotate 28s linear infinite;
}

#most-scanned .most-scanned-stripe-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.33;
  background: repeating-linear-gradient(
    45deg,
    #5E61FF 0px,
    #a855f7 48px,
    transparent 48px,
    transparent 96px
  );
}

#most-scanned::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    #5E61FF 0px,
    #a855f7 48px,
    transparent 48px,
    transparent 96px
  );
}
#most-scanned {
  padding: 120px 0;
}

#most-scanned .container {
  position: relative;
  z-index: 1;
}

#most-scanned .section-title {
  font-size: 4rem;
  margin-bottom: 4px;
  line-height: 1.1;
}

#most-scanned .use-case-hashtag-text {
  font-size: 120px;
}

#most-scanned .section-sub {
  font-size: 1.75rem;
  line-height: 1.2;
}

@media (max-width: 880px) {
  #most-scanned {
    padding: 80px 0;
  }
  #most-scanned .section-title {
    font-size: 2.75rem;
  }
  #most-scanned .use-case-hashtag-text {
    font-size: 88px;
  }
}

#most-scanned .use-case-item::after {
  background: linear-gradient(90deg, #5E61FF 0%, #a855f7 100%);
}

@media (max-width: 880px) {
  .use-case-list {
    gap: 10px;
  }
  
  .use-case-item {
    padding: 6px 10px;
    gap: 6px;
    font-size: 12px;
  }
  
  .use-case-item::before {
    width: 16px;
    height: 16px;
    background-size: 12px 12px;
  }
  
  .use-case-item::after {
    height: 2px;
  }
}

/* ---------- OVERLAY GRAPHICS ---------- */
.info-overlay-wrap {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 70%;
  max-width: 280px;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}

.info-overlay {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 880px) {
  .info-section {
    min-height: var(--section-height-mobile, 100vh);
    padding: 48px 0;
    box-sizing: border-box;
  }
  
  .info-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
  }

  /* Normalize header/description spacing on mobile (avoid stacked default h3/p margins) */
  .info-text h3{
    margin: 0 0 8px 0;
  }
  .info-text p{
    margin-top: 0;
  }
  
  .info-text {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    order: 2;
    text-align: left;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
  }
  
  .info-media {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    background: transparent !important;
    background-color: transparent !important;
  }
  
  /* Resellers page - ensure mobile images align with content padding */
  .resellers-page .info-section .how-media {
    width: 100%;
    padding: 0 var(--container-padding);
    margin: 0;
    box-sizing: border-box;
  }
  
  /* Businesses page - same mobile image alignment */
  .businesses-page .info-section .how-media {
    width: 100%;
    padding: 0 var(--container-padding);
    margin: 0;
    box-sizing: border-box;
  }
  
  /* Ensure .how-media is transparent on mobile too */
  .info-section .how-media,
  .home-page .info-section .how-media {
    background: transparent !important;
    background-color: transparent !important;
  }
  
  .info-img {
    max-width: 200px;
    width: 70%;
  }
  
  .info-box {
    text-align: left;
  }
  
  .info-list li {
    font-size: 0.9rem;
  }
  
  .info-marketplaces {
    justify-content: flex-start;
  }
  
  .info-carousel {
    max-width: 200px;
    min-height: 240px;
  }
  
  /* Home page: consistent height on mobile */
  .home-page #info-1 .img-carousel,
  .home-page #info-2 .how-media,
  .home-page #info-3 .how-media {
    min-height: 400px;
  }
  
  .home-page #info-1 .img-carousel img,
  .home-page #info-2 .how-img,
  .home-page #info-3 .how-img {
    height: 400px;
    max-width: none;
  }
  
  /* Checkbox container mobile */
  .info-checkboxes-stack {
    gap: 6px;
  }
  
  .info-checkbox-item {
    padding: 8px 12px;
    min-width: 130px;
    transform: translateX(-60px);
  }
  
  .info-checkbox-item.slide-in {
    transform: translateX(80px);
  }
  
  .info-checkbox-item img {
    width: 22px;
    height: 22px;
  }
  
  .info-checkbox-item .checkbox-label {
    font-size: 12px;
  }
  
  .info-checkbox-item .checkbox-check {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  
  .info-overlay-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 70%;
    margin: 16px auto 0;
  }
}

/* ==========================================================================
   FORCE TRANSPARENT BACKGROUND ON ALL IMAGE CONTAINERS - NO EXCEPTIONS
   This rule must override everything else
   ========================================================================== */
.how-media,
div.how-media,
.info-section .how-media,
.info-inner .how-media,
.home-page .info-section .how-media,
.home-page .info-inner .how-media,
.info-section div.how-media,
.info-inner div.how-media,
#info-1 .how-media,
#info-2 .how-media,
#info-3 .how-media,
#info-1 div.how-media,
#info-2 div.how-media,
#info-3 div.how-media {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

