/* Collage Book — reskin the shared FAQ + Reviews widgets via their CSS vars.
   Their fallback defaults carry the Splashbook palette (purple/pink); we point
   them at the Collage Book teal/coral palette WITHOUT editing the shared
   components/faqs|reviews CSS (host pages reskin via vars). */
:root {
  --faq-title-color: #138a7c;
  --faq-heading-bg: #f2faf7;
  --faq-border: #ffe0de;
  --faq-item-bg: #eef7f4;
  --reviews-accent-alt: #138a7c;
}

* {
  box-sizing: border-box;
  font-family:
    poppins-medium,
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: -0.2px;
  -webkit-tap-highlight-color: transparent;
}

body {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  color: #111;
}

@keyframes sb-pulse-attention {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(107, 70, 193, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
  }
}

.sb-pulse-attention {
  animation: sb-pulse-attention 1.5s ease-in-out infinite;
  z-index: 100 !important;
  position: relative;
}

body.landing-funky-page:not(.upload-view) {
  background: linear-gradient(135deg, #eaf6f2 0%, #fbf8f1 50%, #e6f4ef 100%);
}

/* ── Fraunces theme variables & background ── */
:root {
  --sb-ink: #191816;
  --sb-muted: #58544a;
  --sb-line: rgba(25, 24, 22, 0.14);
  --sb-card: rgba(255, 255, 255, 0.9);
  --sb-shadow: 0 8px 22px rgba(30, 23, 15, 0.08);
  --sb-accent: #f45f3a;
  --sb-accent-deep: #ce4423;
  --sb-secondary: #0e9a7d;
}

html,
body.landing-fraunces-page {
  background: white;
  /* background: linear-gradient(135deg, #f2faf7 0%, #fbf8f1 50%, #dcefe9 100%); */
}

body.upload-view #stickyHeader {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
}

template {
  display: none !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmerAnimation {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

.shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(to right,
      #f6f7f8 0%,
      #edeef1 20%,
      #f6f7f8 40%,
      #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: shimmerAnimation 1.5s infinite linear;
}

.skeleton-base {
  display: block;
  border-radius: 12px;
}

.skeleton-text {
  width: 70%;
  height: 28px;
  border-radius: 10px;
}

.skeleton-text.short {
  width: 100%;
  height: 14px;
  border-radius: 8px;
}

.skeleton-text.price {
  width: 120px;
  height: 28px;
  border-radius: 8px;
}

.skeleton-slider {
  width: 298px;
  height: 378px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.slide-media-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 10px;
}

.sb-gallery-wrapper {
  position: relative;
}

/* ── Slider Thumbnails ── */
.sb-gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 10px 0px 10px;
}

.sb-gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

@media (max-width: 899px) {
  .sb-gallery-thumbnails {
    display: none;
  }

  .sb-ugc-row {
    padding: 0 10px 0px 10px;
  }
}

.sb-gallery-thumbnail {
  flex: 0 0 60px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  background: #f0f0f0;
  position: relative;
}

.sb-gallery-thumbnail img,
.sb-gallery-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-gallery-thumbnail.active {
  border-color: #138a7c;
}

.sb-gallery-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  font-size: 16px;
  pointer-events: none;
}

/* ── Slider video pause/play corner button ── */
.sb-video-pause-btn {
  position: absolute;
  bottom: 6px;
  right: 12px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  opacity: 0.75;
  transition: opacity 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
  line-height: 1;
}

.sb-video-pause-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.85);
}

/* ── Centered SVG play button on video poster slides ── */
.sb-slide-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
  z-index: 2;
}

/* Subtle grow when the poster is hovered */
.sb-gallery-slide:hover .sb-slide-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Dark gradient overlay behind play icon on the poster */
.sb-slide-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* ── Paused state overlay shown directly on the live video ── */
.sb-video-paused-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
}

/* ── Shimmer shown while video is buffering after click ── */
.sb-video-load-shimmer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* Spinner shown over the poster frame while the video buffers. */
.sb-video-load-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  pointer-events: none;
  z-index: 11;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

/* Draggable progress/scrubber bar, lifted just off the bottom of the video. */
.sb-video-progress {
  position: absolute;
  left: 14px;
  right: 54px; /* leave room for the pause button beside it */
  bottom: 14px;
  height: 16px;
  display: flex;
  align-items: center;
  z-index: 9;
  cursor: pointer;
  touch-action: none;
}
.sb-video-progress-track {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  pointer-events: none;
}
.sb-video-progress-fill {
  height: 100%;
  width: 0%;
  background: #ff5a5f;
  border-radius: 999px;
  transition: width 0.12s linear;
}
.sb-video-progress-knob {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: #fff;
  border: 2px solid #ff5a5f;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: left 0.12s linear;
  pointer-events: none;
}
/* Instant tracking while the user drags (no chasing). */
.sb-video-progress.is-scrubbing .sb-video-progress-fill,
.sb-video-progress.is-scrubbing .sb-video-progress-knob {
  transition: none;
}

.sb-gallery-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.sb-gallery-track {
  display: flex;
  justify-content: center;
}

.sb-gallery-track.embla-ready {
  justify-content: flex-start;
}

.sb-gallery-slide {
  flex: 0 0 300px;
  width: 300px;
  min-width: 0;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  margin-right: 8px;
  border: 1px solid lightgrey;
}

.sb-gallery-slide img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.sb-gallery-slide video {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.sb-gallery-slide .sb-image-compare-container {
  width: 100%;
  height: 100%;
}

.sb-image-compare-container {
  position: relative;
  overflow: hidden;
  --compare-range-value: 50%;
  background-color: #f5f5f5;
}





.sb-image-compare {
  position: relative;
  width: 100%;
  height: 100%;
}

.sb-before-image,
.sb-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-after-image {
  clip-path: inset(0 calc(100% - var(--compare-range-value)) 0 0);
  will-change: clip-path;
}

.sb-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-range-value);
  width: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: ew-resize;
  touch-action: none;
  z-index: 10;
  justify-content: center;
  will-change: left;
}

