/* ── Deal of the Hour Widget ─────────────────────────────────────── */

/* ── Wrapper ─────────────────────────────────────────────────────── */
.doth-wrap {
  --doth-accent: var(--color-button, #121212);
  --doth-accent-text: var(--color-button-text, #ffffff);
  --doth-radius: 12px;
  --doth-font: var(--font-body-family, system-ui, sans-serif);
  font-family: var(--doth-font);
  box-sizing: border-box;
  padding: 48px 20px;

  /* Fill the Shopify theme flex/grid parent container fully */
  width: 100%;
  max-width: 100%;
  min-width: 0;
  /* prevent flex item from overflowing */
  flex: 1 1 100%;
  /* stretch inside flex parent */
  align-self: stretch;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Prevent any child from blowing out the width */
.doth-widget,
.doth-card,
.doth-skeleton {
  width: 100%;
  max-width: 100%;
}

/* Grid children must declare min-width:0 or they ignore parent width */
.doth-card__header,
.doth-card__media,
.doth-card__info,
.doth-skeleton__header,
.doth-skeleton__media,
.doth-skeleton__info {
  min-width: 0;
  overflow: hidden;
}

/* All text nodes must not blow out containers */
.doth-section-title,
.doth-section-subtitle,
.doth-product-title,
.doth-product-desc,
.doth-countdown-block__digits,
.doth-inv__count,
.doth-inv__warning,
.doth-inv__sub,
.doth-price-block__new,
.doth-price-block__old,
.doth-price-block__savings,
.doth-more-info,
.doth-trust__item {
  max-width: 100%;
  word-break: break-word;
}

/* Upcoming strip — hard clip */
.doth-upcoming,
.doth-upcoming__item {
  max-width: 100%;
}

.doth-upcoming__list {
  max-width: 100%;
  overflow-x: auto;
}

/* Button must always fill its column */
.doth-btn-cart {
  width: 100%;
}

/* ── Card header — full width inside the card ────────────────────── */
.doth-card__header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 32px 22px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  background: rgba(128, 128, 128, 0.02);
}

.doth-section-title {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.15;
  color: inherit;
}

.doth-section-subtitle {
  font-size: clamp(13px, 1.8vw, 17px);
  margin: 0;
  opacity: 0.6;
  color: inherit;
}

/* ── Widget container ────────────────────────────────────────────── */
.doth-widget {
  max-width: 100%;
  margin: 0 auto;
}

/* ── Skeleton ────────────────────────────────────────────────────── */
@keyframes doth-shimmer {
  0% {
    background-position: 200% 0;
  }

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

.doth-skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--doth-radius);
  overflow: hidden;
  border: 1px solid rgba(128, 128, 128, 0.15);
}

.doth-skeleton__header {
  grid-column: 1 / -1;
  padding: 28px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.doth-skeleton__line--title {
  width: 50%;
  height: 28px;
  border-radius: 8px;
}

.doth-skeleton__line--subtitle {
  width: 65%;
  height: 14px;
}

.doth-skeleton__media {
  height: 400px;
  background: linear-gradient(90deg, rgba(128, 128, 128, 0.08) 25%, rgba(128, 128, 128, 0.15) 50%, rgba(128, 128, 128, 0.08) 75%);
  background-size: 200% 100%;
  animation: doth-shimmer 1.5s infinite linear;
}

.doth-skeleton__info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doth-skeleton__line {
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(128, 128, 128, 0.08) 25%, rgba(128, 128, 128, 0.15) 50%, rgba(128, 128, 128, 0.08) 75%);
  background-size: 200% 100%;
  animation: doth-shimmer 1.5s infinite linear;
  height: 16px;
}

.doth-skeleton__line--short {
  width: 40%;
  height: 12px;
}

.doth-skeleton__line--wide {
  width: 100%;
  height: 20px;
}

.doth-skeleton__line--medium {
  width: 65%;
}

.doth-skeleton__line--narrow {
  width: 40%;
}

.doth-skeleton__line--btn {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  margin-top: 8px;
}

/* ── Main card ───────────────────────────────────────────────────── */
.doth-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  border-radius: var(--doth-radius);
  overflow: hidden;
  border: 1px solid rgba(128, 128, 128, 0.15);
}

