/* ==========================================
   PREMIUM WEDDING INVITATION THEME STYLING
   (css/invitation.css)
   ========================================== */

/* Fullscreen Opening Cover Overlay */
.cover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold-overlay), radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, var(--color-bg-dark) 80%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  overflow: hidden;
}

.cover-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cover-content {
  max-width: 600px;
  padding: 40px;
  position: relative;
  z-index: 10;
}

/* Elegant ornamental divider */
.ornament-divider {
  width: 120px;
  height: auto;
  margin: 0 auto 20px auto;
  opacity: 0.8;
  display: block;
}

.cover-tag {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--color-gold-300);
  margin-bottom: 20px;
}

.cover-names {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .cover-names { font-size: 2.2rem; }
}

.guest-card {
  background: var(--color-bg-dark-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-gold-light);
  border-radius: var(--radius-premium);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-premium), var(--shadow-gold-soft);
}

.guest-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--color-text-dark-secondary);
  margin-bottom: 10px;
}

.guest-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* Main Page Container (starts hidden or scaled slightly, reveals beautifully) */
.invitation-main {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dark-primary);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.invitation-main.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Floating Audio / BGM Controller */
.audio-controller {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-glow);
  transition: var(--transition-smooth);
}

.audio-controller:hover {
  transform: scale(1.1) rotate(15deg);
}

.audio-icon {
  width: 20px;
  height: 20px;
  fill: #000;
  transition: var(--transition-fast);
}

/* Animated Music Note Waves */
.music-waves {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  height: 12px;
  align-items: flex-end;
  pointer-events: none;
}

.music-waves span {
  width: 2px;
  background: var(--color-gold-300);
  border-radius: 2px;
  height: 4px;
}

.audio-controller.playing .music-waves span {
  animation: bounceWaves 1.2s ease-in-out infinite alternate;
}

.audio-controller.playing .music-waves span:nth-child(1) { animation-delay: 0.1s; }
.audio-controller.playing .music-waves span:nth-child(2) { animation-delay: 0.3s; }
.audio-controller.playing .music-waves span:nth-child(3) { animation-delay: 0.5s; }

@keyframes bounceWaves {
  0% { height: 4px; }
  100% { height: 16px; }
}

/* Couple Info Section */
.couple-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .couple-showcase { gap: 40px; }
}

.couple-card {
  text-align: center;
  max-width: 320px;
}

.couple-frame {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 30px auto;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--color-bg-dark), var(--color-bg-dark)), var(--gradient-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 10px;
  box-shadow: var(--shadow-gold-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.couple-frame:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold-glow);
}

.couple-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c2229 0%, #12161a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
}

.couple-img-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.couple-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.couple-parent {
  font-size: 0.85rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
}

.couple-ampersand {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-300);
}

/* Event Section Cards */
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto 0 auto;
}

.event-card {
  background: var(--color-bg-dark-card);
  border: var(--border-gold-light);
  border-radius: var(--radius-premium);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-glass);
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-300);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), var(--shadow-gold-soft);
}

.event-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
  margin: 0 auto 25px auto;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.event-date {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
}

.event-time {
  font-size: 0.9rem;
  color: var(--color-gold-300);
  margin-bottom: 20px;
}

.event-location {
  font-size: 0.9rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Timeline/Love Story */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-gold-300) 15%, var(--color-gold-300) 85%, transparent);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline::before { left: 30px; }
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

@media (max-width: 768px) {
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 20px; text-align: left !important; }
  .timeline-item.right { left: 0; }
}

.timeline-indicator {
  position: absolute;
  top: 25px;
  left: 100%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 3px solid var(--color-gold-300);
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: var(--shadow-gold-soft);
}

.timeline-item.right .timeline-indicator { left: 0; }

@media (max-width: 768px) {
  .timeline-indicator { left: 30px !important; }
}

.timeline-card {
  background: var(--color-bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-glass);
}

.timeline-date {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-gold-300);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.timeline-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.timeline-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
}