.sb-compare-handle-line {
  width: 3px;
  height: 100%;
  background: #fff;
}

.sb-compare-handle-circle {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-compare-handle-circle i {
  font-size: 14px;
  color: #000;
}

.sb-product-info {
  padding: 10px;
  min-height: 600px;
}

.sb-sales-badge-wrap {
  margin-bottom: 0px;
}

.sb-sales-badge {
  display: inline-block;
  padding: 3px 6px;
  font-weight: 600;
  background-color: #fff4bb;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
}

.product-title {
  font-family: poppins-bold;
  letter-spacing: -1px;
  margin: 0px;
  font-size: 30px;
}

.product-desc {
  font-size: 12px;
  color: #444;


  margin-top: 6px;
}

.sb-rating-row {
  display: flex;
  align-items: center;
  width: fit-content;
}

.sb-clickable-rating {
  cursor: pointer;
}

.sb-static-stars {
  color: #f5b400;
  font-size: 14px;
  margin-top: -2px;
}

.sb-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0px;
  min-height: 40px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
  padding-top: 2px;
}

.new-price {
  font-size: 20px;
  letter-spacing: -1px;
  font-family: poppins-bold;
}

.save-pill {
  background: #117d02;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
}

.sb-coupon-wrapper {
  position: relative;
  margin-top: 10px !important;
  margin: auto;
}

.sb-coupon-banner {
  background: #569730;
  padding: 8px 8px 8px 12px;
  display: flex;
  justify-content: space-between;
  border-radius: 12px;

  color: white;
  margin-top: 10px;
}

.sb-coupon-left {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
}

.sb-coupon-left span {
  margin: 0 5px;
}

.sb-coupon-price {
  color: white;
  font-size: 22px;
  font-family: poppins-bold;
}

.sb-coupon-button {
  color: #ffffff;
  border-radius: 11px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  transition: transform 0.15s ease;
  background-color: #306412;
}

.sb-coupon-star-shape {
  fill: white;
  fill-rule: evenodd;
  clip-rule: evenodd;
}

.sb-selection-card {
  border-radius: 14px;
  position: relative;
  border: 1px solid #ff5a5f;
  background-color: #ff5a5f14;
  padding: 1px 10px 10px 10px;
  /* background: linear-gradient(#fff7fd, #fff7fd) padding-box, linear-gradient(125deg, #ffb9e5 0%, #ee95d7 28%, #8f5abe 56%, #de73bd 82%, #ffb9e5 100%) border-box; */
  background-size: 100% 100%, 230% 230%;
  background-position: 0 0, 0% 50%;
  box-shadow: 0 1px 6px rgb(118 118 118 / 24%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.25s ease;
  animation: sb-selection-border-pan 2s linear infinite;
}

.sb-selection-card:hover,
.sb-selection-card:focus-within,
.sb-selection-card.sb-selection-card--interactive {
  transform: translateY(-2px);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(238, 149, 215, 0.2);
  animation: sb-selection-border-pan 1.15s linear infinite;
}

@keyframes sb-selection-border-pan {
  0% {
    background-position: 0 0, 0% 50%;
  }

  100% {
    background-position: 0 0, 230% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-selection-card {
    animation: none;
    transition: box-shadow 0.25s ease;
  }

  .sb-selection-card:hover,
  .sb-selection-card:focus-within,
  .sb-selection-card.sb-selection-card--interactive {
    animation: none;
  }
}

.sb-selection-card-title {
  margin-bottom: 8px;
  font-size: 12px;
  margin-top: 10px;
  color: #138a7c;
  text-transform: uppercase;
  font-family: "poppins-bold";
}

.sb-selection-card-title.sb-shipping-title {
  margin-bottom: 1px;
}

.sb-selection-card-title.card-title-pages {
  margin-bottom: 1px;
}

.sb-theme-pill-row-wrap {
  overflow-x: auto;
}

.sb-theme-pill-row {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sb-theme-pill {
  text-align: center;
  font-size: 11px;
  cursor: pointer;
  flex-shrink: 0;
}

.sb-theme-pill img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid transparent;
  object-fit: cover;
}

.sb-theme-pill.active img {
  border-color: #138a7c;
}

.sb-option-row {
  display: flex;
  gap: 5px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: -22px;
  margin-right: -22px;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
  z-index: 2;
  border-radius: 0;
}

.sb-option-row::-webkit-scrollbar {
  display: none;
}

.sb-option-pill {
  border: 1.5px solid #ddd;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background-color: white;
  color: #5a5a5a;
}

.sb-option-pill.sb-type-option-pill {
  align-items: flex-start !important;
}

.sb-pill-title {
  font-family: "poppins-medium";
}

.sb-pill-subtitle {
  font-family: "poppins-semibold";
}

.sb-option-pill.active {
  border: 1px solid #138a7c;
  color: #0b4a42;
  background-color: #ceaee938;

}

.sb-page-count {
  font-size: 11px;
}

.shipping-title {
  font-weight: 600;
  font-size: 12px;
  margin: 12px 0 8px 0;
  font-style: italic;
  color: #138a7c;
}

.sb-pincode-checker {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #d6b0f1;
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 8px;
  background-color: white;
  justify-content: space-between;
}

.sb-pincode-location-icon {
  font-size: 14px;
  padding-left: 5px;
}

#pincode-input {
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: #4b2c8a;
  background: transparent;
  width: 100%;
}

.sb-pincode-check-button {
  background: #138a7c;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.pincode-error {
  font-size: 12px;
  color: #d60000;
  margin: 4px;
  display: none;
}

.sb-shipping-options {
  display: flex;
  gap: 3px;
}

.sb-shipping-option-card {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: white;
}

.sb-shipping-option-card.selected {
  border-color: var(--shipping-color, #ff5a5f);
  background: color-mix(in srgb, var(--shipping-color, #ff5a5f) 20%, white);
}

.sb-shipping-date {
  font-family: "poppins-medium-italic";
  font-size: 12px;
}

.sb-shipping-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
}

.sb-shipping-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #138a7c;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

.faq-section,
.sb-related-section,
.sb-ugc-wrapper {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.sb-ugc-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding: 14px;
}

.sb-ugc-row::-webkit-scrollbar {
  display: none;
}

.sb-ugc-card {
  position: relative;
  flex: 0 0 calc((100% - 20px) / 3.2);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: visible;
  scroll-snap-align: center;
  cursor: pointer;
}

.sb-ugc-card img,
.sb-ugc-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.sb-ugc-card video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sb-ugc-card.is-playing video {
  opacity: 1;
}

.sb-ugc-card.is-playing img {
  opacity: 0;
}

.sb-ugc-play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.sb-ugc-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  padding: 24px;
}

.sb-ugc-modal-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: black;
  overflow: hidden;
}

.sb-ugc-modal-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sb-ugc-modal-inner video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.sb-ugc-modal-inner.video-ready video {
  opacity: 1;
}

.sb-ugc-close {
  position: absolute;
  top: 30px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: #000000;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 899px) {
  .sb-tabs-wrapper {
    margin: 20px 10px 0px;
  }
}

.sb-tabs-wrapper {
  padding: 6px;
  border-radius: 35px;
  background: #fff;
  border: 2px solid #ffb3b0;
}

.sb-tabs {
  position: relative;
  display: flex;
  background: #eef5f3;
  border-radius: 999px;
  padding: 6px;
}

.sb-tab-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc((100% - 12px) / 3);
  height: calc(100% - 12px);
  background: #138a7c;
  border-radius: 999px;
  transition: left 0.35s ease;
}

