:root {
  --accent: #3A1F3D;
  --accent-dark: #2B142D;
  --accent-soft: #F3EAF2;

  --text: #17191f;
  --muted: #747985;
  --line: #e7e8ed;

  --surface: #ffffff;
  --page: #F9F2E7;

  --success: #17804f;
  --coupon: #FFF4EC;

  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

body {
  margin: 0;
  direction: rtl;

  background:
    radial-gradient(circle at 90% 5%, #f0efff 0, transparent 24%),
    var(--page);

  color: var(--text);
}

button,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  width: min(920px, 100%);
  margin: auto;
  padding: 22px 16px 55px;
}

.survey-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
  margin-bottom: 14px;
}

.header-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-copy strong {
  font-size: 14px;
}

.governorate,
.step-counter {
  color: var(--muted);
  font-size: 12px;
}

.progress-track {
  height: 6px;

  overflow: hidden;
  border-radius: 999px;

  background: #e4e5ea;

  margin-bottom: 22px;
}

.progress-bar {
  width: 14%;

  height: 100%;
  border-radius: 999px;

  background: var(--accent);

  transition: width .35s ease;
}

.survey-card {
  min-height: 600px;

  background: var(--surface);

  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,.035);

  box-shadow:
    0 18px 50px rgba(30, 31, 36, .07);

  padding: 42px;
}

.step {
  display: none;
  animation: stepIn .28s ease;
}

.step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HERO */

.hero {
  min-height: 460px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
  gap: 42px;
}

.hero-art svg {
  width: 100%;
  height: auto;
}

.eyebrow {
  display: inline-block;

  color: var(--accent);

  font-size: 14px;
  font-weight: 800;

  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;

  font-size: clamp(34px, 6vw, 50px);
  line-height: 1.35;

  letter-spacing: -.7px;
}

.hero p {
  margin: 18px 0 0;

  color: var(--muted);

  line-height: 1.95;
  font-size: 16px;
}

.hero p strong {
  color: var(--text);
}

.intro-points {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
  margin-top: 22px;
}

.intro-points span {
  padding: 8px 12px;

  border-radius: 999px;

  background: #f6f6f8;

  font-size: 12px;
  color: #666a74;
}


/* HEAD */

.step-head {
  margin-bottom: 32px;
}

.step-head > span {
  color: var(--accent);

  font-weight: 900;
  font-size: 14px;
}

.step-head h2 {
  margin: 7px 0 6px;

  font-size: clamp(27px, 5vw, 38px);
  line-height: 1.4;
}

.step-head p {
  margin: 0;

  color: var(--muted);
  line-height: 1.8;
}


/* FIELDS */

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 9px;
}

.field label small {
  font-size: 11px;
  font-weight: 500;

  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;

  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);

  padding: 15px 16px;

  background: #fff;
  color: var(--text);

  font-size: 15px;

  outline: none;

  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);

  box-shadow:
    0 0 0 4px rgba(99, 91, 255, .08);
}

textarea {
  resize: vertical;
}

.optional-details {
  margin-top: 4px;

  border: 1px solid var(--line);
  border-radius: 15px;

  padding: 0 15px;
}

.optional-details summary {
  cursor: pointer;

  padding: 14px 0;

  color: var(--muted);
  font-size: 13px;
}

.optional-field {
  padding-top: 5px;
}


/* QUESTIONS */

.question {
  margin-bottom: 34px;
}

.question h3 {
  margin: 0 0 6px;

  font-size: 18px;
  line-height: 1.65;
}

.helper {
  margin: 0 0 13px;

  color: var(--muted);
  font-size: 12px;
}

.choice-list,
.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.choice {
  position: relative;

  min-height: 56px;

  display: flex;
  align-items: center;

  padding: 13px 14px;

  border: 1.5px solid var(--line);
  border-radius: 14px;

  cursor: pointer;

  background: #fff;

  transition:
    border-color .15s ease,
    background .15s ease,
    transform .15s ease;
}

.choice:hover {
  transform: translateY(-1px);
  border-color: #F7B197;
}

.choice input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.choice span {
  width: 100%;
  font-size: 14px;
}

.choice:has(input:checked) {
  background: var(--accent-soft);
  border-color: var(--accent);

  color: var(--accent-dark);
  font-weight: 700;
}

.choice:has(input:checked)::before {
  content: "✓";

  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: 9px;

  border-radius: 50%;

  background: var(--accent);
  color: white;

  font-size: 11px;
}

.amount-input {
  position: relative;
}