/* Lightbox Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-card {
  aspect-ratio: 1/1;
  border-radius: var(--radius-premium);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-glass);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c2229 0%, #12161a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-gold-300);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-placeholder {
  transform: scale(1.06);
}

.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-card:hover::after {
  opacity: 1;
}

/* RSVP Form styling */
.rsvp-container {
  max-width: 600px;
  margin: 50px auto 0 auto;
  background: var(--color-bg-dark-card);
  border: var(--border-gold-light);
  padding: 45px;
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-glass);
}

@media (max-width: 576px) {
  .rsvp-container { padding: 30px 20px; }
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-dark-secondary);
}

.form-control {
  width: 100%;
  background: rgba(10, 13, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control option {
  background-color: #131920;
  color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold-300);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Guestbook Live List */
.guestbook-timeline {
  max-width: 600px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.guestbook-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 12px;
  animation: fadeInUp 0.5s ease-out;
}

.guestbook-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.guestbook-author {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.guestbook-badge {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.guestbook-badge.hadir { background: rgba(72, 187, 120, 0.15); color: #48bb78; }
.guestbook-badge.absen { background: rgba(245, 101, 101, 0.15); color: #f56565; }

.guestbook-msg {
  font-size: 0.9rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
}

/* Digital Gift Box Styling */
.gift-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.gift-card {
  background: var(--color-bg-dark-card);
  border: var(--border-gold-light);
  border-radius: var(--radius-premium);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-glass);
}

.gift-logo {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.gift-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.gift-number-box {
  background: rgba(10, 13, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin: 15px 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gift-number {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.btn-copy {
  background: transparent;
  border: none;
  color: var(--color-gold-300);
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  color: #fff;
  transform: scale(1.05);
}

/* ==========================================
   BASE LAYOUT FOR WEDDING INVITATION SECTIONS
   ========================================== */
section {
  padding: 100px 8%;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-gold-300);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--color-text-dark-secondary);
  font-size: 1.1rem;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   ========================================== */
@media (max-width: 992px) {
  section {
    padding: 80px 6%;
  }

  .events-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 5%;
  }

  #main-cover h2 {
    font-size: 2.4rem !important;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .couple-showcase {
    gap: 30px;
  }

  .couple-card {
    max-width: 280px;
  }

  .couple-frame {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .couple-card h3 {
    font-size: 1.6rem;
  }

  .events-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }

  .event-card {
    padding: 30px 20px;
  }

  .gift-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-indicator {
    left: 20px !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 4%;
  }

  #main-cover h2 {
    font-size: 1.8rem !important;
  }

  .cover-names {
    font-size: 2rem;
  }

  .cover-content {
    padding: 20px;
  }

  .guest-card {
    padding: 20px;
    margin-bottom: 30px;
  }

  .guest-name {
    font-size: 1.3rem;
  }

  .couple-ampersand {
    font-size: 2.5rem;
    margin: 10px 0;
  }

  .timeline-item {
    padding-left: 45px;
    padding-right: 5px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
  }

  .rsvp-container {
    padding: 30px 20px;
  }

  .gift-card {
    padding: 25px 15px;
  }

  .gift-logo {
    font-size: 1.25rem;
  }

  .gift-number {
    font-size: 0.85rem;
  }

  .audio-controller {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================
   COUNTDOWN TIMER & INTERACTIVE MAPS STYLING
   ========================================== */

/* Countdown Timer Styling */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--color-bg-dark-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-gold-light);
  border-radius: 12px;
  padding: 15px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold-soft);
  transition: var(--transition-smooth);
}

.countdown-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold-300);
  box-shadow: var(--shadow-gold-glow);
}

.countdown-number {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
  margin-bottom: 5px;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-dark-secondary);
  letter-spacing: 1px;
}

/* Interactive Maps Switcher styling */
.maps-wrapper {
  max-width: 800px;
  margin: 60px auto 0 auto;
  background: var(--color-bg-dark-card);
  border: var(--border-gold-light);
  border-radius: var(--radius-premium);
  padding: 30px;
  box-shadow: var(--shadow-glass);
}

.maps-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.maps-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.map-tab-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-text-dark-secondary);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: var(--transition-fast);
}

.map-tab-btn:hover {
  border-color: var(--color-gold-300);
  color: #fff;
}

