/* ================================================================
   QuikfyStore – Reseller Opportunity Box  |  reseller.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --qrb-bg-from:      #0d1f2d;
  --qrb-bg-to:        #0a2e1f;
  --qrb-profit-from:  #00c853;
  --qrb-profit-to:    #00e676;
  --qrb-accent:       #39ff14;   /* neon green */
  --qrb-gold:         #ffc107;
  --qrb-teal:         #00bfa5;
  --qrb-text:         #e8f5e9;
  --qrb-muted:        rgba(232,245,233,0.55);
  --qrb-row-bg:       rgba(255,255,255,0.06);
  --qrb-row-border:   rgba(255,255,255,0.08);
  --qrb-badge-bg:     rgba(0,200,83,0.12);
  --qrb-badge-border: rgba(0,200,83,0.30);
  --qrb-radius:       18px;
  --qrb-font-head:    'Barlow Condensed', sans-serif;
  --qrb-font-body:    'DM Sans', sans-serif;
}

/* ── Wrapper ───────────────────────────────────────────────── */
#qfr-reseller-box {
  font-family: var(--qrb-font-body);
  background: linear-gradient(145deg, var(--qrb-bg-from) 0%, var(--qrb-bg-to) 100%);
  border-radius: var(--qrb-radius);
  border: 1px solid rgba(57,255,20,0.15);
  padding: 22px 20px 18px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,200,83,0.08),
    0 12px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: qrb-appear 0.5s cubic-bezier(0.34,1.2,0.64,1) both;
}

/* Mesh glow behind the card */
#qfr-reseller-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0,230,118,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#qfr-reseller-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,191,165,0.14) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes qrb-appear {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Header ────────────────────────────────────────────────── */
.qrb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.qrb-header-icon {
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255,193,7,0.6));
}

.qrb-header-title {
  font-family: var(--qrb-font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 0 20px rgba(57,255,20,0.25);
}

/* ── Profit hero card ──────────────────────────────────────── */
.qrb-profit-card {
  background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #69f0ae 100%);
  border-radius: 14px;
  padding: 20px 16px 16px;
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,200,83,0.40),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Diagonal shine sweep */
.qrb-profit-card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: qrb-shine 3s ease-in-out infinite;
}

@keyframes qrb-shine {
  0%   { left: -80%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.qrb-profit-label {
  font-family: var(--qrb-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(0,40,10,0.75);
  margin-bottom: 6px;
}

.qrb-profit-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.qrb-currency {
  font-family: var(--qrb-font-head);
  font-size: 28px;
  font-weight: 700;
  color: #003010;
}

.qrb-profit-num {
  font-family: var(--qrb-font-head);
  font-size: 52px;
  font-weight: 800;
  color: #001a08;
  letter-spacing: -1px;
  line-height: 1;
}

.qrb-roi-badge {
  display: inline-block;
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-family: var(--qrb-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── Cost / Resale rows ────────────────────────────────────── */
.qrb-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.qrb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--qrb-row-bg);
  border: 1px solid var(--qrb-row-border);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(4px);
}

.qrb-row-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--qrb-muted);
}

.qrb-row-value {
  font-family: var(--qrb-font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ── Badges ────────────────────────────────────────────────── */
.qrb-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.qrb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--qrb-badge-bg);
  border: 1px solid var(--qrb-badge-border);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: var(--qrb-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #69f0ae;
  transition: background 0.2s, box-shadow 0.2s;
}

.qrb-badge:hover {
  background: rgba(0,200,83,0.20);
  box-shadow: 0 0 12px rgba(57,255,20,0.15);
}

.qrb-badge-icon {
  font-size: 18px;
  line-height: 1;
}

/* ── Disclaimer ────────────────────────────────────────────── */
.qrb-disclaimer {
  font-size: 11px;
  color: var(--qrb-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
