:root {
  --background: #fff8e1;
  --foreground: #2d3436;
  --card: #ffffff;
  --card-foreground: #2d3436;
  --primary: #f8bbd9;
  --primary-foreground: #2d3436;
  --secondary: #ffb5a7;
  --secondary-foreground: #2d3436;
  --muted: #a8dadc;
  --muted-foreground: #737373;
  --accent: #2e3436;
  --accent-foreground: #2d3436;
  --border: #e5e7eb;
  --radius: 0.75rem;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Pacifico', cursive;
}

/* General Reset and Base */
* {
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
}

a:link,
a:visited {
  color: var(--foreground);
}

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

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 248, 225, 0.95);
  backdrop-filter: blur(6px);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 3rem;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  font: inherit;
  color: var(--foreground);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

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

.btn.primary:hover {
  background-color: rgba(248, 187, 217, 0.9);
}

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

.btn.secondary:hover {
  background-color: rgba(248, 187, 217, 0.9);
}

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

.btn.accent:hover {
  background-color: rgba(255, 181, 167, 0.9);
}



/* MOBILE MENU ADDITIONS */
/* Basic nav styling */
        .nav {
            /* background: white; */
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            position: relative;
        }
        
        .nav-right {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .nav-link {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem 1rem;
        }
        
        .btn.primary {
            background: #007bff;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
        }
        
        /* Hide toggle button by default */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* iPad and smaller - show toggle, hide menu */
        @media (max-width: 1024px) {
            .nav-toggle {
                display: block;
                color: black;
                font-size: 3rem;
                margin-top: -.875rem;
                margin-right: 0;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            
            .nav-right {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            
            .nav-right.show {
                display: flex;
            }
        }
        
        /* Desktop - always show menu normally */
        @media (min-width: 1025px) {
            .nav-right {
                display: flex !important;
            }
        }






/* Products Section */
.products-section {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 181, 167, 0.2);
  /* color: var(--secondary); */
  color: #ec8976;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.products-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.products-title .text-secondary {
  color: var(--secondary);
  font-family: var(--font-accent);
}

.products-description {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Grid */
.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.card-content {
  padding: 1.5rem;
}

.card-image {
  aspect-ratio: 1 / 1;
  background-color: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-info {
  text-align: center;
}

.card-category {
  display: inline-block;
  background-color: rgba(168, 218, 220, 0.2);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.card-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
}

.products-footer {
  text-align: center;
}

/* Icon Placeholder Classes */
/* .icon.heart::before {
  content: '\2665';
}

.icon.shopping-bag::before {
  content: '\1F6CD';
} */

/* Icon Placeholder Classes — Font Awesome Version */
.icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 8px; /* Optional spacing */
}
.icon.heart::before {
  margin-right: 0;
}

.icon.heart::before {
  content: '\f004';
}

.icon.shopping-bag::before {
  content: '\f290';
}

/* font awesome icons - add space to right */
.fa-shopping-bag {
  margin-right: 8px;
}


/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 1rem 4rem;
  background-color: #fff8e1; /* bff-cream */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8bbd9 0%, #ffb5a7 50%, #a8dadc 100%);
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Left Text Content */
.hero-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(248, 187, 217, 0.3); /* bff-pink/30 */
  border: 1px solid #f8bbd9;
  /* border-radius: 9999px; */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d3436; /* bff-charcoal */
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #2d3436;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-family: 'Pacifico', cursive;
  color: #f8bbd9; /* bff-pink */
  display: block;
  font-size: 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* nate additions */
    transform: rotate(-2deg);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 4.5rem;
    font-size: 7rem !important;
    margin-top: -1rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(45, 52, 54, 0.8);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.hero-buttons .btn {
    width: fit-content;
    align-self: center;
}

@media (min-width: 1024px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
}

/* Buttons */
.btn.primary {
  background-color: #f8bbd9;
  color: #2d3436;
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
}

.btn.primary:hover {
  background-color: rgba(248, 187, 217, 0.9);
}

.btn.outline {
  border: 2px solid #ffb5a7;
  background-color: transparent;
  color: #2d3436;
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
}

.btn.outline:hover {
  background-color: #ffb5a7;
  color: white;
}

/* Right Image Content */
.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: center;
}

@media (min-width: 1024px) {
  .hero-images {
    justify-content: flex-end;
  }
}

.image-wrapper {
  position: relative;
}

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(1rem);
  z-index: 0;
}

.blob-pink {
  top: -1rem;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(248, 187, 217, 0.4);
}

.blob-coral {
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 181, 167, 0.4);
}

.image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 450px) {
  .image-stack {
    flex-direction: row;
  }
}

.image-card {
  position: relative;
}

.image-background {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  transform: rotate(3deg);
  z-index: 0;
  transition: transform 0.3s ease;
}

.image-background.pink {
  background-color: rgba(248, 187, 217, 0.4);
}

.image-background.coral {
  background-color: rgba(255, 181, 167, 0.4);
  transform: rotate(-3deg);
}

.group:first-of-type {
  transform: rotate(-3deg);
}
.group:last-of-type {
  transform: rotate(3deg);
  margin-left: -1rem;
}
.group:hover .image-background.pink {
  transform: rotate(6deg);
}

