/* ============================================
   BREAD & GRACE — Styles
   ============================================ */

:root {
  --color-gold: #c9a84c;
  --color-gold-light: #e0c97a;
  --color-cream: #f5f0e8;
  --color-dark: #2c2417;
  --color-text: #4a3f35;
  --color-text-light: #7a6e62;
  --color-border: #d9d0c3;
  --color-border-darker: #7a6e62;
  --color-card-bg: #ffffffee;
  --color-bg: #f4f1ec;
  --font-display: 'Inter', Georgia, sans-serif;
  --font-body: 'Literata', 'Lora', Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ============================================
   PAGE LOADER
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 21, 14, 0.52);
  backdrop-filter: blur(6px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(420px, 88vw);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  padding: 1.4rem;
  text-align: center;
}

.loader-spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.7rem;
  border: 3px solid #e8dfd2;
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.loader-skeleton span {
  display: block;
  height: 9px;
  border-radius: 999px;
  margin: 0.45rem 0;
  background: linear-gradient(90deg, #ece6db 25%, #f6f3ed 50%, #ece6db 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.loader-skeleton span:nth-child(2) {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.loader-skeleton span:nth-child(3) {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HERO HEADER
   ============================================ */

.hero-header {
  position: relative;
  min-height: 36vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/header-bg.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 20, 10, 0.00) 0%,
    rgba(30, 20, 10, 0.04) 50%,
    rgba(245, 240, 232, 0.5) 88%,
    rgba(237, 231, 221, 1) 100%
  );
}

.hero-content {
  z-index: 2;
  padding: 2rem 1rem 1.2rem;
}

.language-picker {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.notify-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  padding: 0;
  font-size: 0.9rem;
}

.notify-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.notify-btn.is-enabled {
  background: rgba(255, 255, 255, 0.85);
  color: #1a2332;
  border-color: rgba(255, 255, 255, 0.9);
}

.language-picker label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.language-picker select {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  height: 1.8rem;
  padding: 0.08rem 0.45rem;
  outline: none;
}

.language-picker select option {
  color: #222;
}

.font-size-controls {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
}

.font-size-controls button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  width: 2.2rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.font-size-controls button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.font-size-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.minus-icon,
.plus-icon {
  font-size: 1.0rem;
  font-weight: 700;
}

.sun-icon {
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.hero-title .amp {
  font-style: italic;
  font-weight: 400;
  font-size: 2.8rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.2rem;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}

.today-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.9);
  background: rgba(201, 168, 76, 0.38);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}

.today-btn:hover {
  background: rgba(201, 168, 76, 0.35);
  color: #fff;
}

.today-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  animation: today-shimmer 3s ease-in-out infinite;
}

@keyframes today-shimmer {
  0%   { left: -75%; }
  40%  { left: 125%; }
  100% { left: 125%; }
}

.today-btn.is-hidden {
  display: none;
}

.hero-spacer {
  display: none;
}

/* ============================================
   SIDE NAVIGATION ARROWS
   ============================================ */

.nav-arrow {
  position: fixed;
  bottom: 15rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-border-darker);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-arrow-left {
  left: 1rem;
}

.nav-arrow-right {
  right: 1rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
  position: relative;
  margin-top: -1.5rem;
  padding-bottom: 2rem;
  z-index: 3;
}

/* ============================================
   DEVOTIONAL CARD
   ============================================ */

.devotional-card {
  background: var(--color-card-bg);
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2.5rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
}

.scripture-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-text);
  border: none;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  white-space: pre-line;
}

.devotional-text p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--color-text);
  text-align: justify;
  margin-bottom: 1rem;
}

/* ============================================
   AUDIO PLAYER
   ============================================ */

.audio-player {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #faf7f2;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.play-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.play-btn:hover {
  background: #1a140d;
}

.listen-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
}

.waveform-container {
  flex: 1;
  position: relative;
  height: 32px;
  min-width: 60px;
  overflow: hidden;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 1.5px;
  height: 100%;
  width: 100%;
}

.waveform .bar {
  flex: 1;
  background: var(--color-border);
  border-radius: 1px;
  min-width: 2px;
  transition: background 0.15s;
}

.waveform .bar.active {
  background: var(--color-text);
}

.time-display {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.player-control {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
}

.player-control:hover {
  color: var(--color-dark);
}

.speed-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--color-border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  color: var(--color-text);
}

/* ============================================
   ACTION BUTTONS
   ============================================ */

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1.2rem;
  margin-top: 0.5rem;
  border-top: 1px solid #ece7df;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.action-btn:hover {
  color: var(--color-dark);
}

.action-btn i {
  font-size: 1.1rem;
}

.bookmark-btn i {
  font-size: 1.2rem;
}

/* ============================================
   PRAYER SECTION
   ============================================ */

.prayer-section {
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.prayer-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.prayer-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ============================================
   DEVOTIONAL NAVIGATION
   ============================================ */

.devotional-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 0.2rem;
}