.sb-tab-button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  color: #138a7c;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.sb-tab-button.active {
  color: #fff;
}

.sb-tab-content {
  display: none;
  padding: 14px 8px 6px;
  font-size: 12px;
  line-height: 1.45;
  animation: fade 0.25s ease;
}

.sb-tab-content.active {
  display: block;
}

.sb-tab-content p {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.sb-details-indent {
  margin-left: 16px !important;
  font-size: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-item {
  background: #eef7f4;
  border: 1px solid #ffe0de;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.q-text {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.q-icon {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .q-icon {
  transform: rotate(180deg);
}

.answer-content {
  padding: 10px 16px 10px 16px;
  font-size: 12px;
  color: #3e3e3e;
  line-height: 1.5;
  opacity: 1;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.faq-item.active .answer-content .overall-rating .stars-row .rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #444;
}

.star-label {
  display: flex;
  align-items: center;
  width: 20px;
}

.star-label::after {
  content: "★";
  color: #389692;
  margin-left: 2px;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #389692;
  border-radius: 10px;
}

.bar-percent .verified-badge .view-more-btn {
  display: none;
  background: #389692;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin: 0px auto;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.sb-related-section {
  display: none;
  padding: 15px;
}

.sb-section-title {
  color: #138a7c;
  font-family: poppins-bold;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.sb-related-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.sb-related-slider::-webkit-scrollbar {
  display: none;
}

.sb-related-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.sb-related-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}

.sb-related-info {
  margin-top: 8px;
}

.sb-related-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-related-stars {
  color: #f5b400;
  font-size: 12px;
  margin-bottom: 2px;
}

.sb-related-price {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.sb-related-progress-track {
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.sb-related-progress-fill {
  height: 100%;
  background: #138a7c;
  width: 0;
  transition: width 0.1s linear;
}

#uploadView {
  margin: 0;
  padding: 0;
  background-color: #f6f6f6;
  min-height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}

#uploadView .header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

#uploadView .header-div {
  background-color: white;
  margin: 0 auto;
  display: flex;
  width: 100%;
  padding: 0px;
  justify-content: space-between;
}

#uploadView .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#uploadView .back-btn {
  cursor: pointer;
  height: 70px;
  width: 60px;
  text-align: center;
  align-content: center;
  font-size: 20px;
}

#uploadView .header-text {
  display: flex;
  flex-direction: column;
}

#uploadView .header-title {
  font-size: 18px;
  font-weight: 600;
}

#uploadView .sub-heading {
  color: #6b6b6b;
  font-size: 12px;
  margin: 0px;
}

#uploadView .sub-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c9ea12;
  font-size: 11px;
  text-align: center;
  padding: 5px 0;
  color: #000000;
  gap: 3px;
}

#uploadView .sub-header i {
  margin: 0 5px;
  font-size: 18px;
}

.upload-container-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 70px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.first-upload-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #138a7c;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  padding: 15px 20px;
  text-align: center;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 250px;
  border: none;
  font-weight: 600;
  color: white;
}

.first-upload-btn:hover {
  box-shadow: none;
  border: 1px solid #000000;
}

#buttonsArea {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  justify-items: center;
}

#landingView .sb-upload-button {
  background-color: #138a7c;
  color: white;
  padding: 15px 10px;
  display: flex;
  cursor: pointer;
  width: 100%;
  border-radius: 15px;
  font-weight: 700;
  font-size: 14px;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

#uploadView .sb-upload-button {
  background-color: black;
  color: white;
  padding: 20px 10px;
  display: flex;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  gap: 30px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  margin: 0px;
  border-radius: 0px;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.checkout-btn {
  background-color: #887ae2;
  color: white;
  padding: 20px 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  gap: 10px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  margin: 0px;
  border-radius: 0px;
}

.file-input {
  display: none;
}