.map-tab-btn.active {
  background: var(--gradient-gold);
  color: #12161a;
  border-color: transparent;
  font-weight: 600;
  box-shadow: var(--shadow-gold-soft);
}

.map-iframe-container {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-iframe-container iframe {
  display: block;
}

.map-iframe-container.active {
  display: block;
  animation: mapFadeIn 0.5s ease-out;
}

@keyframes mapFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet & Mobile Layout Adjustments for Countdown & Maps */
@media (max-width: 576px) {
  .countdown-container {
    gap: 10px;
    margin-top: 35px;
  }
  
  .countdown-item {
    min-width: 65px;
    padding: 10px 8px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.65rem;
  }
  
  .maps-wrapper {
    padding: 20px 15px;
    margin-top: 40px;
  }
  
  .maps-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .map-tab-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================
   PREMIUM LOCKED PLACEHOLDER STYLING
   ========================================== */
.locked-card-placeholder {
  background: linear-gradient(135deg, rgba(19, 25, 32, 0.6) 0%, rgba(10, 13, 16, 0.8) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.3) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--radius-premium);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.locked-card-placeholder:hover {
  border-color: var(--color-gold-300) !important;
  background: linear-gradient(135deg, rgba(19, 25, 32, 0.8) 0%, rgba(10, 13, 16, 0.9) 100%);
  transform: translateY(-2px);
}

.locked-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.locked-icon {
  width: 36px;
  height: 36px;
  color: var(--color-gold-300);
  animation: lockGlow 2s ease-in-out infinite alternate;
}

.locked-card-placeholder h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
  margin: 5px 0 0 0;
}

.locked-card-placeholder p {
  font-size: 0.75rem;
  color: var(--color-text-dark-secondary);
  max-width: 250px;
  margin: 0;
}

@keyframes lockGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.2)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); }
}

/* ==========================================
   THEME-SPECIFIC UNIQUE LAYOUT STRUCTURING
   ========================================== */

/* ------------------------------------------
   THEME 2: CHAMPAGNE (Asymmetric Minimalist & Editorial Layout)
   ------------------------------------------ */
body.theme-champagne {
  --radius-premium: 0px !important;
}

body.theme-champagne .section-header {
  text-align: left !important;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  border-left: 3px solid var(--color-gold-300);
  padding-left: 20px;
}
body.theme-champagne .section-header .ornament-divider {
  display: none !important;
}

/* Staggered wide card blocks */
body.theme-champagne .couple-showcase {
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
  max-width: 650px;
  margin: 60px auto 0 auto;
}
body.theme-champagne .couple-card {
  max-width: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: var(--color-bg-dark-card);
  box-sizing: border-box;
}
body.theme-champagne .couple-card .couple-frame {
  border-radius: 0% !important; /* Square frames */
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
body.theme-champagne .couple-card .couple-img-placeholder {
  border-radius: 0% !important;
}
body.theme-champagne .couple-ampersand {
  display: none !important; /* Remove ampersand */
}

@media (min-width: 768px) {
  body.theme-champagne .couple-card {
    display: flex !important;
    align-items: center;
    gap: 40px;
    text-align: left !important;
  }
  body.theme-champagne .couple-card .couple-frame {
    margin: 0 !important;
  }
  body.theme-champagne .couple-card:nth-child(1) {
    align-self: flex-start;
    width: 85%;
  }
  body.theme-champagne .couple-card:nth-child(3) {
    align-self: flex-end;
    width: 85%;
    flex-direction: row-reverse !important;
    text-align: right !important;
  }
}

@media (max-width: 767px) {
  body.theme-champagne .couple-card {
    text-align: center !important;
  }
  body.theme-champagne .couple-card .couple-frame {
    margin: 0 auto 20px auto !important;
  }
}

/* Straight clean single-side timeline */
body.theme-champagne .timeline::before {
  left: 20px !important;
}
body.theme-champagne .timeline-item {
  width: 100% !important;
  left: 0 !important;
  padding-left: 50px !important;
  padding-right: 0 !important;
  text-align: left !important;
}
body.theme-champagne .timeline-indicator {
  left: 20px !important;
  border-radius: 0% !important; /* Square markers */
}

body.theme-champagne .rsvp-container {
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02) !important;
  background: #ffffff !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: 600px !important;
}