.dev-nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.dev-nav-link:hover {
  color: var(--color-dark);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

/* ============================================
   READ TRACKING
   ============================================ */

.read-count {
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.card-read-badge {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: var(--color-gold);
  font-size: 1.3rem;
  opacity: 0.85;
  z-index: 2;
}

.card-read-badge.is-hidden {
  display: none;
}

.read-stamp {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.6rem 1rem;
  background: rgba(245, 240, 232, 0.97);
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform-origin: center;
  animation: stamp-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.read-stamp i {
  font-size: 2rem;
}

.read-stamp.is-hidden {
  display: none;
}

@keyframes stamp-appear {
  0%   { transform: scale(0.4) rotate(-12deg); opacity: 0; }
  70%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.timeline-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ddd6cb 100%);
  padding: 1rem 0 0;
  overflow: hidden;
}

.timeline-carousel-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.timeline-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.timeline-carousel {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem 1rem;
  min-width: max-content;
  justify-content: center;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 90px;
  cursor: pointer;
}

.timeline-thumb {
  position: relative;
  width: 85px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.timeline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active-thumb {
  border-color: var(--color-dark);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.locked-thumb {
  filter: grayscale(100%);
  opacity: 0.6;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.thumb-overlay.completed {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.3);
}

.thumb-overlay.completed i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  background: #fff;
  border-radius: 50%;
  
}

.thumb-overlay.playing {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  font-size: 1.5rem;
}

.thumb-overlay.locked {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.4);
}

.timeline-item-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  white-space: nowrap;
}

.timeline-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* ============================================
   YEAR TIMELINE BAR
   ============================================ */

.year-timeline {
  padding: 1rem 0 0.3rem;
}

.year-line {
  position: relative;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
}

.year-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 17%;
  height: 100%;
  background: var(--color-dark);
  border-radius: 2px;
}

.year-marker {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.marker-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-dark);
}

.year-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.year-labels span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-dark);
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-dark);
  padding: 1rem 1rem;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
  .nav-arrow {
    bottom: 8rem;
  }

  .hero-header {
    min-height: 27vh;
  }

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: 0.18em;
  }

  .hero-title .amp {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }

  .devotional-card {
    padding: 2rem 1.8rem 1.2rem;
  }

  .hero-spacer {
    display: block;
    height: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .language-picker {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
  }

  .font-size-controls {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
  }

  .nav-arrow {
    bottom: 8rem;
  }

  .hero-spacer {
    display: block;
    height: 1.5rem;
  }

  .hero-header {
    min-height: 24vh;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .hero-title .amp {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .hero-date {
    font-size: 0.95rem;
  }

  .devotional-card {
    padding: 1.5rem 1.2rem 1rem;
    border-radius: 6px;
  }

  .author-name {
    font-size: 1.5rem;
  }

  .scripture-quote {
    font-size: 1.05rem;
  }

  .devotional-text p {
    font-size: 1rem;
  }

  .audio-player {
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    flex-wrap: nowrap;
    border-radius: 16px;
  }

  .listen-label {
    display: none;
  }

  .waveform-container {
    order: 1;
    flex: 1 1 auto;
    height: 28px;
    margin-top: 0;
    min-width: 80px;
  }

  .play-btn {
    order: 0;
  }

  .time-display {
    order: 2;
  }

  .player-control,
  .speed-btn {
    order: 3;
  }

  .action-buttons {
    gap: 1.5rem;
  }

  .timeline-carousel {
    justify-content: flex-start;
    padding: 0.5rem 1rem 1rem;
  }

  .timeline-thumb {
    width: 72px;
    height: 50px;
  }

  .timeline-item {
    min-width: 78px;
  }
}

@media (max-width: 575.98px) {
  .loader-card {
    padding: 1.1rem;
  }

  .loader-text {
    font-size: 0.92rem;
  }

  .nav-arrow {
    bottom: 8rem;
  }

  .hero-header {
    min-height: 22vh;
  }

  .hero-title {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }

  .hero-title .amp {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .devotional-card {
    padding: 1.2rem 1rem 0.8rem;
  }

  .audio-player {
    border-radius: 12px;
    padding: 0.4rem 0.6rem;
  }

  .play-btn {
    order: 0;
  }

  .waveform-container {
    order: 1;
  }

  .time-display {
    order: 2;
  }

  .player-control,
  .speed-btn {
    order: 3;
  }

  .year-timeline {
    padding: 1rem 0 0.5rem;
  }
}

/* ============================================
   LIKE / DISLIKE BUTTONS
   ============================================ */

.action-btn.voted {
  color: var(--color-gold);
  pointer-events: none;
}

.action-btn.voted i {
  animation: vote-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes vote-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ============================================
   FEEDBACK MODAL
   ============================================ */

.feedback-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 21, 14, 0.52);
  backdrop-filter: blur(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.feedback-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.feedback-modal {
  width: min(420px, 90vw);
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.feedback-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  line-height: 1;
}

.feedback-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 0.3rem;
}

.feedback-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0 0 0.8rem;
}

.feedback-textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.feedback-textarea:focus {
  border-color: var(--color-gold);
}

.feedback-char-count {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
}

.feedback-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.feedback-btn {
  flex: 1;
  padding: 0.55rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.feedback-btn-skip {
  background: var(--color-bg);
  color: var(--color-text);
}

.feedback-btn-skip:hover {
  background: var(--color-border);
}

.feedback-btn-send {
  background: var(--color-dark);
  color: #fff;
}

.feedback-btn-send:hover {
  background: #1a140d;
}

/* ============================================
   VOTE TOAST
   ============================================ */

.vote-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: rgba(44, 36, 23, 0.92);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: toast-in 0.3s ease;
}

.vote-toast.is-hidden {
  display: none;
}

@keyframes toast-in {
  0%   { opacity: 0; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
