/* ===================================================================
   100 POPULAR BIBLE VERSES - MODERN MULTILINGUAL PORTAL
   Design System: Sacred Modernism, Serif Warmth, High Legibility
   =================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #fcfbf9;
  --bg-secondary: #f4f1ea;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-color: #e7e2d6;
  --border-subtle: #f0ece3;
  
  --text-primary: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  
  --brand-gold: #c58a17;
  --brand-gold-hover: #a16e0c;
  --brand-gold-light: #fef7e8;
  --brand-navy: #0f172a;
  --brand-navy-light: #1e293b;
  
  --accent-red: #be123c;
  --accent-blue: #0369a1;
  --accent-green: #15803d;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-arabic: "Amiri", "Traditional Arabic", Tahoma, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --bg-primary: #0a0d14;
  --bg-secondary: #111622;
  --bg-card: #151b2a;
  --bg-card-hover: #1a2235;
  --border-color: #242e45;
  --border-subtle: #1c2436;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --brand-gold: #f59e0b;
  --brand-gold-hover: #fbbf24;
  --brand-gold-light: #2a200a;
  --brand-navy: #090d16;
  --brand-navy-light: #161f33;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* RTL (Arabic Support) */
[dir="rtl"] {
  font-family: var(--font-arabic), var(--font-sans);
  text-align: right;
}

[dir="rtl"] .font-serif {
  font-family: var(--font-arabic);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(252, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .site-header {
  background-color: rgba(10, 13, 20, 0.95);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand-gold), #eab308);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(197, 138, 23, 0.25);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-title span {
  color: var(--brand-gold);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Dropdown Selector */
.lang-select-wrapper {
  position: relative;
}

.lang-select-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-select-btn:hover {
  border-color: var(--brand-gold);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 13rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  z-index: 100;
}

[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}

.lang-dropdown-menu.show {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
  background-color: var(--brand-gold-light);
  color: var(--brand-gold);
  font-weight: 600;
}

/* Theme Toggle Button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--brand-gold-light);
  border: 1px solid rgba(197, 138, 23, 0.3);
  color: var(--brand-gold);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Search Bar */
.search-wrapper {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

[dir="rtl"] .search-icon {
  left: auto;
  right: 1.25rem;
}

.search-input {
  width: 100%;
  padding: 1rem 3.25rem;
  font-size: 1.05rem;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}

[dir="rtl"] .search-input {
  padding: 1rem 3.25rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(197, 138, 23, 0.15), var(--shadow-lg);
}

.search-clear-btn {
  position: absolute;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
}

[dir="rtl"] .search-clear-btn {
  right: auto;
  left: 1.25rem;
}

/* Verse of the Day Card */
.votd-card {
  max-width: 860px;
  margin: 1.5rem auto 3rem;
  background: linear-gradient(135deg, rgba(197, 138, 23, 0.08) 0%, rgba(15, 23, 42, 0.04) 100%);
  border: 1px solid rgba(197, 138, 23, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .votd-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(21, 27, 42, 0.8) 100%);
}

[dir="rtl"] .votd-card {
  text-align: right;
}

.votd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.votd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-random {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-random:hover {
  background-color: var(--brand-gold);
  color: #ffffff;
  border-color: var(--brand-gold);
}

.votd-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.votd-ref {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

/* Category Filters */
.category-filter-section {
  margin-bottom: 2rem;
}

.category-chips-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-chip:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.category-chip.active {
  background-color: var(--brand-gold);
  color: #ffffff;
  border-color: var(--brand-gold);
  box-shadow: 0 4px 10px rgba(197, 138, 23, 0.3);
}

/* AdSense Slot Containers */
.ad-slot-container {
  margin: 2rem 0;
  text-align: center;
  overflow: hidden;
}

.ad-slot-box {
  display: inline-block;
  min-height: 90px;
  width: 100%;
  max-width: 970px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.5rem;
}

.ad-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Verses Grid */
.verses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Individual Verse Card */
.verse-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.verse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold);
}

.verse-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.verse-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.verse-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.verse-reference {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.verse-reference:hover {
  text-decoration: underline;
}

.verse-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  position: relative;
}

.verse-body::before {
  content: "“";
  font-size: 1.8rem;
  color: var(--brand-gold);
  line-height: 0;
  margin-right: 0.25rem;
  vertical-align: -0.2rem;
}

.verse-body::after {
  content: "”";
  font-size: 1.8rem;
  color: var(--brand-gold);
  line-height: 0;
  margin-left: 0.25rem;
  vertical-align: -0.4rem;
}

/* Card Actions */
.verse-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  gap: 0.5rem;
}

.action-btn-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background-color: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-action:hover {
  background-color: var(--brand-gold-light);
  color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.btn-action.bookmarked {
  color: var(--accent-red);
  background-color: #ffe4e6;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background-color: var(--brand-navy);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="dark"] .btn-read-more {
  background-color: var(--brand-gold);
  color: #0f172a;
}

.btn-read-more:hover {
  opacity: 0.9;
  transform: translateX(2px);
}

[dir="rtl"] .btn-read-more:hover {
  transform: translateX(-2px);
}

/* Modal Dialog */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: 2.25rem;
  position: relative;
  animation: modalFadeIn 0.25s ease-out;
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 1.25rem;
}

.modal-verse-ref {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.modal-verse-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  padding: 1.25rem;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--brand-gold);
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
}

[dir="rtl"] .modal-verse-text {
  border-left: none;
  border-right: 4px solid var(--brand-gold);
}

.modal-section {
  margin-bottom: 1.5rem;
}

.modal-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.modal-section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

[data-theme="dark"] .toast-msg {
  background-color: var(--brand-gold);
  color: #0f172a;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

/* Footer */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Detail Page Specific Styling */
.verse-detail-article {
  max-width: 820px;
  margin: 2.5rem auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.verse-detail-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.verse-detail-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.verse-quote-box {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.7;
  font-style: italic;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-left: 5px solid var(--brand-gold);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}

[dir="rtl"] .verse-quote-box {
  border-left: none;
  border-right: 5px solid var(--brand-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 2.5rem 0 1.5rem;
  }
  
  .verses-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .votd-card {
    padding: 1.25rem;
  }

  .votd-text {
    font-size: 1.15rem;
  }
}

/* Privacy Policy Page Styling */
.privacy-container {
  max-width: 840px;
  margin: 2.5rem auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.privacy-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.privacy-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.privacy-last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-section h2 {
  font-size: 1.35rem;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.privacy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.privacy-section a {
  color: var(--brand-gold);
  text-decoration: underline;
}

/* Footer Compliance Disclaimer & Buttons */
.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.footer-compliance-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-compliance-links a,
.footer-cookie-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
  font-family: inherit;
}

.footer-compliance-links a:hover,
.footer-cookie-btn:hover {
  color: var(--brand-gold);
}

/* Cookie Settings Fallback Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal-overlay.show {
  display: flex;
}

.cookie-modal-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cookie-modal-title {
  font-size: 1.35rem;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.cookie-modal-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.cookie-option-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.cookie-option-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: normal;
  display: block;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.btn-cookie-save {
  background-color: var(--brand-gold);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-cookie-save:hover {
  opacity: 0.9;
}

.btn-cookie-cancel {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  cursor: pointer;
}
