@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --saffron: #ff7a00;
  --saffron-dark: #e85f00;
  --green: #138808;
  --green-dark: #075f06;
  --navy: #063b78;
  --cream: #fffdf5;
  --ink: #102b20;
  --gold: #e2ad35;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(255,122,0,.15), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(19,136,8,.15), transparent 27%),
    #f4f0df;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.top-ribbon {
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, var(--saffron) 0 33.33%, #fff 33.33% 66.66%, var(--green) 66.66%);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.sale-banner {
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin: auto;
  padding: 20px 24px 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 52% 44%, rgba(255,255,255,.95), rgba(255,252,239,.96) 45%, rgba(246,240,213,.97)),
    #fff;
  border: 2px solid rgba(19,136,8,.25);
  box-shadow: 0 18px 55px rgba(28,46,25,.20);
}

.sale-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(150deg, rgba(255,122,0,.10), transparent 22%),
    linear-gradient(330deg, rgba(19,136,8,.12), transparent 23%);
}

.banner-header,
.main-row,
.social-panel,
.final-message,
footer {
  position: relative;
  z-index: 2;
}

.banner-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(6,59,120,.14);
}

.brand-logo {
  width: min(245px, 100%);
  max-height: 92px;
  object-fit: contain;
  display: block;
}

.independence-title {
  text-align: center;
}

.mini-title {
  font-size: clamp(9px, 1vw, 13px);
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}

.independence-title h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--saffron);
  text-shadow: 1px 2px 0 rgba(255,255,255,.8);
}

.independence-title h1 span {
  color: var(--green);
  display: inline-block;
}

.flag-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border: 1px solid rgba(6,59,120,.18);
  border-radius: 50px;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.flag-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}
.flag-dot.saffron { background: var(--saffron); }
.flag-dot.white { background: #fff; border: 1px solid #bbb; }
.flag-dot.green { background: var(--green); }

.main-row {
  margin-top: 14px;
}

.panel {
  border-radius: 19px;
  border: 1px solid rgba(6,59,120,.16);
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 25px rgba(36,54,39,.10);
  overflow: hidden;
}

.panel-ribbon {
  background: var(--saffron);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.green-ribbon {
  background: var(--green);
}

.intro-panel {
  padding-bottom: 18px;
  text-align: center;
}

.offer-heading {
  padding: 14px 15px 0;
  color: var(--navy);
}

.offer-heading small {
  display: block;
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 800;
}

.offer-heading strong {
  display: block;
  margin-top: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--ink);
}

.discount {
  display: inline-block;
  font-size: clamp(67px, 8vw, 105px);
  line-height: .82;
  font-weight: 900;
  color: var(--saffron);
  letter-spacing: -5px;
}

.discount span {
  font-size: .48em;
  vertical-align: top;
  letter-spacing: -1px;
}

.off {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--green);
  letter-spacing: 5px;
}

.no-minimum {
  width: fit-content;
  margin: 14px auto 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(19,136,8,.2);
}

.no-minimum i {
  margin-right: 5px;
}

.celebrate {
  padding: 0 20px;
  margin: 9px auto 0;
  max-width: 410px;
  font-size: 12px;
  line-height: 1.5;
  color: #43534b;
}

.celebrate strong {
  color: var(--green-dark);
}

.mini-tricolour {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mini-tricolour span {
  width: 70px;
  height: 5px;
  border-radius: 5px;
  background: var(--saffron);
}
.mini-tricolour span:last-child { background: var(--green); }
.mini-tricolour i {
  color: var(--navy);
  font-style: normal;
}

.coupon-panel {
  padding-bottom: 14px;
  background: linear-gradient(145deg, #fff, #f7f8ef);
}

.coupon-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 17px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: rgba(6,59,120,.055);
}

.coupon-top i {
  color: var(--saffron);
  font-size: 19px;
}

.coupon-card {
  margin: 17px;
  padding: 18px 15px 15px;
  border: 2px dashed var(--green);
  border-radius: 15px;
  background: #fffef5;
  text-align: center;
  box-shadow: inset 0 0 0 4px rgba(19,136,8,.035);
}

.coupon-label {
  color: var(--saffron-dark);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 900;
}

.coupon-code {
  width: 100%;
  border: 0;
  margin-top: 7px;
  padding: 12px 9px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 7px 15px rgba(19,136,8,.18);
  transition: .2s ease;
}

.coupon-code:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(19,136,8,.25);
}

.coupon-code i {
  margin-left: 7px;
  font-size: .65em;
}

.copy-message {
  padding-top: 7px;
  color: #637069;
  font-size: 10px;
  font-weight: 600;
}

.coupon-divider {
  margin: 13px 0;
  border-top: 1px solid rgba(6,59,120,.12);
}