body.theme-champagne .form-control {
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #1a202c !important;
}

body.theme-champagne .form-control:focus {
  border-color: #a37c3f !important;
  box-shadow: 0 0 8px rgba(163, 124, 63, 0.15) !important;
}

body.theme-champagne .rsvp-form button.btn-premium {
  border-radius: 0px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
}

body.theme-champagne .guestbook-timeline {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  max-width: 600px !important;
}

body.theme-champagne .guestbook-card {
  border-radius: 0px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

body.theme-champagne .guestbook-badge {
  border-radius: 0px !important;
}

@media (min-width: 768px) {
  body.theme-champagne .rsvp-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  body.theme-champagne .rsvp-form .form-group:nth-child(3),
  body.theme-champagne .rsvp-form button {
    grid-column: span 2;
  }
}

/* ------------------------------------------
   THEME 3: EMERALD (Horizontal Polaroid Botanical Rustic Layout)
   ------------------------------------------ */
body.theme-emerald {
  --radius-premium: 12px;
}

body.theme-emerald .couple-card {
  background: #ffffff !important;
  padding: 16px 16px 45px 16px !important;
  border-radius: 0px !important;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
  text-align: center;
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
}
body.theme-emerald .couple-card:nth-child(3) {
  transform: rotate(3deg);
}
body.theme-emerald .couple-card:hover {
  transform: scale(1.04) rotate(0deg);
}
body.theme-emerald .couple-frame {
  width: 100%;
  height: 240px;
  border-radius: 0% !important;
  padding: 0;
  border: none;
  background: #11221b;
  margin-bottom: 20px;
}
body.theme-emerald .couple-img-placeholder {
  border-radius: 0% !important;
  background: #1a2c24;
}
body.theme-emerald .couple-card h3 {
  font-family: 'Alex Brush', cursive !important;
  font-size: 2.2rem;
  color: #11221b !important;
  margin-top: 10px;
}
body.theme-emerald .couple-parent {
  color: #555555 !important;
}

@media (min-width: 768px) {
  body.theme-emerald .gallery-grid .gallery-card:nth-child(2n) {
    transform: translateY(25px);
  }
}

body.theme-emerald .timeline-indicator {
  border-radius: 50% 0 50% 0 !important;
  background: #11221b !important;
  border-color: #d4af37 !important;
}

/* ------------------------------------------
   THEME 4: SAPPHIRE (Royal Arched Cathedral Layout)
   ------------------------------------------ */
body.theme-sapphire {
  --radius-premium: 20px;
}

body.theme-sapphire .couple-frame {
  border-radius: 120px !important;
  width: 200px;
  height: 250px;
  background-image: linear-gradient(var(--color-bg-dark), var(--color-bg-dark)), var(--gradient-gold) !important;
}
body.theme-sapphire .couple-img-placeholder {
  border-radius: 120px !important;
}

body.theme-sapphire .event-card {
  border-radius: 150px 150px 20px 20px !important;
  padding-top: 65px;
  border-width: 2px !important;
}
body.theme-sapphire .maps-wrapper {
  border-radius: 150px 150px 20px 20px !important;
  border-width: 2px !important;
}

body.theme-sapphire .timeline-indicator {
  border-radius: 0% !important;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--color-bg-dark-card) !important;
  width: 24px;
  height: 24px;
}

/* ------------------------------------------
   THEME 5: ROSE (Asymmetric Romantic Floating Leaf Layout)
   ------------------------------------------ */
body.theme-rose {
  --radius-premium: 30px;
}

body.theme-rose .couple-showcase {
  gap: 50px;
}
body.theme-rose .couple-card:nth-child(1) {
  transform: translateY(-40px);
}
body.theme-rose .couple-card:nth-child(3) {
  transform: translateY(40px);
}
@media (max-width: 768px) {
  body.theme-rose .couple-card:nth-child(1),
  body.theme-rose .couple-card:nth-child(3) {
    transform: translateY(0);
  }
}

