/* ------------------ SHOPEE AFFILIATE AD — BANNER (design import, Variation 4) ----------------- */
/* Based on Claude Design: Banner Variations.dc.html — Variation 4 (compact row, orange theme) */

.shopee-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-decoration: none;
  background: linear-gradient(120deg, #ee4d2d, #f66f47);
  border-radius: 14px;
  padding: 20px 26px;
  box-shadow: 0 6px 18px -6px rgba(238, 77, 45, 0.5);
}

.shopee-banner__label {
  position: absolute;
  top: 6px;
  right: 8px;
  z-index: 1;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  border-radius: 4px;
  padding: 1px 4px;
}

.shopee-banner__content {
  flex: 1;
  min-width: 0;
  display: block;
  text-decoration: none;
}

.shopee-banner__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.shopee-banner__desc {
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
  margin-top: 3px;
}

.shopee-banner__badge {
  display: inline-block;
  background-color: #fff;
  color: #ee4d2d;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 5px;
  margin-top: 10px;
}

.shopee-banner__images {
  flex: none;
  display: flex;
  gap: 10px;
}

.shopee-banner__img-link {
  position: relative;
  display: block;
  line-height: 0;
  border-radius: 12px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.shopee-banner__img-link:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.shopee-banner__img-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  text-align: center;
  background-color: rgba(0, 204, 102, 0.92);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 5px 6px;
  border-radius: 0 0 12px 12px;
}

.shopee-banner__img-badge--alt {
  background-color: rgba(103, 61, 230, 0.92);
}

.shopee-banner__img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.shopee-banner__cta {
  flex: none;
  background-color: #fff;
  color: #ee4d2d;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 9px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.shopee-banner__cta:hover {
  background-color: #fff0eb;
  transform: translateY(-1px);
}

@media screen and (max-width: 600px) {
  .shopee-banner {
    flex-direction: column;
    text-align: center;
  }
  .shopee-banner__images {
    justify-content: center;
  }
  .shopee-banner__cta {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}