.amount-input input {
  padding-left: 70px;
}

.amount-input span {
  position: absolute;

  left: 17px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--muted);
  font-size: 13px;
}


/* FINAL */

.final-gift {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 24px;
  padding: 17px;

  border-radius: var(--radius-lg);

  background: #faf7ed;
  border: 1px solid #eee1b9;
}

.final-gift p {
  margin: 0;

  color: #696250;
  font-size: 14px;
}

.mini-coupon {
  min-width: 90px;
  min-height: 75px;

  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 3px;

  padding: 12px;

  border-radius: 16px;

  background: var(--coupon);
}

.mini-coupon span,
.mini-coupon small {
  font-size: 10px;
}

.mini-coupon strong {
  font-size: 27px;
}


/* NAV */

.nav-actions {
  display: flex;
  gap: 12px;

  margin-top: 38px;
  padding-top: 24px;

  border-top: 1px solid var(--line);
}

.btn {
  min-height: 54px;

  border: 0;
  border-radius: 14px;

  padding: 0 28px;

  cursor: pointer;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform .15s ease,
    opacity .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn.primary {
  margin-right: auto;

  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: #f1f2f4;
  color: var(--text);
}


/* ERROR */

.validation-message {
  margin-top: 18px;

  padding: 12px 14px;

  border-radius: 12px;

  background: #fff0f0;
  color: #aa2727;

  font-size: 13px;
}


/* SUCCESS */

.success-screen {
  max-width: 600px;

  margin: auto;

  text-align: center;

  padding: 40px 0;
}

.success-icon svg {
  width: 82px;
  height: 82px;
}

.success-kicker {
  display: block;

  margin-top: 12px;

  color: var(--success);
  font-weight: 800;
  font-size: 13px;
}

.success-screen h2 {
  margin: 8px 0 7px;

  font-size: 33px;
}

.success-screen > p {
  margin: 0 auto;

  max-width: 460px;

  color: var(--muted);
  line-height: 1.9;

  font-size: 14px;
}

.coupon-result {
  position: relative;

  margin-top: 28px;

  padding: 25px;

  overflow: hidden;

  border-radius: 24px;

  background: var(--coupon);
  border: 1px solid #ebd88f;
}

.coupon-result::before,
.coupon-result::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: white;

  transform: translateY(-50%);
}

.coupon-result::before {
  right: -14px;
}

.coupon-result::after {
  left: -14px;
}

.coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 18px;
  margin-bottom: 18px;

  border-bottom: 1px dashed #d8c370;
}

.coupon-top span {
  color: #766b43;
}

.coupon-top strong {
  font-size: 25px;
}

.coupon-code {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.coupon-code strong {
  direction: ltr;

  font-size: 29px;
  letter-spacing: 1.5px;

  color: var(--accent-dark);
}

.coupon-code button {
  border: 0;

  padding: 9px 14px;

  border-radius: 10px;

  background: var(--accent);
  color: white;

  cursor: pointer;
  font-weight: 700;
}

.coupon-result small {
  display: block;

  margin-top: 15px;

  color: #81774e;
}


/* UTILITY */

.hidden {
  display: none !important;
}

footer {
  padding-top: 24px;

  text-align: center;

  color: #979aa2;

  font-size: 11px;
}


/* MOBILE */

@media (max-width: 720px) {

  .app-shell {
    padding: 14px 10px 35px;
  }

  .survey-card {
    padding: 23px 17px;

    border-radius: 23px;

    min-height: unset;
  }

  .hero {
    min-height: unset;

    grid-template-columns: 1fr;
    gap: 14px;

    text-align: center;
  }

  .hero-art {
    order: -1;

    max-width: 270px;

    margin: auto;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero p {
    font-size: 14px;
  }

  .intro-points {
    justify-content: center;
  }

  .fields,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    position: sticky;

    bottom: 0;

    margin-inline: -17px;
    padding: 14px 17px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);

    z-index: 5;
  }

  .btn {
    flex: 1;

    padding: 0 14px;
  }

  .coupon-top {
    flex-direction: column;
    gap: 5px;
  }

  .coupon-code {
    flex-direction: column;
  }

}

/* =========================================
   SURVEY VISUAL REFINEMENT
   ========================================= */

:root {
  --brand-plum: #3A1F3D;
  --brand-orange: #F9732F;
  --brand-orange-soft: #FFF0E8;
  --brand-cream: #F9F2E7;
  --brand-paper: #FFF9F5;
}