body.theme-rose .event-card, 
body.theme-rose .timeline-card,
body.theme-rose .rsvp-container,
body.theme-rose .gift-card {
  border-radius: 50px 16px 50px 16px !important;
  box-shadow: 0 15px 40px rgba(166, 86, 109, 0.08) !important;
}

body.theme-rose .ornament-divider {
  animation: roseFloat 4s ease-in-out infinite alternate;
}
@keyframes roseFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ------------------------------------------
   THEME 6: BURGUNDY (Dramatic Vertical Split-Screen Magazine Layout)
   ------------------------------------------ */
body.theme-burgundy {
  --radius-premium: 6px;
}

@media (min-width: 992px) {
  body.theme-burgundy section {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: flex-start;
    text-align: left !important;
    padding: 120px 8%;
  }

  body.theme-burgundy .section-header {
    position: sticky !important;
    top: 100px;
    text-align: left !important;
    margin: 0 !important;
    padding-right: 20px;
    border-right: 1px solid rgba(229, 193, 88, 0.15);
  }

  body.theme-burgundy .couple-showcase,
  body.theme-burgundy .events-container,
  body.theme-burgundy .maps-wrapper,
  body.theme-burgundy .timeline,
  body.theme-burgundy .gallery-grid,
  body.theme-burgundy .rsvp-container,
  body.theme-burgundy .gift-container,
  body.theme-burgundy .guestbook-timeline {
    margin-top: 0 !important;
    width: 100% !important;
  }
}

body.theme-burgundy .couple-frame {
  border-radius: 8px !important;
  width: 210px;
  height: 210px;
  box-shadow: 0 15px 35px rgba(26, 5, 8, 0.6), var(--shadow-gold-soft);
}
body.theme-burgundy .couple-img-placeholder {
  border-radius: 8px !important;
}

body.theme-burgundy .events-container {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 850px;
  border: var(--border-gold);
  border-radius: var(--radius-premium);
  background: var(--color-bg-dark-card);
  padding: 10px;
  gap: 0;
  box-shadow: var(--shadow-premium);
}
body.theme-burgundy .event-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 40px 30px;
}
body.theme-burgundy .event-card:nth-child(1) {
  border-right: 1px solid rgba(229, 193, 88, 0.25) !important;
}
@media (max-width: 768px) {
  body.theme-burgundy .events-container {
    grid-template-columns: 1fr !important;
    padding: 10px;
    max-width: 450px;
  }
  body.theme-burgundy .event-card {
    padding: 30px 20px;
  }
  body.theme-burgundy .event-card:nth-child(1) {
    border-right: none !important;
    border-bottom: 1px solid rgba(229, 193, 88, 0.25) !important;
  }
}

/* ------------------------------------------
   THEME 7: TERRACOTTA (Bohemian Earthy Desert Layout)
   ------------------------------------------ */
body.theme-terracotta {
  --radius-premium: 18px;
}

/* Large bohemian warm circle frames */
body.theme-terracotta .couple-frame {
  border-radius: 50% !important;
  border: 4px solid var(--color-gold-300) !important;
  padding: 8px;
  box-shadow: var(--shadow-gold-soft);
}

/* Elegant staggered cards with earthy border styling */
body.theme-terracotta .event-card, 
body.theme-terracotta .rsvp-container,
body.theme-terracotta .gift-card {
  border-radius: 40px 0px 40px 0px !important; /* Dynamic Boho shapes */
  border-width: 2px !important;
}

/* Warm terracotta timeline cards with thick colored side accents */
body.theme-terracotta .timeline-card {
  border-left: 4px solid var(--color-gold-300) !important;
  border-radius: 4px 16px 16px 4px !important;
}

/* ------------------------------------------
   THEME 8: MIDNIGHT (Celestial Shimmer Constellation Layout)
   ------------------------------------------ */
body.theme-midnight {
  --radius-premium: 16px;
}

/* Star dust glowing headers */
body.theme-midnight h1,
body.theme-midnight h2 {
  text-shadow: 0 0 12px rgba(226, 166, 157, 0.45) !important;
}