.items-list {
  padding: 0 10px;
  counter-reset: page-counter 1;
}

.item-wrapper {
  margin-bottom: 10px;
  position: relative;
  padding-top: 24px;
}

.item-wrapper::before {
  counter-increment: page-counter;
  content: "Page " counter(page-counter);
  position: absolute;
  top: 0;
  left: 5px;
  width: 100%;
  font-size: 12px;
  color: #333;
  font-weight: 600;
  pointer-events: none;
}

.item-wrapper:first-child::before {
  content: "Front Cover";
  counter-increment: none;
}

.items-list.is-full .item-wrapper:last-child::before {
  content: "Back Cover" !important;
  counter-increment: none;
}

.each-item-container {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  background-color: white;
  position: relative;
  margin: 0;
  height: auto;
}

.drag-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  font-size: 20px;
  color: #888;
  padding-right: 5px;
  align-self: center;
  flex-shrink: 0;
}

.image-container {
  position: relative;
  width: 80px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
}

.each-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.image-container.shimmer .each-item-image {
  opacity: 0;
}

.image-container .each-item-image {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.progress-overlay {
  border-radius: 10px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
}

.caption-wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  background-color: #fcfcfc;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  min-height: 100px;
  overflow: hidden;
  padding: 8px;
  gap: 5px;
}

.caption-box {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #333;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  background-color: transparent;
}

.delete-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.action-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.1s;
}

.action-btn:active {
  transform: scale(0.95);
}

.btn-edit,
.btn-clear {
  background-color: #000000;
  color: white;
  font-size: 12px;
}

.btn-delete {
  background-color: transparent;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

.btn-delete:hover {
  color: #d32f2f;
}

.caption-skeleton {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-line {
  height: 10px;
  border-radius: 4px;
  background: #eee;
  width: 100%;
}

.sk-line.short {
  width: 60%;
}

.sk-shimmer {
  background: #f6f7f8;
  background-image: linear-gradient(to right,
      #f6f7f8 0%,
      #edeef1 20%,
      #f6f7f8 40%,
      #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%;
  animation: shimmerAnimation 1.5s infinite linear;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirmation-modal {
  background-color: white;
  border-radius: 10px;
  padding: 12px;
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.confirmation-modal p {
  color: #777777;
  font-size: 12px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-cancel {
  padding: 10px 20px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

.modal-confirm {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

.textarea-container {
  position: relative;
  width: 100%;
}

.textarea-container textarea {
  background-color: rgb(235, 235, 235);
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  resize: none;
  font-size: 12px;
  border: 1px solid #ddd;
}

.char-count {
  position: absolute;
  bottom: 12px;
  right: 6px;
  font-size: 12px;
  color: #555;
  padding: 2px 2px;
  border-radius: 5px;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.8);
}

.sortable-ghost {
  opacity: 0.4;
}

.sortable-chosen {
  background-color: #f9f9f9;
}

.sortable-drag {
  opacity: 0.8;
  transform: rotate(5deg);
}

.sortable-drag::before {
  opacity: 0;
}

.sortable-ghost::before {
  opacity: 1;
}

.conversion-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85) !important;
  color: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 5px solid #e9f1ef;
  border-top: 5px solid #dd5993;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

.loading span {
  display: inline-block;
  animation: blink 1.4s infinite both;
}

.loading span:nth-child(1) {
  animation-delay: 0s;
}

.loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading span:nth-child(3) {
  animation-delay: 0.4s;
}

.progress-circle-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.progress-circle-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 8;
}

.progress-circle-bar {
  fill: none;
  stroke: #00d26a;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-percent {
  font-size: 24px;
  font-weight: 700;
  font-family: poppins-bold;
}

.progress-ratio {
  font-size: 12px;
  opacity: 0.8;
}

.progress-status-text {
  text-align: center;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5;
}

.progress-subtext {
  font-size: 12px;
  color: #ccc;
  margin-top: 5px;
}

.field-error {
  color: #d32f2f;
  font-size: 11px;
  display: none;
  font-weight: 500;
  margin-left: 10px;
}

.field-error.active {
  display: block;
}

.sb-testimonial-section {
  margin: 0px 15px;
}

.input-error .sb-testimonial-section .sb-section-title {
  text-align: center;
  color: #138a7c;
  font-family: poppins-bold;
  font-style: italic;
  font-size: 18px;
  margin: 20px 0 10px 0;
}

.sb-testimonial-viewport {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
  transition: height 280ms ease;
  touch-action: pan-y;
  cursor: grab;
}

.sb-testimonial-viewport.is-dragging {
  cursor: grabbing;
}

.sb-testimonial-viewport.is-dragging .sb-testimonial-slide {
  user-select: none;
}

.sb-testimonial-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
  align-items: flex-start;
}

.sb-testimonial-slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  padding: 15px 25px;
}

.sb-testimonial-text {
  font-size: 12px;
  line-height: 1.6;
  color: #222;
}

.sb-testimonial-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.sb-testimonial-button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #d9eae6;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.sb-testimonial-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  height: 14px;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;

  width: calc((7 * 10px) + (6 * 6px));
  margin-left: auto;
  margin-right: auto;
  justify-content: flex-start;
}

.sb-testimonial-dots::-webkit-scrollbar {
  display: none;
}

.sb-testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #d0d6e8;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 0 0 auto;
}

.sb-testimonial-dot.active {
  width: 18px;
  border-radius: 10px;
  background: #138a7c;
}

.sb-testimonial-dot[data-dist="1"] {
  transform: scale(0.9);
  opacity: 0.55;
}

.sb-testimonial-dot[data-dist="2"] {
  transform: scale(0.75);
  opacity: 0.45;
}

.sb-testimonial-dot[data-dist="3"] {
  transform: scale(0.6);
  opacity: 0.35;
}

.sb-testimonial-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-testimonial-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d9eae6;
  background: #ffffff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sb-testimonial-arrow-prev {
  left: -10px;
}

