/* ============================================
  Eid T1: Festive Eid template (4 sections)
  Focus: decorated cards + festive fonts + hanging moons/stars
============================================ */

body {
  --eid-bg-1: #060815;
  --eid-bg-2: #0d1535;
  --eid-gold: #f7d77a;
  --eid-gold-2: #e7b85a;
  --eid-ink: rgba(255, 255, 255, 0.92);
  --eid-ink-dim: rgba(255, 255, 255, 0.75);
  --eid-card: rgba(10, 14, 35, 0.72);
  --eid-card-2: rgba(20, 18, 48, 0.62);
  --eid-border: rgba(247, 215, 122, 0.42);
  --eid-border-2: rgba(255, 255, 255, 0.10);
  --eid-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --eid-font: 'El Messiri', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --eid-display: 'Cinzel Decorative', 'El Messiri', serif;
  --eid-script: 'Great Vibes', cursive;
  --eid-ar: 'Amiri', serif;

  position: fixed;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: var(--eid-font);
  color: var(--eid-ink);
  background: radial-gradient(1200px 800px at 50% 20%, rgba(252,226,140,0.25), transparent 60%),
              radial-gradient(900px 700px at 10% 90%, rgba(93,176,255,0.10), transparent 55%),
              linear-gradient(180deg, var(--eid-bg-1), var(--eid-bg-2));
  -webkit-tap-highlight-color: transparent;
}

/* ---- Mute button (top right) ---- */
.eid-mute-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 50;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--eid-border);
  border-radius: 50%;
  background: var(--eid-card);
  color: var(--eid-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--eid-shadow);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.eid-mute-btn:hover {
  background: var(--eid-card-2);
  transform: scale(1.06);
}
.eid-mute-btn:active {
  transform: scale(0.98);
}
.eid-mute-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.eid-mute-btn .eid-mute-icon.eid-hidden {
  display: none;
}

/* ---- Background & global decorations ---- */
.eid-cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}

.eid-cursor-star {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star {
  opacity: 0.9;
}

.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star:nth-child(2) { opacity: 0.75; }
.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star:nth-child(3) { opacity: 0.6; }
.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star:nth-child(4) { opacity: 0.5; }
.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star:nth-child(5) { opacity: 0.4; }
.eid-cursor-trail.eid-cursor-trail-active .eid-cursor-star:nth-child(6) { opacity: 0.35; }

.eid-cursor-trail.eid-cursor-trail-idle .eid-cursor-star {
  opacity: 0 !important;
}
.eid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.eid-bg-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(2px 2px at 80% 25%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 65%, rgba(255,255,255,0.75), transparent 60%);
  opacity: 0.55;
  filter: blur(0.2px);
}

.eid-bg-mosque {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.eid-bg-mosque img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 45vh;
  object-fit: cover;
  object-position: center bottom;
  filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.6));
  opacity: 0.95;
}

.eid-bg-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 25%, rgba(252,226,140,0.35), transparent 55%);
  animation: eidGlow 10s ease-in-out infinite;
}

@keyframes eidGlow {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.85; }
  50% { transform: translate3d(0,-1.2%,0) scale(1.03); opacity: 1; }
}

.eid-hanging {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 0;
  opacity: 0.95;
}

.eid-hang-item {
  position: relative;
  width: 80px;
  height: 120px;
  transform-origin: top center;
  animation: eidSway 4.6s ease-in-out infinite;
}

.eid-hang-item:nth-child(2) { animation-duration: 5.4s; animation-delay: -1s; }
.eid-hang-item:nth-child(3) { animation-duration: 4.9s; animation-delay: -2.2s; }
.eid-hang-item:nth-child(4) { animation-duration: 6.1s; animation-delay: -3.1s; }

@keyframes eidSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3.5deg); }
}

.eid-hang-string {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 70px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(247,215,122,0.85), rgba(255,255,255,0.08));
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(247,215,122,0.15);
}

/* Longer ropes for first & third hangers */
.eid-hang-left .eid-hang-string,
.eid-hang-right .eid-hang-string {
  height: 90px;
}

.eid-hang-left .eid-hang-orn,
.eid-hang-right .eid-hang-orn {
  top: 78px;
}

.eid-hang-orn {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.eid-float {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ---- Pages ---- */
.eid-pages {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}

.eid-page {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  pointer-events: none;
  transition: opacity 450ms ease, transform 450ms ease;
}

.eid-page.eid-page-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ---- Buttons ---- */
.eid-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 220ms ease, opacity 220ms ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  color: rgba(10, 10, 20, 0.96);
}

.eid-btn-main {
  font-family: var(--eid-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eid-btn:active { transform: translateY(1px) scale(0.99); }

.eid-btn-primary {
  background: linear-gradient(135deg, var(--eid-gold), var(--eid-gold-2));
}

.eid-btn-secondary {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,215,122,0.8));
}

.eid-btn:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.eid-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(6px) scale(0.98) !important;
}

