.dt-home-showcase {
  display: grid;
  gap: 28px;
}

.dt-home-promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--color-rausch);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.dt-home-promo-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.dt-home-chip-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.dt-home-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-sub);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.dt-home-chip small {
  color: var(--color-text-muted);
  font-size: 11px;
}

.dt-home-chip-active {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #fff;
}

.dt-home-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 44px 56px 52px;
  border-radius: 24px;
  color: #fff;
}

.dt-home-banner-istanbul {
  background: linear-gradient(135deg, #ff385c, #bd1e59);
}

.dt-home-banner-summer {
  background: linear-gradient(135deg, #ff6b00, #e84500);
}

.dt-home-banner-copy {
  max-width: 480px;
}

.dt-home-banner-eyebrow {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-home-banner h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.dt-home-banner p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.dt-home-banner-cta {
  background: #fff;
  color: var(--color-rausch);
}

.dt-home-banner-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  font-size: 88px;
}

.dt-home-banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.dt-home-banner-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.dt-home-banner-dots span.is-active {
  width: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.dt-home-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dt-home-toolbar h2 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dt-home-toolbar p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.dt-home-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dt-home-select,
.dt-home-filter-button {
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
}

.dt-home-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.dt-home-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px 20px;
}

.dt-home-product-card {
  display: grid;
  gap: 12px;
}

.dt-home-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-normal) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard);
}

.dt-home-product-card:hover .dt-home-product-media {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.dt-home-card-tone-sand {
  background: linear-gradient(135deg, #c4a888, #a08060, #e8d5b8);
}

.dt-home-card-tone-sunset {
  background: linear-gradient(135deg, #e8a87c, #c47840, #f5c8a0);
}

.dt-home-card-tone-botanic {
  background: linear-gradient(135deg, #a8c4a0, #7a9870, #c8d8c0);
}

.dt-home-card-tone-lavender {
  background: linear-gradient(135deg, #a8a8c4, #7878a8, #c8c8e0);
}

.dt-home-card-tone-ocean {
  background: linear-gradient(135deg, #88a8c4, #5880a0, #b8d0e8);
}

.dt-home-card-tone-blush {
  background: linear-gradient(135deg, #c4a8c0, #a078a0, #e8c8e0);
}

.dt-home-card-tone-stone {
  background: linear-gradient(135deg, #c0b090, #908060, #d8c8a8);
}

.dt-home-card-tone-mono {
  background: linear-gradient(135deg, #888888, #444444, #cccccc);
}

.dt-home-product-media-link,
.dt-home-product-media-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.dt-home-product-media-link img {
  object-fit: cover;
}

.dt-home-product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 52px;
}

.dt-home-card-top-left,
.dt-home-card-top-right {
  position: absolute;
  top: 10px;
  display: flex;
  align-items: start;
  gap: 6px;
}

.dt-home-card-top-left {
  left: 10px;
  flex-direction: column;
}

.dt-home-card-top-right {
  right: 10px;
}

.dt-home-badge,
.dt-home-stock-pill,
.dt-home-discount-pill,
.dt-home-viewers-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.dt-home-badge-dark {
  background: #222;
  color: #fff;
}

.dt-home-badge-rausch {
  background: var(--color-rausch);
  color: #fff;
}

.dt-home-badge-green {
  background: var(--color-green);
  color: #fff;
}

.dt-home-badge-orange,
.dt-home-stock-pill,
.dt-home-discount-pill {
  background: var(--color-orange);
  color: #fff;
}

.dt-home-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #666;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.dt-home-favorite-button-active {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-rausch);
}

.dt-home-card-add-form {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.dt-home-card-add-button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--color-rausch);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.dt-home-viewers-pill {
  position: absolute;
  bottom: 58px;
  left: 10px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-weight: 500;
}

.dt-home-card-content {
  display: grid;
  gap: 8px;
}

.dt-home-card-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.dt-home-card-title-row h3 {
  flex: 1;
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.dt-home-card-title-row h3 a {
  color: inherit;
  text-decoration: none;
}

.dt-home-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
}

.dt-home-card-rating i {
  color: var(--color-rausch);
}

.dt-home-card-rating small {
  color: var(--color-text-muted);
  font-weight: 400;
}

.dt-home-card-meta {
  color: var(--color-text-muted);
  font-size: 13px;
}

.dt-home-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dt-home-card-price-row strong {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 800;
}

.dt-home-card-price-row s {
  color: var(--color-text-muted);
  font-size: 13px;
}

.dt-home-card-price-row span {
  color: var(--color-green);
  font-size: 12px;
  font-weight: 600;
}

.dt-home-card-installment,
.dt-home-card-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.dt-home-card-installment {
  color: var(--color-text-sub);
}

.dt-home-card-urgency {
  color: var(--color-orange);
  font-weight: 600;
}

.dt-home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dt-home-trust-card {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 20px 18px;
  border-radius: 18px;
  background: var(--color-bg-light);
}

.dt-home-trust-card i {
  color: var(--color-rausch);
  font-size: 22px;
}

.dt-home-trust-card h3,
.dt-home-payment-card h3 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.dt-home-trust-card p,
.dt-home-payment-card p {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 13px;
}

.dt-home-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px 36px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
}

.dt-home-payment-card {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 0 20px;
  text-align: center;
}

.dt-home-payment-card + .dt-home-payment-card {
  border-left: 1px solid var(--color-border);
}

.dt-home-payment-card i {
  color: var(--color-rausch);
  font-size: 22px;
}

@media (max-width: 1100px) {
  .dt-home-trust-grid,
  .dt-home-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dt-home-payment-card:nth-child(3),
  .dt-home-payment-card:nth-child(4) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 900px) {
  .dt-home-banner {
    flex-direction: column;
    align-items: start;
    padding: 28px 24px 44px;
  }

  .dt-home-banner-visual {
    min-width: 0;
    font-size: 64px;
  }

  .dt-home-toolbar {
    align-items: start;
  }

  .dt-home-trust-grid,
  .dt-home-payment-grid {
    grid-template-columns: 1fr;
  }

  .dt-home-payment-card:nth-child(3),
  .dt-home-payment-card:nth-child(4) {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .dt-home-payment-card + .dt-home-payment-card {
    border-top: 1px solid var(--color-border);
    border-left: 0;
    margin-top: 18px;
    padding-top: 18px;
  }
}

@media (max-width: 575.98px) {
  .dt-home-promo-strip {
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .dt-home-chip-bar {
    margin-right: -4px;
  }

  .dt-home-toolbar-actions {
    width: 100%;
  }

  .dt-home-select,
  .dt-home-filter-button {
    width: 100%;
  }

  .dt-home-card-title-row {
    flex-direction: column;
    gap: 6px;
  }

  .dt-home-card-rating {
    align-self: flex-start;
  }

  .dt-home-payment-grid {
    padding: 20px 18px;
  }
}