.mandatory {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.mandatory-icon {
  position: relative;
  width: 42px;
  height: 54px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 20px;
}

.mandatory-icon span {
  position: absolute;
  right: -7px;
  top: -8px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.mandatory b {
  display: block;
  color: var(--saffron-dark);
  font-size: 11px;
  font-weight: 900;
}

.mandatory small {
  display: block;
  margin-top: 3px;
  color: #5a665f;
  font-size: 9px;
  line-height: 1.4;
}

.store-note {
  margin: 0 17px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--navy);
  background: rgba(6,59,120,.055);
  font-size: 10px;
  font-weight: 700;
}

.store-note i {
  color: var(--green);
  font-size: 16px;
}

.steps-panel {
  padding-bottom: 13px;
}

.step {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 10px 14px;
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(6,59,120,.12);
}

.step-number {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.step-number.orange { background: var(--saffron); }
.step-number.blue { background: var(--navy); }
.step-number.green { background: var(--green); }

.step b {
  display: block;
  font-size: 11px;
  color: var(--ink);
  font-weight: 900;
}

.step small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.35;
  color: #66726c;
}

.step-arrow {
  text-align: center;
  height: 7px;
  color: var(--gold);
  line-height: 7px;
  font-size: 13px;
}

.social-panel {
  border: 1px solid rgba(6,59,120,.13);
  border-radius: 16px;
  padding: 11px 14px;
  background: rgba(255,255,255,.82);
}

.social-title {
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.social-title i {
  color: var(--green);
  margin-right: 4px;
}

.social-title span {
  color: var(--saffron-dark);
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  flex: 1;
  min-width: 220px;
  display: grid;
  grid-template-columns: 28px auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 8px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
  padding: 7px 10px;
  background: #f8faf6;
  border: 1px solid rgba(6,59,120,.10);
  transition: .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.social-links a > i {
  grid-row: 1 / 3;
  font-size: 23px;
}

.social-links a:first-child > i { color: #1877f2; }
.social-links a:last-child > i { color: #d62976; }

.social-links span {
  font-size: 10px;
  font-weight: 900;
}

.social-links small {
  font-size: 8px;
  color: #748078;
}

.final-message {
  height: 100%;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #0b5d9f);
  color: white;
  text-align: center;
  box-shadow: 0 8px 20px rgba(6,59,120,.16);
}

.final-message span {
  font-size: 18px;
}

.final-message b,
.final-message strong {
  display: block;
}

.final-message b {
  font-size: 10px;
  letter-spacing: 2px;
}

.final-message strong {
  color: #fff2b5;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}

.bottom-tricolor {
  height: 7px;
  margin: 13px -24px 8px;
  background: linear-gradient(90deg, var(--saffron) 0 33.33%, #fff 33.33% 66.66%, var(--green) 66.66%);
}

footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #68736d;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 800;
}

/* Decorative elements */
.ashoka-wheel {
  position: absolute;
  color: var(--navy);
  opacity: .09;
  font-size: 115px;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.wheel-one { top: 100px; left: 7%; }
.wheel-two { right: 5%; bottom: 110px; }

.spark {
  position: absolute;
  color: var(--saffron);
  opacity: .45;
  z-index: 1;
  pointer-events: none;
}
.spark-one { top: 125px; left: 45%; font-size: 24px; }
.spark-two { top: 170px; right: 28%; color: var(--green); font-size: 19px; }
.spark-three { bottom: 95px; left: 44%; color: var(--navy); font-size: 18px; }

@media (max-width: 991.98px) {
  .sale-banner { padding: 16px 16px 10px; }
  .banner-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-area { display: flex; justify-content: center; }
  .brand-logo { width: 190px; }
  .flag-pill { justify-self: center; }
  .main-row { margin-top: 10px; }
  .final-message { min-height: 72px; }
}

@media (max-width: 575.98px) {
  .sale-banner { border-radius: 16px; }
  .independence-title h1 { font-size: 34px; }
  .discount { font-size: 80px; }
  .social-links a { min-width: 100%; }
  .bottom-tricolor { margin-left: -16px; margin-right: -16px; }
}

/* Wide screens: keeps the promotional artwork landscape instead of a tall poster. */
@media (min-width: 992px) {
  .sale-banner { min-height: 690px; }
}


/* Date restriction badge */
.date-only-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #063b78, #0b5798);
  color: #fff;
  border: 2px solid #ff7a00;
  box-shadow: 0 4px 12px rgba(6,59,120,.18);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.date-only-badge i {
  color: #ffcc19;
}

@media (max-width: 575.98px) {
  .date-only-badge {
    font-size: 9px;
    padding: 6px 11px;
    letter-spacing: .7px;
  }
}
