/* GraveJob - Sustainable End-of-Life Solutions */
/* Brand Colors: Primary #2d3748, Accent #48bb78, Secondary #e2e8f0, CTA #ed8936 */

:root {
  --primary: #2d3748;
  --primary-light: #4a5568;
  --accent: #48bb78;
  --accent-dark: #38a169;
  --accent-light: #9ae6b4;
  --secondary: #e2e8f0;
  --cta: #ed8936;
  --cta-dark: #dd6b20;
  --text: #1a202c;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-alt: #f7fafc;
  --border: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-muted); }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-secondary {
  background: var(--primary);
  color: white;
}
.btn-secondary:hover {
  background: var(--primary-light);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Section Styling */
section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-header p {
  font-size: 1.125rem;
}

/* Brand Badge */
.brand-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-badge.new {
  background: var(--cta);
}

.new-tag {
  background: white;
  color: var(--cta);
  padding: 0.125rem 0.5rem;
  border-radius: 10px;
  font-size: 0.625rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  display: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(45, 55, 72, 0.7) 50%, rgba(45, 55, 72, 0.5) 100%);
}

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

.hero-text {
  max-width: 700px;
  color: white;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
  color: var(--accent);
}

.hero-text > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-video-mobile-wrapper {
  display: none;
}

/* Hero Badge */
.hero-badge-wrapper {
  margin-top: 1rem;
}

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

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* ========================================
   HOW IT WORKS
======================================== */
.how-it-works {
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.875rem;
}

/* ========================================
   CASKET CATALOG
======================================== */
.caskets {
  background: white;
}