.sb-testimonial-arrow-next {
  right: -10px;
}

.sb-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sb-testimonial-stars {
  color: #f5b400;
  font-size: 14px;
  letter-spacing: 1px;
}

.sb-testimonial-name {
  font-family: "poppins-semibold";
  font-size: 14px;
  color: #111;
}

@keyframes sbShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.generating-caption,
.caption-generating,
.caption-loading,
.caption-loading,
.generating-text {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.12) 50%,
      rgba(0, 0, 0, 0.06) 100%);
  background-size: 200% 100%;
  animation: sbShimmer 1.25s linear infinite;
  min-height: 14px;
}

.generating-caption span,
.caption-generating span,
.caption-loading span,
.caption-loading span,
.generating-text span {
  position: relative;
  z-index: 2;
  font-size: 12px;
  opacity: 0.75;
}

.upload-card.is-uploading img,
.upload-item.is-uploading img,
.file-card.is-uploading img,
.image-card.is-uploading img {
  filter: blur(10px);
  transform: scale(1.04);
  opacity: 0.75;
  transition:
    filter 650ms ease,
    transform 650ms ease,
    opacity 650ms ease;
}

.upload-card.is-ready img,
.upload-item.is-ready img,
.file-card.is-ready img,
.image-card.is-ready img {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  transition:
    filter 650ms ease,
    transform 650ms ease,
    opacity 650ms ease;
}

.upload-card img,
.upload-item img,
.file-card img,
.image-card img {
  transition:
    filter 650ms ease,
    transform 650ms ease,
    opacity 650ms ease;
}

.upload-progress-ring,
.circular-progress,
.progress-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}

.upload-progress-ring::before,
.circular-progress::before,
.progress-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0.85) calc(var(--p, 0) * 1%),
      rgba(0, 0, 0, 0.1) 0);
  -webkit-mask: radial-gradient(transparent 60%, black 61%);
  mask: radial-gradient(transparent 60%, black 61%);
}

.upload-progress-ring::after,
.circular-progress::after,
.progress-circle::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
}

.upload-progress-ring .progress-text,
.circular-progress .progress-text,
.progress-circle .progress-text {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}

.upload-card.is-uploading .image-wrap,
.upload-item.is-uploading .image-wrap,
.file-card.is-uploading .image-wrap,
.image-card.is-uploading .image-wrap {
  position: relative;
  overflow: hidden;
}

.upload-card.is-uploading .image-wrap::before,
.upload-item.is-uploading .image-wrap::before,
.file-card.is-uploading .image-wrap::before,
.image-card.is-uploading .image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: sbShimmer 1.2s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

body.upload-view .whatsapp-float,
body.upload-view #whatsapp-widget,
body.upload-view .wa-chat-widget,
body.upload-view a[href*="wa.me"] {
  display: none !important;
}

.caption-box.is-placeholder {
  font-style: normal !important;
  border-radius: 8px !important;
}

.caption-box.is-generating::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg,
      rgba(255, 247, 223, 0.7) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 247, 223, 0.7) 100%);
  background-size: 200% 100%;
  animation: shimmerAnimation 1.35s infinite linear;
  pointer-events: none;
  opacity: 0.7;
}

.caption-box {
  position: relative;
}

.caption-skeleton .sk-line.sk-shimmer {
  background-image: linear-gradient(90deg,
      rgba(233, 226, 255, 0.9) 0%,
      rgba(255, 247, 223, 0.95) 45%,
      rgba(233, 226, 255, 0.9) 100%) !important;
  background-size: 240% 100% !important;
  animation: shimmerAnimation 1.25s infinite linear !important;
}

.progress-overlay {
  --p: 0;
  background: rgba(0, 0, 0, 0.5) !important;
}

.progress-overlay::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, 0.95) calc(var(--p) * 1%),
      rgba(255, 255, 255, 0.25) 0);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
  -webkit-mask: radial-gradient(transparent 62%, black 63%);
  mask: radial-gradient(transparent 62%, black 63%);
}

.progress-overlay::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.progress-overlay * {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 700;
}

.image-container.converting-blur .each-item-image {
  filter: blur(10px);
  transform: scale(1.04);
  opacity: 0.75;
}

.bottom-sheet-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bottom-sheet-container.is-keyboard-active {
  transition: padding-bottom 0.3s ease;
  padding-bottom: 30vh;
}

.bottom-sheet {
  position: absolute;
  left: 0;
  right: 0;
  background: #eef6f3;
  border-radius: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
  color: #f7f7f7;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
  width: 90%;
  margin: 0 auto;
  bottom: 25px;
  max-width: 450px;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

#uploadAuthModal h1 {
  font-family: poppins-bold;
  font-size: 21px;
  margin: 12px 0px;
  text-align: center;
  color: #138a7c;
}

#uploadAuthModal p {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  color: black;
}

#uploadAuthModal input {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 12px;
  font-size: 13px;
  outline: none;
  font-family: poppins-medium;
  color: #000;
  transition: border 0.2s;
}

#uploadAuthModal input:focus {
  border-color: #138a7c;
  background: #fff;
}

.otp-button,
.otp-verify-btn {
  width: 100%;
  background: #138a7c;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(122, 74, 163, 0.3);
}

.otp-button:active,
.otp-verify-btn:active {
  transform: scale(0.98);
}

.otp-edit {
  color: #138a7c;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  border: 1px solid #138a7c;
  border-radius: 10px;
  padding: 3px 8px;
}

.otp-resend {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  margin-bottom: 0px;
}

.otp-error {
  background: #ffebeb;
  color: #d32f2f;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
  display: none;
}

