/* ==========================================================================
   CoğrafyaAtlası - Global CSS & Design System
   Modern Educational Geography Platform Style
   ========================================================================== */

:root {
  --font-main: 'Outfit', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-modal: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-blue: #38bdf8;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-purple: #a855f7;
  --border-color: #334155;
  --glass-bg: rgba(30, 41, 59, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-modal: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reset & Core */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Header & Nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0284c7, #10b981);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.nav-item button:hover,
.nav-item button.active {
  color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.1);
}

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

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

/* Layout Container */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-header {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Grade Filter Tabs */
.grade-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.grade-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.grade-btn:hover {
  border-color: var(--accent-blue);
}

.grade-btn.active {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.grade-btn.kpss-btn.active {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Map Dashboard Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.25rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Controls */
.sidebar-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.65rem 0.9rem 0.65rem 2.4rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent-blue);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--text-muted);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.category-item:hover {
  border-color: var(--accent-blue);
}

.category-item.active {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--accent-blue);
}

.cat-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.cat-badge {
  font-size: 0.75rem;
  background: var(--bg-secondary);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  color: var(--text-muted);
}

/* Leaflet Map Wrapper */
.map-container-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

#map {
  width: 100%;
  height: 620px;
  z-index: 1;
  background: #091322;
}

/* Map Legend overlay */
.map-legend {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 500;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-volcanic { background: var(--accent-rose); }
.dot-fault { background: var(--accent-amber); }
.dot-fold { background: var(--accent-purple); }
.dot-tectonic { background: var(--accent-blue); }
.dot-karstic { background: var(--accent-green); }
.dot-mineral { background: #d97706; }
.dot-agriculture { background: #16a34a; }
.dot-kpss { background: #eab308; }

/* Accordion Styles */
.category-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.accordion-group {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-primary);
}

.accordion-header {
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  user-select: none;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: var(--bg-card-hover);
}

.accordion-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}

.accordion-group.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.4rem;
  background: var(--bg-primary);
}

.accordion-group.active .accordion-body {
  display: flex;
}

/* Custom Popup Design */
.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 0.25rem !important;
}

.leaflet-popup-tip {
  background: var(--bg-card) !important;
}

.popup-card {
  padding: 0.75rem 0.5rem;
  max-width: 280px;
}

.popup-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.tag-volcano { background: rgba(244, 63, 94, 0.2); color: #fb7185; }
.tag-fault { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.tag-fold { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.tag-tectonic { background: rgba(56, 189, 248, 0.2); color: #38bdf8; }
.tag-karstic { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.tag-mineral { background: rgba(217, 119, 6, 0.2); color: #fbbf24; }
.tag-agriculture { background: rgba(22, 163, 74, 0.2); color: #4ade80; }
.tag-glacial { background: rgba(14, 165, 233, 0.2); color: #7dd3fc; }
.tag-kpss { background: rgba(234, 179, 8, 0.2); color: #fde047; }

.popup-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.popup-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.popup-btn {
  width: 100%;
  background: var(--accent-blue);
  color: #0f172a;
  border: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.popup-btn:hover {
  opacity: 0.9;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-modal);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-header {
  margin-bottom: 1.25rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.4rem;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.modal-info-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.4rem;
}

/* Quiz Section */
.section-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-card-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quiz-card-btn:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.quiz-card-btn.active {
  border-color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.08);
}

.quiz-card-btn h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.quiz-card-btn p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quiz-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.question-box {
  margin-bottom: 1.5rem;
}

.question-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.question-text {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-item:hover {
  border-color: var(--accent-blue);
}

.option-item.correct {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-green);
  color: #34d399;
}

.option-item.wrong {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--accent-rose);
  color: #fb7185;
}

.quiz-explanation {
  margin-top: 1.25rem;
  background: rgba(56, 189, 248, 0.08);
  border-left: 4px solid var(--accent-blue);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* Blank Map Game Section */
.game-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.game-score-bar {
  display: flex;
  justify-content: space-around;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.game-target-prompt {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-amber);
  margin-bottom: 1rem;
}

/* Flashcards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.flashcard {
  perspective: 1000px;
  min-height: 220px;
  cursor: pointer;
}

.flashcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flashcard.flipped .flashcard-inner {
  transform: rotateY(180deg);
}

.flashcard-front, .flashcard-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.flashcard-back {
  transform: rotateY(180deg);
  background: var(--bg-secondary);
  border-color: var(--accent-blue);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animated-fade {
  animation: fadeIn 0.3s ease forward;
}

/* Poster Promo Button & Modal Styles */
.poster-nav-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

.poster-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.poster-modal-card {
  background: var(--bg-modal);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-backdrop.active .poster-modal-card {
  transform: scale(1);
}

.poster-modal-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .poster-modal-grid {
    grid-template-columns: 1fr;
  }
}

.poster-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.poster-preview-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.poster-badge-floating {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(244, 63, 94, 0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.poster-details-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.poster-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.poster-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.poster-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.3rem 0;
}

.highlight-item {
  font-size: 0.83rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-green);
}

.poster-coupon-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px dashed var(--accent-amber);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.coupon-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.coupon-code {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-amber);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.poster-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.shopify-buy-btn {
  flex: 1;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.shopify-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.poster-dismiss-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.poster-dismiss-btn:hover {
  color: var(--text-main);
}

