/* ============================================================
   TEMPLATE 3: BOLD HERO — Single Page
   Color Palette System
   ============================================================
   HOW TO SWAP PALETTES:
   1. Uncomment ONE palette block below
   2. Comment out all other palette blocks
   3. Save — that's it!
   ============================================================ */

/* --- PALETTE 1: Classic Navy & Red (ACTIVE) --- */
:root {
  --color-primary: #1B3A5C;
  --color-primary-dark: #122840;
  --color-primary-light: #E8EEF4;
  --color-secondary: #C42032;
  --color-secondary-dark: #9A1826;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-white: #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}

/* --- PALETTE 2: Modern Blue & Copper ---
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #EFF6FF;
  --color-secondary: #D97706;
  --color-secondary-dark: #B45309;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-white: #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}
*/

/* --- PALETTE 3: Forest Green & Cream ---
:root {
  --color-primary: #1E6B45;
  --color-primary-dark: #155235;
  --color-primary-light: #ECFDF5;
  --color-secondary: #B45309;
  --color-secondary-dark: #92400E;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-bg: #fffdf7;
  --color-bg-alt: #f5f0e8;
  --color-white: #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}
*/

/* --- PALETTE 4: Slate & Teal ---
:root {
  --color-primary: #334155;
  --color-primary-dark: #1E293B;
  --color-primary-light: #F1F5F9;
  --color-secondary: #0D9488;
  --color-secondary-dark: #0F766E;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-white: #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
}
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; margin-bottom: 0.5em; }
h3 { font-size: 1.35rem; font-weight: 600; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.btn-hero-donate {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
}

.btn-hero-donate:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-donate {
  background-color: var(--color-white);
  color: var(--color-secondary);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
}

.btn-cta-donate:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-donate-btn {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}

.nav-donate-btn:hover {
  background-color: var(--color-secondary-dark) !important;
}

/* ============================================================
   NAVIGATION — Transparent, solid on scroll
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO — Full viewport split layout
   ============================================================ */
/* Hero photo: recommended 1200x900px landscape or taller for cover fit */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.hero-photo {
  flex: 0 0 60%;
  background-color: #334155;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.hero-text {
  flex: 0 0 40%;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem;
  color: var(--color-white);
}

.hero-office {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero-text h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ============================================================
   PRIORITIES BAR
   ============================================================ */
.priorities-bar {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 1.25rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
}

.priorities-bar .priority-item {
  padding: 0.5rem 2rem;
  white-space: nowrap;
}

.priorities-bar .priority-divider {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background-color: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

/* About photo: recommended 500x500px square */
.about-photo-placeholder {
  width: 350px;
  height: 350px;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  border: 4px solid var(--color-primary-light);
  border-radius: 8px;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   ISSUES — Alternating full-width rows
   ============================================================ */
.issues-section {
  padding-bottom: 0;
}

.issue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
}

.issue-row:nth-child(odd) {
  background-color: var(--color-bg);
}

.issue-row:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.issue-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background-color: var(--color-primary-light);
  padding: 2rem;
}

.issue-row:nth-child(even) .issue-row-icon {
  order: 2;
}

.issue-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.issue-row-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.issue-row-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.issue-row-content .issue-detail {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================================
   ENDORSEMENTS — Dark section with horizontal scroll
   ============================================================ */
.endorsements-section {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding-bottom: 4rem;
  overflow: hidden;
}

.endorsements-section .section-title h2 {
  color: var(--color-white);
}

.endorsements-section .section-title h2::after {
  background-color: var(--color-secondary);
}

.endorsements-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 2rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.endorsements-scroll::-webkit-scrollbar {
  height: 6px;
}

.endorsements-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.endorsements-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.endorsement-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.endorsement-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  line-height: 1;
}

.endorsement-card::after {
  content: '\201D';
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  line-height: 1;
}

.endorsement-quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.endorsement-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.endorsement-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* ============================================================
   CTA / GET INVOLVED
   ============================================================ */
.cta-section {
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   EVENTS — Timeline
   ============================================================ */
.events-section {
  background-color: var(--color-bg-alt);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Center line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--color-primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 2.5rem 3rem;
}

/* Dot on the line */
.timeline-item::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--color-secondary);
  border: 3px solid var(--color-bg-alt);
  border-radius: 50%;
  top: 0.5rem;
  z-index: 2;
}

/* Left items */
.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.timeline-item.left::before {
  right: -7px;
}

/* Right items */
.timeline-item.right {
  left: 50%;
  padding-left: 3rem;
}

.timeline-item.right::before {
  left: -7px;
}

.timeline-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.timeline-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
}

.timeline-meta {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.footer-contact {
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-white);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
  min-height: 44px;
}

.back-to-top:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }

  .hero {
    flex-direction: column;
  }

  .hero-photo {
    flex: 0 0 auto;
  }

  .hero-photo-placeholder {
    min-height: 50vh;
  }

  .hero-text {
    flex: 0 0 auto;
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero-text h1 { font-size: 2.75rem; }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-placeholder {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .issue-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .issue-row-icon {
    padding: 2rem;
    font-size: 3.5rem;
  }

  .issue-row:nth-child(even) .issue-row-icon {
    order: 0;
  }

  .endorsement-card {
    flex: 0 0 300px;
  }

  /* Timeline: all on one side */
  .timeline::before {
    left: 1rem;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 3rem !important;
    padding-right: 1rem !important;
  }

  .timeline-item::before {
    left: 4px !important;
    right: auto !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .hero-text h1 { font-size: 2rem; }
  .hero-tagline { font-size: 1rem; }

  .priorities-bar {
    flex-direction: column;
    gap: 0;
  }

  .priorities-bar .priority-divider {
    width: 40px;
    height: 1px;
    margin: 0.25rem auto;
  }

  .priorities-bar .priority-item {
    padding: 0.35rem 1rem;
  }

  .issue-row-content {
    padding: 2rem 1.5rem;
  }

  .endorsement-card {
    flex: 0 0 280px;
  }

  .cta-section h2 { font-size: 2rem; }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.75rem; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; max-width: 280px; }
}


/* ============================================================
   PALETTE PICKER — Demo floating bubble
   ============================================================ */

.palette-picker {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}

.palette-picker-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.palette-picker-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.palette-picker-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.palette-picker-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.palette-picker-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: none;
  min-width: 180px;
}

.palette-picker-panel.open {
  display: block;
}

.palette-picker-panel h4 {
  margin: 0 0 12px 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  font-family: inherit;
}

.palette-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: none;
  width: 100%;
  font-family: inherit;
}

.palette-option:hover {
  background: #f5f5f5;
}

.palette-option.active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.palette-swatches {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.palette-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.palette-option-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .palette-picker { bottom: 16px; right: 16px; }
  .palette-picker-btn { padding: 10px 12px; border-radius: 14px; }
  .palette-picker-btn svg { width: 24px; height: 24px; }
}
