body.qb {
  --qb-red: #F45B69;
  --qb-black: #111111;
  --qb-gray: #f5f5f5;
  --qb-green: #25D366;
  --qb-text: #111111;
  --qb-muted: #4b5563;

  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--qb-text);
  background: #fff;
  margin: 0;
}

.qb-site * {
  box-sizing: border-box;
}

.qb-site img {
  max-width: 100%;
  height: auto;
  display: block;
}

.qb-site a {
  text-decoration: none;
}

.qb-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
}

.qb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.qb-logo img {
  width: clamp(120px, 22vw, 200px);
  height: auto;
}

.qb-wa-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 16px;
  background: var(--qb-green);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.qb-wa-top svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.qb-hero {
  text-align: right;
  direction: rtl;
  margin-top: clamp(18px, 3vw, 28px);
}

.qb-title {
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin: 8px 0 18px;
  font-size: clamp(26px, 5.2vw, 50px);
}

.qb-lead {
  font-size: clamp(16px, 2.6vw, 22px);
  color: var(--qb-muted);
  margin-bottom: 10px;
}

.qb-list {
  margin: 22px 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: clamp(18px, 3.8vw, 28px);
  justify-items: right;
}

.qb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.qb-list .emoji {
  font-size: 1.05em;
  line-height: 1;
}

.qb-benefits {
  margin: 20px 0;
  display: grid;
  gap: 12px;
  font-size: clamp(18px, 3.6vw, 28px);
  justify-items: right;
}

.qb-benefits .row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.qb-delivery {
  margin-top: 8px;
  font-size: clamp(18px, 3.6vw, 28px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.qb-sep {
  margin: 24px auto;
  height: 1px;
  background: #eee;
  width: 100%;
}

.qb-cta-title {
  direction: rtl;
  text-align: center;
  font-weight: 800;
  margin: clamp(18px, 4vw, 28px) 0 14px;
  font-size: clamp(20px, 4.5vw, 36px);
}

/* ====== CTA BUTTONS ====== */
.qb-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.qb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  font-size: clamp(16px, 2.8vw, 20px);
  min-width: 230px;
}

.qb-btn:active {
  transform: translateY(1px);
}

.qb-btn--wa {
  background: var(--qb-green);
  color: #fff;
}

.qb-btn--wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

.qb-btn--catalog {
  background: #fff;
  color: var(--qb-black);
  border-color: #e5e7eb;
  border-style: solid;
}

.qb-btn--catalog:hover {
  background: #f9fafb;
}

@media (max-width: 480px) {
  .qb-wa-top {
    padding: 8px 12px;
  }
}