/* Cleaner neutral background */
body {
  background:
    radial-gradient(circle at 90% 0%, rgba(244,90,31,.08), transparent 26%),
    var(--brand-cream);
}

/* Header should remain generic */
.survey-header {
  min-height: 38px;
}

.header-copy {
  color: var(--brand-plum);
}

.header-copy strong {
  font-weight: 800;
}

/* Stronger progress bar */
.progress-bar {
  background: linear-gradient(
    90deg,
    var(--brand-orange),
    #FF7846
  );
}

/* Main buttons */
.btn.primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(244,90,31,.18);
}

.btn.primary:hover {
  background: #E94E16;
}

/* Question selections */
.choice:has(input:checked) {
  background: var(--brand-orange-soft);
  border-color: var(--brand-orange);
  color: var(--brand-plum);
}

.choice:has(input:checked)::before {
  background: var(--brand-orange);
}

/* Focus */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(244,90,31,.10);
}

/* Number over each section */
.step-head > span,
.eyebrow {
  color: var(--brand-orange);
}

/* Main headings */
.hero h1,
.step-head h2 {
  color: var(--brand-plum);
}

/* Make coupon the key visual element */
.hero-art {
  transform: scale(1.06);
}

.hero-art svg {
  filter: drop-shadow(0 18px 22px rgba(58,16,44,.13));
}

/* Final coupon */
.coupon-result {
  background:
    linear-gradient(
      135deg,
      #FFF5EE,
      #FFE9DB
    );

  border: 2px dashed var(--brand-orange);
  box-shadow: 0 16px 38px rgba(58,16,44,.08);
}

.coupon-top strong,
.coupon-code strong {
  color: var(--brand-plum);
}

.coupon-code button {
  background: var(--brand-orange);
}

/* Final reward before submit */
.final-gift {
  background: #FFF5EE;
  border-color: #FFD0BA;
}

.mini-coupon {
  background: var(--brand-plum);
  color: #fff;
}

.mini-coupon strong {
  color: #fff;
}

/* Less visual noise */
.intro-points span {
  background: #F7F3F0;
  color: #736B67;
}

/* Do not show an empty footer */
footer:empty {
  display: none;
}

/* Mobile coupon should stay prominent */
@media (max-width: 720px) {
  .hero-art {
    max-width: 300px;
    transform: scale(1.08);
  }

  .hero {
    gap: 8px;
  }

  .hero-copy {
    margin-top: 2px;
  }
}

/* ===== FINAL BRAND COLOR PRIORITY ===== */

:root {
  --primary-purple: #3A1F3D;
  --primary-purple-dark: #2B142D;
  --accent-orange: #F9732F;
  --cream: #F9F2E7;
  --soft-purple: #F2EAF2;
}

/* Main identity = purple */
.progress-bar,
.btn.primary,
.coupon-code button {
  background: var(--primary-purple) !important;
}

.btn.primary:hover,
.coupon-code button:hover {
  background: var(--primary-purple-dark) !important;
}

/* Headings */
.hero h1,
.step-head h2,
.header-copy strong,
.coupon-top strong,
.coupon-code strong {
  color: var(--primary-purple) !important;
}

/* Small accent only = orange */
.eyebrow,
.step-head > span {
  color: var(--accent-orange) !important;
}

/* Selected options */
.choice:has(input:checked) {
  background: var(--soft-purple) !important;
  border-color: var(--primary-purple) !important;
  color: var(--primary-purple) !important;
}

.choice:has(input:checked)::before {
  background: var(--primary-purple) !important;
}

/* Focus states */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-purple) !important;
  box-shadow: 0 0 0 4px rgba(58,31,61,.10) !important;
}

/* Page background */
body {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(58,31,61,.07),
      transparent 26%
    ),
    var(--cream) !important;
}

/* Coupon: cream + purple, orange only highlight */
.coupon-result {
  background: #FFF8F2 !important;
  border: 2px dashed var(--primary-purple) !important;
}

.mini-coupon {
  background: var(--primary-purple) !important;
}

.final-gift {
  background: #FFF7F0 !important;
  border-color: #F5C8AE !important;
}

/* Orange decorative accent */
.gift-accent,
.orange-accent {
  color: var(--accent-orange);
}


/* ===== FINAL BRAND COLOR PRIORITY ===== */

:root {
  --primary-purple: #3A1F3D;
  --primary-purple-dark: #2B142D;
  --accent-orange: #F9732F;
  --cream: #F9F2E7;
  --soft-purple: #F2EAF2;
}