/* ---- Section 1: Landing ---- */
.eid-landing {
  width: min(680px, calc(100% - 40px));
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
  padding-top: 18px;
}

.eid-title-wrap {
  width: 100%;
  padding: 22px 20px 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10,14,35,0.35), rgba(10,14,35,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.eid-title {
  margin: 0;
  font-family: var(--eid-display);
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 16px 44px rgba(0,0,0,0.5);
}

.eid-title .eid-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: eidLetterIn 640ms cubic-bezier(0.18, 0.9, 0.22, 1) forwards;
}

@keyframes eidLetterIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eid-arabic {
  margin: 10px 0 0;
  font-family: var(--eid-ar);
  font-size: clamp(1.25rem, 4.2vw, 2rem);
  color: rgba(247,215,122,0.96);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.eid-arabic.eid-show {
  opacity: 1;
  transform: translateY(0);
}

.eid-arabic-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(4px);
}

.eid-arabic.eid-show .eid-arabic-word {
  animation: eidArabicWord 320ms ease forwards;
}

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

.eid-from {
  margin: 10px 0 0;
  font-family: var(--eid-script);
  font-size: clamp(1.3rem, 3.6vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.eid-from.eid-from-show {
  opacity: 1;
  transform: translateY(0);
}

.eid-subhint {
  margin: 14px 0 0;
  color: var(--eid-ink-dim);
  font-size: 0.98rem;
}

/* ---- Decorated cards (sections 2-4) ---- */
.eid-card-shell {
  width: min(760px, calc(100% - 40px));
  padding-top: 40px;
}

.eid-card {
  position: relative;
  width: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--eid-card), var(--eid-card-2));
  border: 1px solid var(--eid-border-2);
  box-shadow: var(--eid-shadow),
    0 0 16px rgba(247, 215, 122, 0.3),
    0 0 30px rgba(247, 215, 122, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: eidCardGlow 3s ease-in-out infinite;
}

#eid-page-4 .eid-card {
  height: 460px;
}

.eid-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(247,215,122,0.75), rgba(255,255,255,0.10), rgba(247,215,122,0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.95;
}

.eid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(247,215,122,0.16), transparent 55%),
    radial-gradient(900px 600px at 90% 90%, rgba(136,203,255,0.12), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.0) 8px, rgba(255,255,255,0.0) 18px);
  opacity: 0.7;
  pointer-events: none;
}

@keyframes eidCardGlow {
  0%, 100% {
    box-shadow: var(--eid-shadow),
      0 0 16px rgba(247, 215, 122, 0.4),
      0 0 30px rgba(247, 215, 122, 0.22),
      inset 0 0 0 1px rgba(247, 215, 122, 0.16);
  }
  50% {
    box-shadow: var(--eid-shadow),
      0 0 26px rgba(247, 215, 122, 0.55),
      0 0 40px rgba(247, 215, 122, 0.32),
      inset 0 0 0 1px rgba(247, 215, 122, 0.24);
  }
}

.eid-card > * {
  position: relative;
  z-index: 1;
}

.eid-card-header {
  padding: 18px 18px 8px;
  display: grid;
  gap: 4px;
}

.eid-card-title {
  margin: 0;
  font-family: var(--eid-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 4vw, 1.55rem);
}

.eid-card-sub {
  margin: 0;
  color: var(--eid-ink-dim);
  font-size: 0.96rem;
}

.eid-card-actions {
  padding: 14px 18px 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.eid-card-actions-center {
  justify-content: center;
}

.eid-card-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--eid-border);
  background: rgba(0,0,0,0.18);
  color: rgba(247,215,122,0.95);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.eid-lanterns {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  opacity: 0.95;
}

.eid-lantern {
  font-size: 1.25rem;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.35));
  animation: eidLantern 3.4s ease-in-out infinite;
}

.eid-lantern:nth-child(2) { animation-delay: -1.3s; }
.eid-lantern:nth-child(3) { animation-delay: -2.1s; }

@keyframes eidLantern {
  0%, 100% { transform: translateY(0); opacity: 0.92; }
  50% { transform: translateY(-6px); opacity: 1; }
}

/* ---- Section 2 content ---- */
.eid-surprise {
  padding: 10px 18px 4px;
  text-align: center;
}