.otp-info {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.login-close-center {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
}

.phone-input-section {
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.otp-card {
  padding: 8px 16px;
}

#uploadOtpPhoneText {
  color: #138a7c;
}

.upload-login-subtext {
  padding-bottom: 10px;
}

.otp-subtext {
  padding-bottom: 10px;
}

#uploadOtpInput {
  margin-bottom: 10px;
}

@keyframes captionShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.caption-box .skeleton-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border: none;
}

.caption-box .skeleton-header {
  width: 100%;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #138a7c;
  margin-bottom: 2px;

  background: linear-gradient(90deg, #eef6f3 25%, #fff1ce 50%, #eef6f3 75%);
  background-size: 200% 100%;
  animation: captionShimmer 1.5s infinite;
}

.caption-box .skeleton-line {
  width: 100%;
  height: 12px;
  border-radius: 4px;

  background: linear-gradient(90deg, #eef6f3 25%, #fff1ce 50%, #eef6f3 75%);
  background-size: 200% 100%;
  animation: captionShimmer 1.5s infinite;
}

.caption-box .skeleton-line.short {
  width: 60%;
}

#page-options-container .sb-option-pill {
  position: relative;
}

.best-seller-tag {
  position: absolute;
  top: -15px;
  background: #118c4f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

#page-options-container {
  overflow-y: visible !important;
  padding-top: 14px;
}

#page-options-container .options-row {
  overflow-y: visible !important;
}

#page-options-container .sb-option-pill {
  overflow: visible !important;
}

#theme-options-container {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 16px;
  padding-right: 16px;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#theme-options-container::-webkit-scrollbar {
  display: none;
}

.header-skeleton-wrapper {
  width: 100%;
}

.header-skeleton-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  background: white;
  height: 60px;
  position: relative;
}