/* Main identity = purple */
.progress-bar,
.btn.primary,
.coupon-code button {
  background: var(--primary-purple) !important;
}

.btn.primary:hover,
.coupon-code button:hover {
  background: var(--primary-purple-dark) !important;
}

/* Headings */
.hero h1,
.step-head h2,
.header-copy strong,
.coupon-top strong,
.coupon-code strong {
  color: var(--primary-purple) !important;
}

/* Small accent only = orange */
.eyebrow,
.step-head > span {
  color: var(--accent-orange) !important;
}

/* Selected options */
.choice:has(input:checked) {
  background: var(--soft-purple) !important;
  border-color: var(--primary-purple) !important;
  color: var(--primary-purple) !important;
}

.choice:has(input:checked)::before {
  background: var(--primary-purple) !important;
}

/* Focus states */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-purple) !important;
  box-shadow: 0 0 0 4px rgba(58,31,61,.10) !important;
}

/* Page background */
body {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(58,31,61,.07),
      transparent 26%
    ),
    var(--cream) !important;
}

/* Coupon: cream + purple, orange only highlight */
.coupon-result {
  background: #FFF8F2 !important;
  border: 2px dashed var(--primary-purple) !important;
}

.mini-coupon {
  background: var(--primary-purple) !important;
}

.final-gift {
  background: #FFF7F0 !important;
  border-color: #F5C8AE !important;
}

/* Orange decorative accent */
.gift-accent,
.orange-accent {
  color: var(--accent-orange);
}


/* =========================================
   HERO COUPON - STRONG VISUAL VERSION
   ========================================= */

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg {
  display: none;
}

.hero-art::before {
  content: "";
  position: absolute;

  width: 330px;
  height: 175px;

  background: rgba(58, 31, 61, .10);

  border-radius: 34px;

  transform:
    rotate(-6deg)
    translateY(14px);

  filter: blur(.3px);
}

.hero-art::after {
  content: "خصم\a75\aجنيه";

  white-space: pre;

  width: 310px;
  height: 165px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      #3A1F3D 0%,
      #4B2750 55%,
      #30172F 100%
    );

  border: 3px dashed rgba(249,115,47,.95);

  box-shadow:
    0 22px 45px rgba(58,31,61,.22),
    inset 0 0 0 7px rgba(255,255,255,.035);

  color: white;

  font-family: "Cairo", sans-serif;

  font-size: 19px;
  line-height: 1.12;
  font-weight: 800;

  position: relative;

  z-index: 2;

  text-shadow:
    0 2px 8px rgba(0,0,0,.18);

  animation:
    couponFloat 3.5s ease-in-out infinite;
}

/* Fake cut-outs like a real coupon */
.hero-art {
  isolation: isolate;
}

.hero-art .coupon-side {
  display: none;
}

/* Big 75 overlay */
.hero-art > span {
  display: none;
}

/* Add a giant 75 visually using separate overlay */
.hero-art {
  min-height: 240px;
}

.hero-art::selection {
  background: transparent;
}

/* Coupon number */
.hero-art {
  --coupon-orange: #F9732F;
}

/* Extra number layer */
.hero-art {
  text-indent: 0;
}

.hero-art + .hero-copy {
  position: relative;
}

/* Orange corner accent */
.hero-art::marker {
  display: none;
}

@keyframes couponFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}


/* Stronger CTA relationship */
.hero-art + .hero-copy .eyebrow {
  color: #F9732F !important;
}

.hero-art + .hero-copy h1 {
  color: #3A1F3D !important;
}


/* =========================================
   RESULT COUPON - AFTER SUBMIT
   ========================================= */

.coupon-result {
  position: relative;

  overflow: visible !important;

  padding: 30px 28px !important;

  background:
    linear-gradient(
      145deg,
      #3A1F3D 0%,
      #4A264D 100%
    ) !important;

  border:
    3px dashed #F9732F !important;

  border-radius: 26px !important;

  box-shadow:
    0 25px 50px rgba(58,31,61,.22) !important;

  color: white;
}


/* Circular ticket cuts */

.coupon-result::before,
.coupon-result::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #fff;

  transform: translateY(-50%);

  z-index: 3;
}

.coupon-result::before {
  right: -18px;
}

.coupon-result::after {
  left: -18px;
}


/* Top row */

.coupon-top {
  border-bottom:
    1px dashed rgba(255,255,255,.35) !important;

  padding-bottom: 19px !important;
  margin-bottom: 22px !important;
}

