/* ============================================
   WishDay Website - Warm, Inviting Design
   ============================================ */

:root {
  /* Primary - Warm Coral */
  --primary: #FF6B6B;
  --primary-light: #FFE3E3;
  --primary-dark: #E85555;
  
  /* Secondary - Soft Gold */
  --secondary: #FFB347;
  --secondary-light: #FFF4E6;
  
  /* Accent - Soft Lavender */
  --accent: #9B8BF4;
  --accent-light: #F0EDFF;
  
  /* Mint */
  --mint: #4CAF7A;
  --mint-light: #E3F5E9;
  
  /* Neutrals - Warm tones */
  --background: #FFFBF8;
  --surface: #FFFFFF;
  --surface-variant: #F8F5F2;
  
  /* Text */
  --text-primary: #2D2A26;
  --text-secondary: #6B6560;
  --text-tertiary: #A8A29E;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.12);
  --shadow-xl: 0 20px 60px rgba(45, 42, 38, 0.15);
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: 120px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

.accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 2px solid var(--surface-variant);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  background: var(--primary-light);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 248, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 42, 38, 0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 12px 24px;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-light);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 3px solid var(--background);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-social-proof p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #2D2A26 0%, #1a1815 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--background);
  border-radius: 38px;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #2D2A26;
  border-radius: 20px;
}

.app-preview {
  padding: 60px 20px 20px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.greeting {
  font-weight: 600;
  font-size: 18px;
}

.date {
  color: var(--text-tertiary);
  font-size: 14px;
}

.occasion-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.occasion-emoji {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.occasion-card-alt .occasion-emoji {
  background: var(--accent-light);
}

.occasion-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.occasion-name {
  font-weight: 600;
  font-size: 14px;
}

.occasion-days {
  color: var(--text-tertiary);
  font-size: 12px;
}

.occasion-badge {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.occasion-badge-alt {
  background: var(--accent);
}

.message-preview {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: 16px;
  border-radius: 16px;
  margin-top: 20px;
}

.message-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.message-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.message-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  background: rgba(255,255,255,0.8);
  color: var(--text-primary);
}

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

/* Floating Cards */
.float-card {
  position: absolute;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 6s ease-in-out infinite;
}

.float-card-1 {
  top: 80px;
  right: -40px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 120px;
  left: -60px;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.float-emoji {
  font-size: 20px;
}

.float-text {
  font-weight: 600;
  font-size: 14px;
}

.float-badge {
  background: var(--secondary);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: var(--section-padding) 32px;
  background: var(--surface);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--background);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--surface-variant);
  transition: all var(--transition-base);
}

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

.feature-card-large {
  grid-column: span 2;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-icon-coral {
  background: var(--primary-light);
  color: var(--primary);
}

.feature-icon-gold {
  background: var(--secondary-light);
  color: var(--secondary);
}

.feature-icon-lavender {
  background: var(--accent-light);
  color: var(--accent);
}

.feature-icon-mint {
  background: var(--mint-light);
  color: var(--mint);
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.feature-preview {
  margin-top: 24px;
}

.ai-message-demo {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--surface-variant);
}

.demo-input {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--surface-variant);
}

.demo-label {
  font-weight: 600;
  color: var(--text-tertiary);
}

.demo-output {
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: var(--primary);
  margin-right: 4px;
  animation: blink 1s ease-in-out infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  padding: var(--section-padding) 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 24px;
}

.step-visual {
  margin-bottom: 24px;
}

.step-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  text-align: left;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.form-label {
  color: var(--text-tertiary);
}

.form-value {
  font-weight: 600;
}

.step-card-notification {
  padding: 16px;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notif-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.notif-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-title {
  font-weight: 600;
  font-size: 14px;
}

.notif-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.notif-time {
  font-size: 12px;
  color: var(--text-tertiary);
}

.step-card-message {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.msg-sparkle {
  font-size: 28px;
  margin-bottom: 12px;
}

.msg-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

.msg-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 15px;
}

.step-arrow {
  font-size: 24px;
  color: var(--text-tertiary);
  margin-top: 140px;
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial {
  padding: 80px 32px;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 120px;
  color: var(--primary-light);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: 2px 8px;
  border-radius: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.author-name {
  font-weight: 600;
}

.author-title {
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ============================================
   Download Section
   ============================================ */
.download {
  padding: var(--section-padding) 32px;
}

.download-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #D84848 100%);
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.download-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
}

.download-content h2 .accent {
  background: linear-gradient(135deg, #FFE3E3 0%, #FFF4E6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

.download-buttons {
  display: flex;
  gap: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  padding: 14px 24px;
  border-radius: 14px;
  transition: all var(--transition-base);
}

.store-btn:hover {
  background: rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.store-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.store-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.download-visual {
  display: flex;
  justify-content: center;
}

.download-phone {
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-icon-large {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--surface);
  padding: 64px 32px 32px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--surface-variant);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
  
  .float-card {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-card-large {
    grid-column: span 2;
  }
  
  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .download-buttons {
    justify-content: center;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-links {
    justify-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-large {
    grid-column: span 1;
  }
  
  .steps {
    flex-direction: column;
    gap: 48px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .step {
    max-width: 100%;
  }
  
  .download-card {
    padding: 40px 24px;
  }
  
  .download-buttons {
    flex-direction: column;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .phone-mockup {
    width: 260px;
    height: 540px;
    border-radius: 40px;
  }
  
  .phone-screen {
    border-radius: 32px;
  }
}