.header-skeleton-hamburger {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header-skeleton-logo {
  width: 120px;
  height: 28px;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-skeleton-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-skeleton-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.header-skeleton-subheader {
  width: 100%;
  height: 34px;
  border-radius: 0;
  background: linear-gradient(102deg, #f0f9c4 0%, #edf8a0 44%, #f5fdd4 100%);
}

.theme-skeleton {
  pointer-events: none;
  opacity: 0.9;
}

.theme-skeleton-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid transparent;
}

.theme-skeleton-title {
  width: 50px;
  height: 10px;
  border-radius: 6px;
  margin: 6px auto 0 auto;
}

.pill-skeleton,
.sb-page-pill-skeleton {
  pointer-events: none;
}

.sb-pill-skeleton-line {
  width: 70px;
  height: 12px;
  border-radius: 8px;
}

.sb-pill-skeleton-line.small {
  width: 55px;
  height: 10px;
  opacity: 0.95;
}

.sb-testimonial-slider {
  position: relative;
}

.sb-coupon-code {
  font-size: 14px;
  font-family: "poppins-bold";
}

.upload-purple-space-note {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 90%;
  max-width: 340px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.9;
  pointer-events: none;
}

#uploadAuthModal .upload-login-empty-space {
  position: absolute;
  left: 0;
  right: 0;

  bottom: env(safe-area-inset-bottom);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

#uploadAuthModal .upload-auth-footer-note {
  width: 100%;
  max-width: 360px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #2f2f2f !important;
}

.upload-auth-footer-text {
  color: black;
  font-size: 11px !important;
}

.upload-auth-footer-text a {
  color: #138a7c;
  text-decoration: none;
}

.theme-thumb-skel {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sb-testimonial-date {
  display: inline-flex !important;
  align-items: center;
  color: #6f6f6f;
  font-size: 12px !important;
  white-space: nowrap;
}

.review-date {
  display: inline-flex !important;
  align-items: center;
  color: #6f6f6f;
  font-size: 11px;
  white-space: nowrap;
}

.sb-coupon-ribbon {
  border-radius: 0px 0px 4px 4px;
  background: #bf1414;
  box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 10;
  width: 25%;
  min-width: 200px;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  display: none;
}

@media screen and (min-width: 601px) {
  .sb-coupon-ribbon {
    width: 30%;
  }
}

@media screen and (max-width: 600px) {
  .sb-coupon-ribbon {
    width: 45%;
  }
}

.sb-coupon-ribbon:before,
.sb-coupon-ribbon:after {
  content: "";
  width: 6px;
  height: 8px;
  background: #920000;
  position: absolute;
  top: 0px;
  z-index: -1;
}

.sb-coupon-ribbon::before {
  left: -6px;
  border-radius: 15px 10px 0 0px;
  border-right: 5px solid #bf1414;
}

.sb-coupon-ribbon::after {
  right: -6px;
  border-radius: 15px 10px 0 0px;
  border-left: 5px solid #bf1414;
}

.sb-coupon-ribbon-text {
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 0;
  font-family: "poppins-semibold";
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */

.sb-hero-section {
  --sb-hero-side-padding: 16px;
  padding: 10px var(--sb-hero-side-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Full-bleed hero: edge-to-edge viewport width */
#landingView>.sb-hero-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sb-hero-section::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 160%;
  height: 160%;

  pointer-events: none;
}

.sb-hero-content {
  position: relative;
  z-index: 1;
}

.sb-hero-badge {
  display: inline-block;
  background: white;
  border: 1px solid #e8d5f5;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #138a7c;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(122, 74, 163, 0.08);
}

.sb-hero-title {
  font-family: poppins-bold;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #111;
  margin: 0 0 8px;
}

.sb-hero-highlight {
  color: #138a7c;
  position: relative;
}

.sb-hero-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(201, 234, 18, 0.4);
  z-index: -1;
  border-radius: 4px;
}

.sb-hero-subtitle {
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.sb-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  row-gap: 3px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  box-sizing: border-box;
}

.sb-trust-item {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.sb-trust-icon {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 2;
}

.sb-trust-divider {
  color: #ccc;
  font-size: 11px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   THEME SECTION (Categorized Grid)
   ═══════════════════════════════════════════════ */



.sb-theme-selector-title {
  font-family: poppins-bold;
  font-size: 20px;
  color: #111;
  text-align: center;
  margin: 0 0 12px;
  padding: 0 10px;
  letter-spacing: -0.5px;
}

.sb-theme-category-list {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0px 10px 0px 10px;
}

.sb-theme-category-list::-webkit-scrollbar {
  display: none;
}

.sb-theme-category-button {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #e0e0e0;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family:
    poppins-medium,
    system-ui,
    -apple-system,
    sans-serif;
}

.sb-theme-category-button:active {
  transform: scale(0.96);
}

.sb-theme-category-button.active {
  background: #138a7c;
  color: white;
  border-color: #138a7c;
  box-shadow: 0 2px 8px rgba(122, 74, 163, 0.25);
}

.sb-theme-card-grid {
  display: flex;
  padding: 20px 10px 0px 10px;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sb-theme-card-grid::-webkit-scrollbar {
  display: none;
}

.sb-theme-card-skeleton {
  flex: 0 0 80px;
  min-width: 0;
  text-align: center;
}

.sb-theme-card-skeleton-img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin: 0 auto;
}

.sb-theme-card-skeleton-title {
  width: 50px;
  height: 10px;
  border-radius: 6px;
  margin: 6px auto 0;
}

.sb-category-skeleton {
  width: 80px;
  height: 32px;
  border-radius: 20px;
  flex-shrink: 0;
}

.sb-type-pill-skeleton {
  pointer-events: none;
}

.sb-theme-option-card {
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
  position: relative;
  animation: fadeInCard 0.3s ease both;
  flex: 0 0 76px;
  min-width: 0;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sb-theme-option-card:active {
  transform: scale(0.95);
}

.sb-theme-option-card.active {
  border: none;
  background: transparent;
  box-shadow: none;
}

.sb-theme-option-image-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  overflow: hidden;
  background: #f0f0f0;
  margin: 0 auto;
  border-radius: 18px;

  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.sb-theme-option-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sb-theme-option-card:active .sb-theme-option-image-wrap img {
  transform: scale(1.05);
}

.sb-theme-option-card.active .sb-theme-option-image-wrap {
  border: 2px solid #138a7c;
  box-shadow: 0 4px 12px rgba(122, 74, 163, 0.25);
}

.sb-theme-option-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  color: white;
  display: none;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.sb-theme-option-badge.badge-popular {
  display: block;
  background: #e84393;
}

.sb-theme-option-badge.badge-new {
  display: block;
  background: #00b894;
}

.sb-theme-option-badge.badge-seasonal {
  display: block;
  background: #fdcb6e;
  color: #2d3436;
}

.sb-theme-option-info {
  padding: 5px 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.sb-theme-option-title {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  color: #333;
  display: block;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  padding-top: 4px;
}

.sb-theme-option-card.active .sb-theme-option-title {
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   STICKY CTA BAR
   ═══════════════════════════════════════════════ */

.sb-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sb-sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sb-sticky-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: white;
}

.sb-sticky-delivery-row {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  background: #c9ea12;
  padding: 5px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

.sb-sticky-cta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-sticky-cta-theme {
  font-size: 12px;
  font-weight: 600;
}

.sb-sticky-cta-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sticky-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  margin-top: 3px;
}

.sticky-base-price {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.sb-sticky-coupon-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}

.sticky-new-price {
  font-family: poppins-bold;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #138a7c;
}

.sticky-coupon-label {
  font-size: 10px;
  color: #138a7c;
  font-weight: 700;
  background: #e4f3ef;
  padding: 2px 5px;
  border-radius: 5px;
}

.sb-sticky-save-pill {
  background: #c9ea12;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

.sb-sticky-cta-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: #138a7c;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  box-shadow: 0 4px 14px rgba(122, 74, 163, 0.3);
  font-family:
    poppins-medium,
    system-ui,
    -apple-system,
    sans-serif;
}

.sb-sticky-cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(122, 74, 163, 0.3);
}

.sb-sticky-cta-button svg {
  flex-shrink: 0;
}

/* Adjust footer padding when sticky CTA is visible */
#landingView {
  padding-bottom: 0px;
}

/* ═══════════════════════════════════════════════
   DESKTOP LAYOUT (≥ 900px) – Shopify-style
   Product images on left (sticky) • Product info on right
   ═══════════════════════════════════════════════ */
@media (min-width: 900px) {

  /* ── Base ── */
  body {
    max-width: none !important;
  }

  .sb-theme-selector {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px 15px;
  }

  /* ── Landing View: fixed slider column + flexible right content ── */
  #landingView {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr;
    gap: 0 35px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 0;
  }

  /* Prevent grid children with horizontal scrollers from expanding tracks */
  #landingView>* {
    min-width: 0;
  }

  /* Hero is mobile-only in the desktop UX */
  #landingView>.sb-hero-section {
    display: none;
  }

  /* Left column wrapper: defines sticky boundary through infoTabs row */
  #landingView>.sb-product-images {
    grid-column: 1;
    grid-row: 1 / 5;
  }

  /* Sticky only inside left column boundary */
  #landingView>.sb-product-images>.sb-gallery-wrapper {
    position: sticky;
    top: 130px;
    width: 100%;
  }

  /* Thumbnails below slider – inherits left column from parent sb-gallery-wrapper */
  .sb-gallery-thumbnails {
    padding: 8px 0 0 0;
  }

  /* Right column: Product info */
  #landingView>.sb-product-info {
    grid-column: 2;
    grid-row: 1;
  }

  /* Right-column sections (under product info) */
  #landingView>#ugcMount {
    grid-column: 2;
    grid-row: 2;
    padding: 10px 0px;
  }

  #landingView>.sb-testimonial-section {
    grid-column: 2;
    grid-row: 3;
    margin-bottom: 20px;
  }

  #landingView>.sb-ugc-modal {
    grid-column: 1 / -1;
  }

  .sb-ugc-card {
    flex: 0 0 calc((100% - 30px) / 4);
  }

  #landingView>#infoTabsMount {
    grid-column: 2;
    grid-row: 4;
  }

  /* Full-width sections below the product area */
  #landingView>.faq-section,
  #landingView>#reviewsMount,
  #landingView>.scrapbook-reviews,
  #landingView>#scrapbook-reviews,
  #landingView>.sb-related-section {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
  }

  /* Splashbook reviews: 4-up grid (other products keep the 3 default) */
  #landingView #reviewsMount .reviews-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* ── Image Slider: 3-up peek layout (same as mobile) ── */
  .sb-gallery-wrapper {
    overflow: hidden;
    /* Clips the peeking side slides */
  }

  .sb-gallery-viewport {
    width: 100%;
    border-radius: 0;
    overflow: visible;
    /* Let Embla track extend beyond the viewport edges */
  }

  .sb-gallery-slide {
    flex: 0 0 calc(50% - 5px);
    /* 2 full slides visible, 10px gap between them */
    width: calc(50% - 5px);
    height: auto;
    aspect-ratio: 3 / 4;
    margin-right: 10px;
    border-radius: 14px;
  }

  .sb-gallery-slide img,
  .sb-gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sb-gallery-slide .sb-image-compare-container {
    width: 100%;
    height: 100%;
  }

  .sb-gallery-slide .sb-before-image,
  .sb-gallery-slide .sb-after-image {
    object-fit: cover;
  }

  .skeleton-slider {
    width: calc(50% - 5px) !important;
    height: auto !important;
    aspect-ratio: 3 / 4;
  }

  /* ── Desktop header skeleton ── */
  .header-skeleton-wrapper {
    max-width: 1400px;
    margin: 6px auto 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .header-skeleton-logo {
    position: static;
    transform: none;
  }

  .header-skeleton-main {
    border-radius: 20px 20px 0 0;
  }

  .header-skeleton-subheader {
    border-radius: 0 0 20px 20px;
  }

  .sb-theme-category-list {
    padding: 0;
    flex-wrap: nowrap;
    justify-content: safe center;
  }

  .sb-theme-card-grid {
    margin-top: 10px;
    padding: 10px 0 0 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: space-between
  }

  /* Reset full-viewport-width margins that are used on mobile */
  #theme-options-container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* ── Product Section ── */
  .sb-product-info {
    padding: 0px;
  }

  .product-title {
    font-size: 40px;
    margin-top: -5px;
  }

  /* Reset negative-margin bleed on option rows inside right column */
  .sb-option-row {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .sb-selection-card {
    border-radius: 14px;
  }

  .sb-coupon-banner {
    border-radius: 12px;
  }

  #landingView .sb-upload-button {
    border-radius: 15px;
    font-size: 15px;
    padding: 16px 10px;
  }

  /* ── UGC Section ── */
  .sb-ugc-card {
    flex: 0 0 calc((100% - 30px) / 4);
  }

  /* .sb-ugc-row {
    padding: 0 24px;
  } */

  /* ── Testimonial Section ── */
  .sb-testimonial-section {
    width: 100%;
    margin: 0;
  }

  /* ── Info Tabs ── */
  #infoTabsMount {
    width: 100%;
  }

  /* ── FAQs ── */
  #landingView>.faq-section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* ── Sticky CTA: hidden on desktop ── */
  .sb-sticky-cta {
    display: none !important;
  }

  /* ── Related Products ── */
  .sb-related-section {
    padding: 15px 24px;
  }

  .sb-related-card {
    flex: 0 0 200px;
  }
}