.coupon-top span {
  color:
    rgba(255,255,255,.72) !important;

  font-size: 14px;
}

.coupon-top strong {
  color: #F9732F !important;

  font-size: 34px !important;

  font-weight: 900 !important;
}


/* Promo code becomes focal point */

.coupon-code {
  flex-direction: column;
  gap: 13px !important;
}

.coupon-code strong {
  display: block;

  direction: ltr;

  color: white !important;

  background:
    rgba(255,255,255,.10);

  border:
    1px solid rgba(255,255,255,.18);

  border-radius: 16px;

  padding:
    15px 22px;

  font-size:
    clamp(27px, 7vw, 40px) !important;

  letter-spacing:
    3px !important;

  font-weight:
    900 !important;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08);
}


/* Copy button */

.coupon-code button {
  background: #F9732F !important;

  min-width: 145px;

  padding:
    11px 20px !important;

  border-radius:
    12px !important;

  font-weight:
    800 !important;

  box-shadow:
    0 9px 20px rgba(249,115,47,.24);
}


/* Bottom text */

.coupon-result small {
  color:
    rgba(255,255,255,.62) !important;

  margin-top:
    18px !important;

  font-size:
    12px;
}


/* Subtle glow behind result */

.success-screen {
  position: relative;
}

.success-screen::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 58%;

  width: 340px;
  height: 180px;

  transform:
    translate(-50%, -50%);

  background:
    rgba(249,115,47,.10);

  filter:
    blur(45px);

  z-index: -1;
}


/* MOBILE */

@media (max-width: 720px) {

  .hero-art {
    min-height: 205px;
  }

  .hero-art::before {
    width: 280px;
    height: 150px;
  }

  .hero-art::after {
    width: 270px;
    height: 145px;

    font-size: 17px;

    border-radius: 24px;
  }

  .coupon-result {
    padding:
      24px 20px !important;
  }

  .coupon-top strong {
    font-size:
      29px !important;
  }

}

/* ====================================
   HERO COUPON - REAL HTML VERSION
   ==================================== */

.hero-art::before,
.hero-art::after {
  display: none !important;
  content: none !important;
}

.hero-art {
  min-height: 270px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-coupon {
  position: relative;

  width: min(350px, 100%);
  min-height: 205px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 25px 35px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #3A1F3D 0%,
      #4D2850 60%,
      #2C142E 100%
    );

  border: 3px dashed #F9732F;

  box-shadow:
    0 24px 42px rgba(58,31,61,.25),
    13px 15px 0 rgba(58,31,61,.10);

  transform: rotate(-1deg);

  overflow: hidden;

  animation: couponFloat 3.5s ease-in-out infinite;
}

/* ticket cuts */
.hero-coupon::before,
.hero-coupon::after {
  content: "";

  position: absolute;
  top: 50%;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: #fff;

  transform: translateY(-50%);
}

.hero-coupon::before {
  right: -17px;
}

.hero-coupon::after {
  left: -17px;
}

.coupon-label {
  color: #fff;

  font-size: 20px;
  font-weight: 800;

  margin-bottom: -6px;
}

.coupon-value {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  gap: 9px;

  direction: rtl;
}

.coupon-number {
  display: block;

  color: #F9732F;

  font-size: clamp(82px, 9vw, 115px);
  line-height: 1;

  font-weight: 900;

  letter-spacing: -5px;

  text-shadow:
    0 5px 0 rgba(0,0,0,.10),
    0 10px 24px rgba(249,115,47,.22);
}

.coupon-currency {
  color: white;

  font-size: 24px;
  font-weight: 800;

  padding-bottom: 12px;
}

.coupon-note {
  margin-top: 10px;

  padding: 7px 13px;

  border-radius: 999px;

  background: rgba(255,255,255,.10);

  color: rgba(255,255,255,.82);

  font-size: 11px;
  font-weight: 600;
}

/* small orange decorative glow */
.hero-coupon::selection {
  background: transparent;
}

@keyframes couponFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-7px) rotate(.5deg);
  }
}

@media (max-width: 720px) {

  .hero-art {
    min-height: 225px !important;
  }

  .hero-coupon {
    width: 280px;
    min-height: 175px;

    padding: 20px 25px;
  }

  .coupon-number {
    font-size: 82px;
  }

  .coupon-currency {
    font-size: 19px;
    padding-bottom: 10px;
  }

  .coupon-label {
    font-size: 17px;
  }

  .coupon-note {
    font-size: 10px;
  }
}