/* Cosmic constellation maps & event boards */
body.theme-midnight .event-card,
body.theme-midnight .rsvp-container,
body.theme-midnight .maps-wrapper {
  background: radial-gradient(circle at top, #0f1636 0%, #0d122b 100%) !important;
  box-shadow: 0 0 25px rgba(226, 166, 157, 0.12) !important;
  border: 1px solid rgba(226, 166, 157, 0.25) !important;
}

/* Glowing timeline nodes */
body.theme-midnight .timeline-indicator {
  box-shadow: 0 0 15px var(--color-gold-300) !important;
  background: var(--color-gold-300) !important;
}

/* ------------------------------------------
   THEME 9: ORCHID (Sleek Lavender Silken Grace Layout)
   ------------------------------------------ */
body.theme-orchid {
  --radius-premium: 8px;
}

/* Sleek minimalist centered lines for headings */
body.theme-orchid .section-header h2 {
  border-bottom: 2px solid rgba(178, 183, 194, 0.25);
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

/* Geometric brushed silver frames */
body.theme-orchid .couple-frame {
  border-radius: 20px !important; /* Soft rectangle look */
  border: 1px solid rgba(178, 183, 194, 0.4) !important;
  background: #ffffff !important;
}

/* Horizontal linear elegant program timelines */
body.theme-orchid .timeline-card {
  border: none !important;
  border-bottom: 1px solid rgba(178, 183, 194, 0.3) !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 15px 0 !important;
  border-radius: 0% !important;
}
body.theme-orchid .timeline-card h3 {
  font-family: var(--font-accent) !important;
  font-size: 1.1rem;
}
body.theme-orchid .timeline-indicator {
  width: 14px;
  height: 14px;
  background: #ffffff !important;
  border-color: #685578 !important;
}

/* ==========================================
   THEME-SPECIFIC FULLSCREEN COVER & GUEST CARD OVERRIDES
   ========================================== */

/* Theme 2: Champagne (Minimalist Left-Aligned Cover) */
body.theme-champagne .cover-content {
  text-align: left !important;
  max-width: 500px;
  margin-left: 8%;
  margin-right: auto;
  border-left: 2px solid var(--color-gold-300);
  padding-left: 45px;
}
body.theme-champagne .cover-content .ornament-divider {
  display: none !important;
}
body.theme-champagne .guest-card {
  border-radius: 0px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}
body.theme-champagne .guest-name {
  color: #1a202c !important;
}
body.theme-champagne .guest-label {
  color: #4a5568 !important;
}

/* Theme 3: Emerald (Polaroid-Style Guest Card) */
body.theme-emerald .guest-card {
  border-radius: 0px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  transform: rotate(-1.5deg);
}
body.theme-emerald .guest-name {
  color: #11221b !important;
  font-family: 'Alex Brush', cursive !important;
  font-size: 2.2rem !important;
  font-weight: 400 !important;
  margin-top: 5px;
}
body.theme-emerald .guest-label {
  color: #666666 !important;
}

/* Theme 4: Sapphire (Royal Cathedral Arched Guest Card) */
body.theme-sapphire .guest-card {
  border-radius: 120px 120px 20px 20px !important;
  border: 2px solid var(--color-gold-300) !important;
  box-shadow: var(--shadow-premium), var(--shadow-gold-glow) !important;
}

/* Theme 5: Rose (Romantic Organic Leaf Guest Card) */
body.theme-rose .guest-card {
  border-radius: 50px 16px 50px 16px !important;
  box-shadow: 0 15px 35px rgba(166, 86, 109, 0.12) !important;
  border-color: rgba(166, 86, 109, 0.25) !important;
}

/* Theme 6: Burgundy (Luxury Gold-Double-Bordered Velvet Guest Card) */
body.theme-burgundy .guest-card {
  border-radius: 6px !important;
  border: 3px double rgba(229, 193, 88, 0.3) !important;
  background: radial-gradient(circle at center, rgba(45, 14, 18, 0.95) 0%, rgba(26, 5, 8, 0.98) 100%) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7) !important;
}
body.theme-burgundy .guest-name {
  color: #e5c158 !important;
}
body.theme-burgundy .guest-label {
  color: #cfa8ac !important;
}

/* Theme 7: Terracotta (Boho Asymmetric Guest Card) */
body.theme-terracotta .guest-card {
  border-radius: 40px 0px 40px 0px !important;
  background: #ffffff !important;
  border: 2px solid rgba(212, 106, 67, 0.25) !important;
  box-shadow: 0 15px 35px rgba(212, 106, 67, 0.08) !important;
}
body.theme-terracotta .guest-name {
  color: #4a2c22 !important;
}
body.theme-terracotta .guest-label {
  color: #855b4e !important;
}

/* Theme 8: Midnight (Starry Glowing Cosmic Guest Card) */
body.theme-midnight .guest-card {
  background: radial-gradient(circle at top, #0f1636 0%, #0d122b 100%) !important;
  border: 1px solid rgba(226, 166, 157, 0.3) !important;
  box-shadow: 0 0 25px rgba(226, 166, 157, 0.15) !important;
}
body.theme-midnight .guest-name {
  text-shadow: 0 0 8px rgba(226, 166, 157, 0.6) !important;
}

/* Theme 9: Orchid (Sleek Geometric Wisteria Guest Card) */
body.theme-orchid .guest-card {
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(178, 183, 194, 0.4) !important;
  box-shadow: 0 15px 35px rgba(178, 183, 194, 0.06) !important;
}
body.theme-orchid .guest-name {
  color: #2d1f3b !important;
}
body.theme-orchid .guest-label {
  color: #685578 !important;
}

/* ==========================================
   ADDED: PENDING WARNING BANNER & EXPIRED SCREEN
   ========================================== */

/* Spanduk Peringatan Belum Lunas (Preview Mode) */
#pending-payment-banner {
  background: rgba(229, 62, 62, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pending-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

.pending-banner-content span {
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.btn-banner-activate {
  background: #ffffff;
  color: #c53030;
  text-decoration: none;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-button);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-banner-activate:hover {
  background: #fff5f5;
  transform: translateY(-1px);
}

body.has-pending-banner {
  padding-top: 0px !important; /* Keep it tight */
}

/* Halaman Proteksi Kadaluwarsa (Expired Overlay) */
.expired-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.95) 0%, rgba(2, 4, 8, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.expired-content {
  max-width: 500px;
  background: rgba(19, 25, 32, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 50px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.05);
}

.expired-icon {
  width: 64px;
  height: 64px;
  color: #d4af37;
  margin-bottom: 25px;
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.2)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
}

.expired-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.expired-content p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 35px;
}

.expired-content .btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* VIP Pass Ticket (Royal Package Exclusivity) */
.vip-pass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 26, 33, 0.9) 0%, rgba(10, 13, 16, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 24px;
  margin: 25px auto 10px auto;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.5s ease;
}

.vip-pass-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
}

.vip-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vip-title {
  font-family: var(--font-accent);
  color: var(--color-gold-300);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.vip-qr-box {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-gold-300);
}

.vip-qr-box img {
  width: 150px;
  height: 150px;
  display: block;
}

.vip-footer {
  font-family: var(--font-sans);
  color: var(--color-text-dark-secondary);
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
  padding-top: 12px;
  width: 100%;
}

/* ==========================================
   EXPIRED INVITATION SCREEN OVERLAY
   ========================================== */
.expired-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.expired-content {
  max-width: 480px;
  background: var(--color-bg-dark-card);
  border: 1px solid rgba(229, 62, 62, 0.25);
  border-radius: var(--radius-premium);
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.expired-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px auto;
  display: block;
}

.expired-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.expired-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ==========================================
   PENDING PAYMENT BANNER
   ========================================== */
#pending-payment-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: linear-gradient(135deg, #7c3a00, #c06000);
  border-bottom: 1px solid rgba(255, 165, 0, 0.4);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.pending-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 20px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #fff;
  text-align: center;
}

.pending-banner-content span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-banner-activate {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-banner-activate:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Push cover overlay down when pending banner is visible */
body.has-pending-banner .cover-overlay {
  padding-top: 50px;
}