/* ── Media column ────────────────────────────────────────────────── */
.doth-card__media {
  position: relative;
  background: rgba(128, 128, 128, 0.06);
  min-height: 380px;
  display: flex;
  align-items: stretch;
}

.doth-card__img-link {
  display: block;
  width: 100%;
}

.doth-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.doth-card__img-link:hover .doth-card__img {
  transform: scale(1.03);
}

/* LIVE pill */
.doth-live-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.doth-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: doth-pulse 1.6s ease-in-out infinite;
}

/* ── Info column ─────────────────────────────────────────────────── */
.doth-card__info {
  position: relative;
  /* anchor for discount circle */
  padding: 56px 28px 28px 28px;
  /* top padding makes room for badge */
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(128, 128, 128, 0.03);
}

/* Discount circle badge — top-right of info column ──────────────── */
.doth-discount-circle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(239, 68, 68, 0.40);
  text-align: center;
  line-height: 1.2;
}

/* ── Countdown ───────────────────────────────────────────────────── */
.doth-countdown-block {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.doth-countdown-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  opacity: 0.55;
  margin-bottom: 6px;
}

.doth-countdown-block__digits {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: inherit;
}

/* ── Product title ───────────────────────────────────────────────── */
.doth-product-title {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  line-height: 1.35;
}

.doth-product-title:hover {
  text-decoration: underline;
}

/* ── Product description ─────────────────────────────────────────── */
.doth-product-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.6;
  opacity: 0.72;
  color: inherit;

  /* Clamp to 4 lines with fade-out */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reset common Shopify rich-text margin/padding inside description */
.doth-product-desc p {
  margin: 0 0 0.5em;
}

.doth-product-desc p:last-child {
  margin-bottom: 0;
}

.doth-product-desc ul,
.doth-product-desc ol {
  margin: 0 0 0.5em;
  padding-left: 1.4em;
}

/* ── Inventory ───────────────────────────────────────────────────── */
.doth-inv {
  background: rgba(128, 128, 128, 0.07);
  border-radius: 8px;
  padding: 12px 14px;
}

.doth-inv__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.doth-inv__count {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
}

.doth-inv__warning {
  font-size: 11px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: 0.5px;
}

.doth-inv__track {
  height: 10px;
  background: rgba(128, 128, 128, 0.18);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.doth-inv__fill:empty {
  display: block !important;
}

.doth-inv__fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #f59e0b 60%, #ef4444 100%);
  border-radius: 4px;
  transition: width 0.7s ease;
}

.doth-inv__sub {
  font-size: 11px;
  font-style: italic;
  opacity: 0.55;
}

/* ── Price block ─────────────────────────────────────────────────── */
.doth-price-block {}

.doth-price-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  opacity: 0.55;
  margin-bottom: 5px;
}

.doth-price-block__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.doth-price-block__new {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: inherit;
  line-height: 1;
}

.doth-price-block__old {
  font-size: clamp(16px, 2vw, 20px);
  text-decoration: line-through;
  opacity: 0.45;
  font-weight: 500;
}

.doth-price-block__savings {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 5px;
  letter-spacing: 0.3px;
}

/* ── Add to cart button ──────────────────────────────────────────── */
.doth-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: #121212;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}

.doth-btn-cart:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}

.doth-btn-cart:active {
  transform: translateY(0);
}

/* ── More info link ──────────────────────────────────────────────── */
.doth-more-info {
  display: block;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.doth-more-info:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── Trust badges ────────────────────────────────────────────────── */
.doth-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid rgba(128, 128, 128, 0.15);
  margin-top: auto;
}

.doth-trust__item {
  font-size: 12px;
  opacity: 0.68;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.doth-trust__check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Upcoming strip ──────────────────────────────────────────────── */
.doth-upcoming {
  margin-top: 12px;
  background: rgba(128, 128, 128, 0.04);
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: var(--doth-radius);
  overflow: hidden;
}

/* Section header */
.doth-upcoming__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(0, 0, 0);
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  color: #fff;
}

.doth-upcoming__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: var(--doth-accent);
  border-radius: 6px;
  flex-shrink: 0;
}