.eid-gif-wrap {
  width: min(520px, 100%);
  margin: 0 auto 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(247,215,122,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: #000;
}

.eid-gif {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.eid-lottie-main {
  width: 100%;
  height: 220px;
  max-height: 40vh;
}

.eid-msg {
  margin: 10px auto 0;
  width: min(56ch, 100%);
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.6;
}

.eid-msg-small {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
}

/* ---- Flip cards ---- */
.eid-flip-list {
  padding: 6px 18px 10px;
  display: grid;
  gap: 14px;
}

.eid-flip {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  perspective: 1000px;
}

.eid-flip-inner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 120px;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.eid-flip.is-flipped .eid-flip-inner {
  transform: rotateX(180deg);
}

.eid-flip-face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.06));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  padding: 16px 16px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.eid-flip-front {
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(247,215,122,0.22), transparent 60%),
    radial-gradient(820px 520px at 90% 90%, rgba(20,26,60,0.6), transparent 55%),
    linear-gradient(180deg, rgba(8, 12, 32, 0.96), rgba(12, 16, 40, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.eid-flip-back {
  transform: rotateX(180deg);
  background:
    radial-gradient(900px 420px at 30% 20%, rgba(247,215,122,0.12), transparent 60%),
    linear-gradient(180deg, rgba(4, 6, 20, 0.96), rgba(6, 8, 24, 0.92));
}

.eid-flip-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(247,215,122,0.35);
  color: rgba(247,215,122,0.95);
  background: rgba(0,0,0,0.16);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.eid-flip-front-title {
  font-family: var(--eid-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.98rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(247,215,122,0.5);
  background: rgba(0,0,0,0.45);
  color: rgba(247,215,122,0.98);
}

.eid-flip-front-orn {
  color: rgba(255,255,255,0.85);
  font-size: 1.35rem;
}

.eid-prayer {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.eid-prayer-ar {
  margin-top: 6px;
  font-family: var(--eid-ar);
  font-size: 1.05rem;
  color: rgba(247,215,122,0.92);
  line-height: 1.75;
}

/* ---- Floating hearts ---- */
.eid-float-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 30;
}

.eid-heart {
  position: absolute;
  bottom: -24px;
  left: var(--x, 50%);
  font-size: var(--size, 18px);
  opacity: 0;
  transform: translateY(0) scale(0.9);
  animation: eidHeartFloat var(--dur, 1600ms) ease-in forwards;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35));
}

@keyframes eidHeartFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.9); }
  10% { opacity: 0.95; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1.15) rotate(6deg); }
}

/* ---- Sweets ---- */
.eid-sweets {
  padding: 12px 18px 18px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 48px;
  position: relative;
  flex: 1;
}

.eid-sweets-btn {
  border: 1px solid rgba(247,215,122,0.7);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(145deg, #3a2714, #211209);
  color: rgba(255,255,255,0.96);
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  animation: eidSweetsShake 1.4s ease-in-out infinite;
}

.eid-sweets-btn::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px dashed rgba(247,215,122,0.55);
  opacity: 0.9;
}

.eid-sweets-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
}

.eid-sweets-btn:active { transform: translateY(1px) scale(0.99); }

.eid-sweets-btn.eid-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.eid-sweets-btn-inner {
  font-family: var(--eid-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.eid-sweets-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}

.eid-sweets-frame {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(247,215,122,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#eid-sweets-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eid-sweets-arrow {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(247,215,122,0.55), rgba(10,10,30,0.9));
  color: rgba(255,255,255,0.96);
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.eid-sweets-box.eid-sweets-single .eid-sweets-arrow {
  display: none;
}

@keyframes eidSweetsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.eid-sweets-box.eid-sweets-reveal {
  animation: eidSweetsFadeIn 0.6s ease-out forwards;
}

@keyframes eidSweetsShake {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  15% {
    transform: translateY(-2px) rotate(-2deg);
  }
  30% {
    transform: translateY(1px) rotate(2deg);
  }
  45% {
    transform: translateY(-1px) rotate(-1.5deg);
  }
  60% {
    transform: translateY(1px) rotate(1.5deg);
  }
  75% {
    transform: translateY(0) rotate(0deg);
  }
}

.eid-sweets-prev {
  left: 10px;
}

.eid-sweets-next {
  right: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 520px) {
  .eid-card-shell { padding-top: 56px; }
  .eid-card-header { padding: 16px 14px 8px; }
  .eid-surprise { padding: 10px 14px 2px; }
  .eid-flip-list { padding: 6px 14px 10px; }
  .eid-card-actions { padding: 12px 14px 16px; }
  .eid-hanging { height: 120px; }
  .eid-hang-item { transform: scale(0.92); }
  .eid-title { letter-spacing: 0.10em; }
  .eid-bg-mosque img {
    max-height: 80vh;
    transform: scale(1.4);
  }

  .eid-sweets-box {
    max-width: 100%;
  }
}