.group:hover .image-background.coral {
  transform: rotate(-6deg);
}

.photo {
  position: relative;
  /* width: 12rem;
  height: 14rem; */
  width: 16rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.group:hover .photo {
  transform: scale(1.05);
}

.label {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 2;
  border: 1px solid;
}

.label.pink {
  border-color: #f8bbd9;
  color: #2d3436;
}

.label.coral {
  border-color: #ffb5a7;
  color: #2d3436;
}

.heart-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 450px) {
  .heart-float {
    left: unset;
    right: -25%;
  }
}

.icon.heart.pulse::before {
  content: '\2665';
  color: rgba(248, 187, 217, 0.8);
  font-size: 4rem;
  animation: pulse 2s infinite;
}

.icon.star::before {
  content: '\2605';
  color: #2d3436;
  margin-right: 0.5rem;
}

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




/* About Section */
.about-section {
  padding: 5rem 1rem;
  background-color: #ffffff; /* var(--card) */
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(248, 187, 217, 0.2); /* primary/20 */
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  /* color: #f8bbd9; */
  color: #e47fb1;
}

.about-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #2d3436;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-description {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #737373; /* muted-foreground */
  line-height: 1.6;
}

/* Grid Layout */
.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

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

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

.photo-column.align-end {
  justify-content: flex-end;
  margin-top: 2rem;
}

.photo-item {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotate-2 {
  transform: rotate(2deg);
}

.rotate--1 {
  transform: rotate(-1deg);
}

.rotate-1 {
  transform: rotate(1deg);
}

.photo-item:hover {
  transform: rotate(0deg);
}

/* Text Section */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d3436;
}

@media (min-width: 768px) {
  .about-subtitle {
    font-size: 2rem;
  }
}

.about-paragraph {
  color: #737373;
  line-height: 1.75;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.highlight-love {
  background-color: rgba(248, 187, 217, 0.42); /* primary/10 */
  color: #2d3436;
}

.highlight-snowflake {
  background-color: rgb(255 234 214);/* secondary/10 */
  color: #2d3436;
}

/* Icons */
.icon.users::before {
  content: '\1F465'; /* 👥 */
  font-size: 1rem;
  margin-right: 0.5rem;
}

.icon.heart::before {
  content: '\2665'; /* ♥ */
  font-size: 1.25rem;
  color: #f8bbd9;
}

.icon.sparkles::before {
  content: '\2728'; /* ✨ */
  font-size: 1.25rem;
  color: #a7fffc;
}


/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  background-color: var(--card);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(168, 218, 220, 0.2); /* accent/20 */
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.contact-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-description {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Layout Grid */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  color: var(--foreground);
}
.info-item:hover {
  cursor: pointer;
}

.info-item.bg-primary {
  background-color: rgba(248, 187, 217, 0.1);
}

.info-item.bg-secondary {
  background-color: rgba(255, 181, 167, 0.1);
}

.info-item.bg-accent {
  background-color: rgba(168, 218, 220, 0.1);
}

.info-label {
  font-weight: 500;
  color: var(--foreground);
}

.info-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Custom Orders Card */
.custom-orders {
  background-color: rgba(248, 187, 217, 0.05);
  border: 1px solid rgba(248, 187, 217, 0.2);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.custom-orders h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.custom-orders p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border: 0;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background-color: #ffffff;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ababab;
}

.form-group textarea {
  resize: vertical;
}

.btn.full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon Mapping */
.icon.mail::before {
  content: '\2709'; /* ✉ */
  font-size: 1.25rem;
  color: var(--primary);
}

.icon.phone::before {
  content: '\260E'; /* ☎ */
  font-size: 1.25rem;
  color: var(--secondary);
}

.icon.mappin::before {
  content: '\1F4CD'; /* 📍 */
  font-size: 1.25rem;
  color: var(--accent);
}

.icon.heart::before {
  content: '\2665'; /* ♥ */
  font-size: 1rem;
  color: var(--accent);
  margin-right: 0.5rem;
}
.icon.heart.small::before {
  margin-right: 0;
}

.icon.send::before {
  content: '\27A1'; /* ➡ */
  font-size: 1rem;
  margin-right: 0.5rem;
}


/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
  filter: invert(100%);
}

.footer-description {
  color: rgba(255, 248, 225, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-button {
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
}

.social-button .icon {
  font-size: 1rem;
}

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

.bg-primary:hover {
  background-color: rgba(248, 187, 217, 0.8);
}

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

.bg-secondary:hover {
  background-color: rgba(255, 181, 167, 0.8);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-accent:hover {
  background-color: rgba(168, 218, 220, 0.8);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 248, 225, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 225, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-credit {
  color: rgba(255, 248, 225, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.icon.instagram::before {
  content: '\f16d'; /* fallback placeholder */
}

.icon.facebook::before {
  content: '\f09a'; /* fallback placeholder */
}

.icon.twitter::before {
  content: '\f099'; /* fallback placeholder */
}

.icon.heart.small::before {
  content: '\2665';
  color: var(--primary);
  font-size: 1rem;
}
