@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Minimalist Luxury Black, White & Grey Palette */
  --bg: #09090b;
  --bg-gradient: radial-gradient(circle at 50% 0%, #1c1c20 0%, #0f0f12 40%, #09090b 100%);
  --card-bg: rgba(18, 18, 20, 0.88);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-hover-border: rgba(255, 255, 255, 0.3);
  --card-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  --card-hover-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.9), 0 0 0 1.5px rgba(255, 255, 255, 0.25);

  --text-main: #f4f4f5;
  --text-title: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  /* Black, White & Silver Accents */
  --mono-white: #ffffff;
  --mono-silver: #e4e4e7;
  --mono-light-grey: #d4d4d8;
  --mono-mid-grey: #71717a;
  --mono-dark-grey: #27272a;
  --mono-charcoal: #18181b;
  --mono-gradient: linear-gradient(135deg, #ffffff 0%, #e4e4e7 50%, #a1a1aa 100%);
  --mono-glow: rgba(255, 255, 255, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Lucide Vector Icons */
svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.2px;
  vertical-align: -3px;
  display: inline-block;
  flex-shrink: 0;
  stroke: currentColor;
}
svg.lucide-lg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2px;
  stroke: currentColor;
}
svg.lucide-sm {
  width: 15px;
  height: 15px;
  stroke-width: 2.2px;
  stroke: currentColor;
}

a {
  color: var(--mono-white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
a:hover { color: var(--mono-light-grey); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin-bottom: 26px;
}
.brand {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand span {
  color: var(--mono-silver);
  font-weight: 500;
}
.brand-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--mono-silver);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Collaboration Badge */
.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}

/* Cards */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 30px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.card:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

/* Hero Showcase */
.festive-hero {
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.05);
}
.festive-banner-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #09090b;
}
.festive-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}
.festive-hero:hover .festive-banner-img {
  transform: scale(1.02);
}
.festive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.96) 0%, rgba(9, 9, 11, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
}
.festive-banner-overlay h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  line-height: 1.15;
  margin-bottom: 8px;
}
.festive-banner-overlay p {
  font-size: 16px;
  color: #d4d4d8;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  max-width: 800px;
}

/* Event Info Highlights Bar */
.event-info-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px 30px;
  background: rgba(14, 14, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-bar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.info-bar-text b {
  display: block;
  font-size: 15px;
  color: #fff;
}
.info-bar-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Headings */
h1, h2, h3 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
h2 {
  font-size: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #09090b;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.muted { color: var(--text-muted); font-size: 14px; }
.small { font-size: 13px; }
.spacer { height: 16px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Quantity Box */
.qty-container {
  background: rgba(18, 18, 22, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}
.qty-stepper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f23;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}
.qty-btn:hover {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  transform: scale(1.05);
}
.qty-input {
  width: 70px !important;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff !important;
  background: #121214 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  padding: 6px 10px;
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #d4d4d8;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pill-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.pill-btn.active {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.price-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  margin-left: auto;
}

/* Inputs & Form Controls */
label {
  font-size: 13px;
  font-weight: 700;
  color: #e4e4e7;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  background: rgba(24, 24, 27, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  background: rgba(30, 30, 34, 0.95);
}
input::placeholder, textarea::placeholder {
  color: #71717a;
}
select option {
  background: #18181b;
  color: #ffffff;
}
textarea { min-height: 90px; resize: vertical; }

.field { margin-bottom: 18px; }
.row { display: flex; gap: 12px; align-items: center; }
.row > * { min-width: 0; }
.row .grow { flex: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #09090b;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #e4e4e7;
  color: #000000;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  background: #27272a;
  color: #71717a;
  border-color: #27272a;
}
.btn.secondary {
  background: #1f1f23;
  color: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.btn.secondary:hover:not(:disabled) {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.btn.danger {
  background: #1f1f23;
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  box-shadow: none;
}
.btn.danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
}
.btn.ghost {
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* UPI Forwarding Button (Sleek Monochrome Hero Button) */
.upi-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff !important;
  color: #09090b !important;
  border: 1.5px solid #ffffff !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 16px 24px !important;
  border-radius: var(--radius-md);
  text-decoration: none;
  width: 100%;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.upi-pay-btn:hover {
  transform: translateY(-2px);
  background: #e4e4e7 !important;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3) !important;
}

/* OTP Box */
.otpbox {
  background: rgba(18, 18, 22, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 16px 0 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.verified {
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Payment Info Box */
.payment {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(18, 18, 22, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.qr {
  max-width: 240px;
  width: 100%;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  display: block;
}
.money {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.copy-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1f1f23;
  padding: 5px 12px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4f4f5;
  transition: all 0.2s ease;
}
.copy-chip:hover {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.preview-box {
  margin-top: 10px;
  display: none;
}
.preview-box img {
  max-height: 200px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  object-fit: contain;
  background: #000;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: #1f1f23;
  color: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.badge.pending {
  background: #18181b;
  color: #d4d4d8;
  border-color: rgba(255, 255, 255, 0.15);
}
.badge.approved {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}
.badge.rejected {
  background: #18181b;
  color: #a1a1aa;
  border-color: rgba(255, 255, 255, 0.15);
}

/* Notices */
.notice {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: rgba(24, 24, 27, 0.85);
  border: 1px solid var(--card-border);
  margin: 16px 0;
  font-size: 14px;
}
.notice.good {
  background: rgba(24, 24, 27, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
  color: #f4f4f5;
}
.notice.error {
  background: rgba(24, 24, 27, 0.95);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

hr {
  border: 0;
  border-top: 1px solid var(--card-border);
  margin: 28px 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
th {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  background: rgba(18, 18, 22, 0.7);
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.tablewrap { overflow-x: auto; }

/* Pass / Greeting Display */
.pass {
  max-width: 660px;
  margin: 30px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.06);
}
.pass:before {
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, #3f3f46 0%, #ffffff 50%, #3f3f46 100%);
}
.pass-number {
  font-family: 'Cinzel', 'Outfit', serif;
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  margin: 10px 0 6px;
}

.kv {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  font-size: 14px;
}
.kv b { color: var(--text-muted); font-weight: 700; }

.builder-item {
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin: 14px 0;
  background: rgba(18, 18, 22, 0.8);
}
.builder-item .row { flex-wrap: wrap; }
.builder-item .row > div { flex: 1 1 180px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.checkbox { display: flex; gap: 10px; align-items: center; cursor: pointer; }
.checkbox input { width: auto; cursor: pointer; }

.proof {
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  display: block;
}

/* Featured Event Spotlight Card on Homepage */
.spotlight-card {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.05);
  background: var(--card-bg);
  padding: 0;
  overflow: hidden;
  margin-bottom: 36px;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.spotlight-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.spotlight-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(14, 14, 16, 0.95);
}
.spotlight-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: #ffffff;
  margin: 10px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .grid, .grid3, .payment, .event-info-bar, .spotlight-grid { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  .row.stack-mobile { flex-direction: column; align-items: stretch; }
  .festive-banner-img-wrap { height: 260px; }
  .festive-banner-overlay { padding: 20px; }
  .festive-banner-overlay h1 { font-size: 24px; }
  .pass-number { font-size: 40px; }
  .kv { grid-template-columns: 1fr; gap: 4px; }
  .price-summary-badge { margin-left: 0; width: 100%; justify-content: center; }
  .spotlight-content { padding: 24px; }
}
