*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffede6;
  color: #333;
  line-height: 1.5;
}
.or-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.or-header {
  background: #fff;
  padding: 14px;
  text-align: center;
  border-bottom: 0.5px solid #f0e0d8;
}
.or-header-title {
  margin: 0;
  color: #ff5722;
  font-size: 20px;
  font-weight: 700;
}
.or-container {
  flex: 1;
  max-width: 440px;
  margin: 0 auto;
  padding: 14px;
  width: 100%;
}
.or-product-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}
.or-image-wrap {
  position: relative;
  margin-bottom: 14px;
}
.or-image-box {
  position: relative;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.or-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.or-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.or-badge {
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.or-badge-off {
  background: #e24b4a;
}
.or-badge-frete {
  background: #1d9e75;
}
.or-cta-btn {
  display: block;
  background: #ff5722;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.or-cta-btn:hover {
  background: #e64a19;
}
.or-product-info {
  margin-bottom: 12px;
}
.or-product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.or-countdown-box {
  background: #ffede6;
  border: 0.5px solid #ffb199;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-bottom: 12px;
}
.or-countdown-label {
  color: #ff5722;
  font-weight: 700;
  font-size: 14px;
}
.or-countdown-sub {
  color: #888;
  font-size: 12px;
  margin-top: 4px;
}
.or-trust-text {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin: 0;
}
.or-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.or-feature {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.or-feature-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.or-feature-title {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}
.or-feature-sub {
  font-size: 12px;
  color: #888;
}
.or-footer-msg {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 14px 0 28px;
  margin: 0;
}

img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}