#rating-text-new {
  margin-bottom: 1px;
}

.sb-initially-hidden {
  display: none;
}

.sb-sold-badge-copy {
  margin: 0;
  font-size: 12px;
}

.sb-rating-row-spacing {
  margin-top: 2px;
}

.sb-rating-text-link {
  text-decoration: underline;
  margin-left: 5px;
  font-size: 13px;
}

.sb-rating-text-skeleton {
  width: 110px;
  height: 14px;
  border-radius: 8px;
  margin-left: 5px;
}

.product-desc-skeleton {
  width: 100%;
  height: 37px;
  border-radius: 10px;
  margin-top: 6px;
}

.sb-coupon-star-icon {
  width: 20px;
  height: 20px;
}

.sb-coupon-price-row {
  display: flex;
  align-items: center;
  letter-spacing: -0.3px;
}

.sb-coupon-copy {
  margin: 0;
  font-size: 14px;
}

.sb-coupon-price-skeleton {
  width: 65px;
  height: 20px;
  border-radius: 8px;
  display: inline-block;
}

.sb-coupon-code-shell {
  display: inline-block;
  height: 20px;
}

.sb-coupon-code-skeleton {
  width: 75px;
  height: 20px;
  border-radius: 8px;
  display: inline-block;
}

.new-price-skeleton {
  width: 140px;
  height: 35px;
  border-radius: 8px;
}

.old-price-skeleton {
  width: 55px;
  height: 18px;
  border-radius: 6px;
}

.sb-pincode-input-wrap {
  display: flex;
  width: 100%;
}

.sb-assurance-row {
  margin-top: 5px;
  text-align: center;
  font-size: 11px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* payment-split note paired with the sticky price */
.sb-sticky-reassure {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  color: #2e7d32;
  line-height: 1.2;
}

.sb-page-price-text {
  font-size: 16px;
  font-family: poppins-bold;
}

.sb-sticky-old-price-muted {
  text-decoration: line-through;
  color: #aaa;
  font-size: 12px;
}