.doth-upcoming__header-icon svg {
  display: block;
}

.doth-upcoming__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: inherit;
  flex: 1;
}

.doth-upcoming__count-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--doth-accent-text);
  color: var(--doth-accent);
  border-radius: 20px;
  padding: 2px 8px;
  flex-shrink: 0;
}

/* List */
.doth-upcoming__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
}

/* Each row */
.doth-upcoming__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px;
  border-bottom: none;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.doth-upcoming__item:hover {
  transform: translateY(-3px);
}

.doth-upcoming__item:last-child {
  border-bottom: none;
}

/* Thumbnail */
.doth-upcoming__card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(128, 128, 128, 0.10);
  height: 300px;
  overflow: hidden;
}

.doth-upcoming__card-img img {
  width: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

/* Info area */
.doth-upcoming__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Time + discount row */
.doth-upcoming__card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 0px;
  width: 100%;
  left: 0;
}

/* Time badge */
.doth-upcoming__time {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  background: rgba(128, 128, 128, 0.13);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Product name */
.doth-upcoming__name {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
  overflow: hidden;
  margin: 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: center;
}

/* Discount pill */
.doth-upcoming__disc {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.10);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  margin-left: auto;
}

/* ── Empty state ─────────────────────────────────────────────────── */
.doth-empty {
  text-align: center;
  padding: 48px 24px;
  opacity: 0.6;
  font-size: 16px;
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: var(--doth-radius);
}

/* ── Coming soon panel ───────────────────────────────────────────── */
.doth-coming-soon {
  border: 1px solid rgba(128, 128, 128, 0.15);
  border-radius: var(--doth-radius);
  overflow: hidden;
}

.doth-coming-soon__header {
  text-align: center;
  padding: 28px 32px 22px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  background: rgba(128, 128, 128, 0.02);
}

.doth-coming-soon__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
}

.doth-coming-soon__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  opacity: 0.55;
  text-transform: uppercase;
}

.doth-coming-soon__timer {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Coming-soon deal preview card */
.doth-cs-deal__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(128, 128, 128, 0.06);
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: 10px;
  padding: 14px 20px;
  max-width: 400px;
  width: 100%;
}

.doth-cs-deal__media {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(128, 128, 128, 0.08);
}

.doth-cs-deal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doth-cs-deal__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doth-cs-deal__when {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.doth-cs-deal__date {
  font-size: 13px;
  font-weight: 700;
  background: #121212;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.3px;
}

.doth-cs-deal__time {
  font-size: 13px;
  font-weight: 700;
  background: rgba(128, 128, 128, 0.13);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.4px;
}

.doth-cs-deal__disc {
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.10);
  border-radius: 4px;
  padding: 2px 8px;
  align-self: flex-start;
}

.doth-cs-deal__name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 0.85;
}

