/* ============================================================
   TEMPLATE 6: GRASSROOTS — 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: 'Poppins', sans-serif;
  --font-body: 'Lato', -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: 'Poppins', sans-serif;
  --font-body: 'Lato', -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: 'Poppins', sans-serif;
  --font-body: 'Lato', -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: 'Poppins', sans-serif;
  --font-body: 'Lato', -apple-system, sans-serif;
}
*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  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;
  color: var(--color-primary-dark);
}

h1 { font-size: 3.25rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5em; }
h3 { font-size: 1.25rem; font-weight: 700; }

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

section {
  padding: 5rem 0;
}

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

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

.section-header 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.9rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  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 16px rgba(0, 0, 0, 0.2);
}

.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 16px rgba(0, 0, 0, 0.2);
}

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

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

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

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

/* ============================================================
   NAVIGATION — Fixed top, solid background
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary-dark);
  box-shadow: 0 2px 12px 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.3rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  display: block;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

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

/* 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-width background image with dark overlay
   ============================================================ */
.hero {
  margin-top: 70px;
  position: relative;
  background: var(--color-primary-dark);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 8rem 0 7rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero.has-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-office {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 1rem;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--color-primary);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--color-white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT — Image + text side by side
   ============================================================ */
.about-section {
  background-color: var(--color-bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 5 / 6;
  background-color: #e2e8f0;
  border-radius: 8px;
  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;
}

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

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

.about-text .btn {
  margin-top: 1rem;
}

/* ============================================================
   ISSUES — Tabbed interface
   ============================================================ */
.issues-section {
  background-color: var(--color-bg-alt);
}

.issues-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.issue-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: var(--color-white);
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.2s ease;
  min-height: 44px;
}

.issue-tab:hover {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary-light);
}

.issue-tab.active {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.issue-tab-icon {
  font-size: 1.15rem;
}

.issues-panel {
  max-width: 700px;
  margin: 0 auto;
}

.issue-panel-content {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.issue-panel-content .issue-short {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.issue-panel-content .issue-detail {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================================
   ENDORSEMENTS — Carousel
   ============================================================ */
.endorsements-section {
  background-color: var(--color-bg);
}

.carousel {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.carousel-slide blockquote {
  background-color: var(--color-bg-alt);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  border-left: 5px solid var(--color-primary);
}

.carousel-quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.carousel-name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.carousel-title {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.carousel-dot.active {
  background-color: var(--color-primary);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background-color: var(--color-primary-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
  left: -8px;
}

.carousel-next {
  right: -8px;
}

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

.events-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1.5rem;
  padding: 0 1.5rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}

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

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

.events-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-light);
  border-radius: 3px;
}

.events-scroll {
  display: flex;
  gap: 1.5rem;
  min-width: min-content;
}

.event-card {
  flex: 0 0 300px;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-3px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 65px;
  margin-bottom: 1.25rem;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.event-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.event-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.event-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   VOLUNTEER — CTA section
   ============================================================ */
.volunteer-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  text-align: center;
}

.volunteer-content {
  max-width: 650px;
  margin: 0 auto;
}

.volunteer-content h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.volunteer-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.volunteer-content .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   DONATE — CTA section
   ============================================================ */
.donate-section {
  background-color: var(--color-bg);
  text-align: center;
}

.donate-content {
  max-width: 600px;
  margin: 0 auto;
}

.donate-content h2 {
  margin-bottom: 1rem;
}

.donate-content p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-col p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.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-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.85rem; }

  .hero h1 { font-size: 2.75rem; }
  .hero { padding: 6rem 0 5rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .carousel-btn {
    display: none;
  }
}

/* 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-dark);
    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 h1 { font-size: 2.25rem; }
  .hero-tagline { font-size: 1.1rem; }

  .stat-number { font-size: 2rem; }

  .issue-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .issue-panel-content {
    padding: 1.75rem;
  }

  .carousel-slide blockquote {
    padding: 2rem;
  }

  .carousel-quote {
    font-size: 1.05rem;
  }

  .event-card {
    flex: 0 0 260px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero { padding: 5rem 0 4rem; min-height: auto; }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 0.75rem; }

  .issue-tab-label { display: none; }
  .issue-tab { padding: 0.6rem 0.85rem; }
  .issue-tab-icon { font-size: 1.35rem; }
}


/* ============================================================
   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; }
}