/* Casket grid container - ShopLift provides card styles */
.casket-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   SERVICES
======================================== */
.services {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card.featured {
  background: var(--primary);
  color: white;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-price {
  color: var(--accent-light);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card.featured .service-icon {
  color: var(--accent-light);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

/* ========================================
   COFFDROPS
======================================== */
.coffdrops {
  background: white;
}

.coffdrops-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.coffdrops-steps {
  margin-bottom: 2rem;
}

.coffdrop-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.coffdrops-pricing {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.coffdrops-pricing h4 {
  margin-bottom: 1rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row.muted {
  color: var(--text-muted);
}

.pricing-row .free {
  color: var(--accent);
  font-weight: 600;
}

.pricing-row .savings {
  color: var(--accent);
  font-size: 0.75rem;
}

.coffdrops-stat {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.coffdrops-image img {
  width: 100%;
  border-radius: 12px;
}

/* ========================================
   CASKBACK
======================================== */
.caskback {
  background: var(--bg-alt);
}

.caskback-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.caskback-image img {
  width: 100%;
  border-radius: 12px;
}

.caskback-info h3 {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.payout-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payout-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.payout-option.featured {
  border-color: var(--accent);
  background: rgba(72, 187, 120, 0.05);
}

.payout-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.payout-option p {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.careers-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   PLOTTWIST
======================================== */
.plottwist {
  background: white;
}

.plottwist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

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

.plot-type {
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
}

.plot-type h4 {
  margin-bottom: 0.5rem;
}

.plot-type p {
  font-size: 0.875rem;
}

.dashboard-preview {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.dashboard-preview h4 {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.dash-stat {
  text-align: center;
}

.dash-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.dash-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-light);
}

.plottwist blockquote,
.bonehome blockquote,
.threadbare blockquote {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.plot-note {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.plottwist-image img {
  width: 100%;
  border-radius: 12px;
}

/* ========================================
   BONEHOME
======================================== */
.bonehome {
  background: var(--bg-alt);
}

.bonehome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.bonehome-image img {
  width: 100%;
  border-radius: 12px;
}

.bone-pricing {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.bone-pricing h4 {
  margin-bottom: 1rem;
}

.bone-tier {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.bone-tier:last-of-type {
  border-bottom: none;
}

.bone-price {
  font-weight: 700;
  color: var(--accent);
}

.bone-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.bone-feature {
  margin-bottom: 1rem;
}

.bone-feature p {
  font-size: 0.875rem;
}

/* ========================================
   THREADBARE
======================================== */
.threadbare {
  background: white;
}

.threadbare-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.threadbare-info h3 {
  margin-bottom: 1rem;
}

.clothing-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.clothing-tag {
  background: var(--bg-alt);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text);
}

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

.tb-option {
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
}

.tb-option h4 {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.tb-option ul {
  list-style: none;
  font-size: 0.8125rem;
}

.tb-option li {
  padding: 0.25rem 0;
  color: var(--text-muted);
}

.tb-buttons {
  display: flex;
  gap: 1rem;
}

.threadbare-image img {
  width: 100%;
  border-radius: 12px;
}

/* ========================================
   REVENUE STACK
======================================== */
.revenue-stack {
  background: var(--primary);
  color: white;
}

.revenue-stack .section-header h2,
.revenue-stack .section-header p {
  color: white;
}

.revenue-stack .section-header p {
  opacity: 0.8;
}

.revenue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.revenue-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.revenue-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-row:last-child {
  border-bottom: none;
}

.revenue-row.header {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.revenue-row span {
  color: rgba(255, 255, 255, 0.9);
}

.gravy-preview {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
}

.gravy-preview h4 {
  margin-bottom: 0.5rem;
}

.gravy-intro {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.gravy-breakdown {
  margin-bottom: 1.5rem;
}

.gravy-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.gravy-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent-light);
}

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

.revenue-stack .btn-secondary:hover {
  background: var(--accent-dark);
}

/* ========================================
   COMPARISON
======================================== */
.comparison {
  background: var(--bg-alt);
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span {
  padding: 1rem 1.5rem;
}

.comparison-row.header {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.comparison-row.header span:first-child {
  background: transparent;
}

.comparison-row span.highlight {
  background: rgba(72, 187, 120, 0.1);
  color: var(--accent-dark);
  font-weight: 600;
}

.comparison-stat {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text);
}

/* ========================================
   TECHNOLOGY
======================================== */
.technology {
  background: white;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.tech-image img {
  width: 100%;
  border-radius: 12px;
}

.tech-feature {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.tech-feature:last-child {
  border-bottom: none;
}

.tech-feature h4 {
  margin-bottom: 0.25rem;
}

.tech-feature p {
  font-size: 0.875rem;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--bg-alt);
}

/* ========================================
   CAREERS - Join the Gravy Corps
======================================== */
.careers {
  background: var(--bg-alt);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.career-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.career-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.career-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.career-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.career-card .btn {
  width: 100%;
}

/* ========================================
   CTA
======================================== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: var(--accent);
}

.cta .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

.cta-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.cta-tagline strong {
  color: var(--accent-light);
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .casket-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .careers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .coffdrops-content,
  .caskback-content,
  .plottwist-content,
  .bonehome-content,
  .threadbare-content,
  .tech-content,
  .revenue-content {
    grid-template-columns: 1fr;
  }

  .coffdrops-image,
  .caskback-image,
  .plottwist-image,
  .bonehome-image,
  .threadbare-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .plot-types,
  .threadbare-options {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .tb-buttons {
    flex-direction: column;
  }

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

  .comparison-row {
    font-size: 0.875rem;
  }

  .comparison-row span {
    padding: 0.75rem 1rem;
  }

  /* Mobile hero video */
  .hero-bg video {
    display: none;
  }

  .hero-bg img {
    display: block;
    opacity: 0.3;
  }

  .hero-video-mobile-wrapper {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .hero-video-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-video-play-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
  }

  .hero-video-play-btn.hidden {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .payout-options {
    gap: 0.5rem;
  }

  .payout-option {
    padding: 0.75rem;
  }
}

/* Prevent iOS zoom on input focus */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px;
  }
}

/* ========================================
   CART FAB
======================================== */
.cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s, background 0.2s;
}

.cart-fab:hover {
  transform: scale(1.1);
  background: var(--accent-dark);
}

.cart-fab svg {
  width: 24px;
  height: 24px;
}

.cart-fab #cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--cta);
  color: white;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