/* ── Responsive: coming soon ─────────────────────────────────────── */
@media (max-width: 680px) {
  .doth-coming-soon__header {
    padding: 16px 14px 12px;
  }

  .doth-coming-soon__body {
    padding: 28px 16px;
    gap: 16px;
  }

  .doth-coming-soon__timer {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .doth-cs-deal__inner {
    padding: 12px 14px;
    gap: 12px;
  }

  .doth-cs-deal__media {
    width: 52px;
    height: 52px;
  }
}

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes doth-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* ── Responsive ──────────────────────────────────────────────────── */
.section-content-wrapper .shopify-block.shopify-app-block {
  width: 100%;
}

@media (max-width: 991px) {
  .doth-upcoming__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .doth-upcoming__time {
    font-size: 12px;
  }

  .doth-upcoming__disc {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .doth-upcoming__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
  }
}

/* ── Tablet (681px – 900px) ─────────────────────────────────────── */
@media (min-width: 681px) and (max-width: 900px) {
  .doth-wrap {
    padding: 32px 16px;
  }

  .doth-card__header {
    padding: 20px 24px 18px;
  }

  .doth-section-title {
    font-size: 26px;
  }

  .doth-section-subtitle {
    font-size: 14px;
  }

  .doth-card__info {
    padding: 44px 20px 20px 20px;
  }

  .doth-card__media {
    min-height: 300px;
  }

  .doth-discount-circle {
    width: 52px;
    height: 52px;
    font-size: 13px;
    top: 12px;
    right: 12px;
  }

  .doth-countdown-block__digits {
    font-size: 30px;
    letter-spacing: 2px;
  }

  .doth-price-block__new {
    font-size: 28px;
  }

  .doth-upcoming__item {
    gap: 10px;
  }

  .doth-upcoming__header {
    padding: 10px 14px;
  }
}

/* ── Mobile (≤ 680px) ────────────────────────────────────────────── */
@media (max-width: 680px) {
  .doth-wrap {
    padding: 14px 10px;
    overflow-x: hidden;
  }

  /* Single-column grid — NO display:block so JS can still hide/show via inline style */
  .doth-card,
  .doth-skeleton {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: 100%;
    overflow: hidden;
  }

  /* All grid children must have min-width:0 to prevent overflow */
  .doth-card__header,
  .doth-card__media,
  .doth-card__info,
  .doth-skeleton__header,
  .doth-skeleton__media,
  .doth-skeleton__info {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    overflow: hidden;
  }

  /* Header */
  .doth-card__header,
  .doth-skeleton__header {
    padding: 16px 14px 12px;
  }

  .doth-section-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .doth-section-subtitle {
    font-size: 12px;
  }

  /* Image */
  .doth-card__media {
    min-height: 200px;
    overflow: unset;
  }

  .doth-skeleton__media {
    height: 200px !important;
  }

  .doth-card__img-link {
    display: block;
    width: 100%;
  }

  .doth-card__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Info column — keep position:relative for discount circle */
  .doth-card__info {
    padding: 14px;
    padding-top: 52px;
    position: relative;
    gap: 12px;
  }

  /* Discount circle */
  .doth-discount-circle {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 46px;
    height: 46px;
    font-size: 11px;
  }

  /* Countdown */
  .doth-countdown-block {
    padding-bottom: 12px;
  }

  .doth-countdown-block__label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .doth-countdown-block__digits {
    font-size: 28px;
    letter-spacing: 2px;
  }

  /* Product title */
  .doth-product-title {
    font-size: 13px;
  }

  /* Description */
  .doth-product-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  /* Inventory */
  .doth-inv {
    padding: 10px 12px;
  }

  .doth-inv__count {
    font-size: 11px;
  }

  .doth-inv__warning {
    font-size: 10px;
  }

  .doth-inv__track {
    height: 8px;
  }

  .doth-inv__sub {
    font-size: 10px;
  }

  /* Price */
  .doth-price-block__label {
    font-size: 10px;
  }

  .doth-price-block__new {
    font-size: 26px;
  }

  .doth-price-block__old {
    font-size: 14px;
  }

  .doth-price-block__savings {
    font-size: 12px;
    padding: 3px 9px;
  }

  /* Button — always full width */
  .doth-btn-cart {
    display: flex;
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    box-sizing: border-box;
  }

  /* More info */
  .doth-more-info {
    font-size: 12px;
  }

  /* Trust badges */
  .doth-trust {
    gap: 5px;
    padding-top: 10px;
  }

  .doth-trust__item {
    font-size: 11px;
    gap: 5px;
  }

  /* Skeleton */
  .doth-skeleton__media {
    height: 200px !important;
  }

  .doth-skeleton__info {
    padding: 16px !important;
    gap: 10px;
  }

  /* Upcoming strip */
  .doth-upcoming {
    margin-top: 8px;
  }

  .doth-upcoming__header {
    padding: 10px 12px;
  }

  .doth-upcoming__label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .doth-upcoming__item {
    gap: 10px;
  }

  .doth-upcoming__name {
    font-size: 12px;
  }

  .doth-upcoming__time {
    font-size: 10px;
  }

  .doth-upcoming__disc {
    font-size: 10px;
    padding: 2px 5px;
  }
}

@media (max-width: 400px) {
  .doth-upcoming__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ── Very small (≤ 390px) ────────────────────────────────────────── */
@media (max-width: 390px) {
  .doth-section-title {
    font-size: 16px;
  }

  .doth-countdown-block__digits {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .doth-price-block__new {
    font-size: 22px;
  }

  .doth-discount-circle {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }
}