/* Main Styles for CuteCare Website */

/* Color Variables */
:root {
  --primary-pink: #ff69b4; /* Hot pink */
  --primary-purple: #9370db; /* Medium purple */
  --accent-pink: #ff1493; /* Deep pink for accents */
  --light-pink: #ffeff0; /* Light pink for backgrounds */
  --light-purple: #f0e6ff; /* Light purple for backgrounds */
  --dark-purple: #4b0082; /* Indigo for contrast */
  --warm-gray: #f3f4f6; /* Warm gray for sections */
  --text-dark: #1f2937; /* Dark text for readability */
  --text-light: #6b7280; /* Light text for secondary content */
  --text-white: #ffffff; /* Pure white for better contrast */
  --text-hero: #f0f9ff; /* Light blue-white for hero sections */
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
}

/* Space between flex items in RTL */
[dir="rtl"] .space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

[dir="rtl"] .space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

/* Gap utilities in RTL */
[dir="rtl"] .gap-4 {
  gap: 1rem;
}

[dir="rtl"] .gap-6 {
  gap: 1.5rem;
}

[dir="rtl"] .gap-8 {
  gap: 2rem;
}

[dir="rtl"] .gap-12 {
  gap: 3rem;
}

/* Flex justify properties in RTL */
[dir="rtl"] .justify-between {
  justify-content: space-between;
}

[dir="rtl"] .justify-around {
  justify-content: space-around;
}

[dir="rtl"] .justify-evenly {
  justify-content: space-evenly;
}

/* Sidebar positioning in RTL */
[dir="rtl"] #sidebar {
  left: auto;
  right: 0;
}

[dir="rtl"] #sidebar.-translate-x-full {
  transform: translateX(100%) !important;
}

[dir="rtl"] #sidebar.md\:translate-x-0 {
  transform: translateX(0);
}

/* Additional RTL sidebar fixes */
[dir="rtl"] #sidebar.transform.transition-transform.duration-300.ease-in-out.-translate-x-full {
  transform: translateX(100%) !important;
}

[dir="rtl"] #sidebar.transform.transition-transform.duration-300.ease-in-out.md\:translate-x-0 {
  transform: translateX(0) !important;
}

[dir="rtl"] #sidebar.transform.transition-transform.duration-300.ease-in-out.lg\:translate-x-0 {
  transform: translateX(0) !important;
}

/* Tablet view fixes for RTL */
@media (min-width: 768px) and (max-width: 1023px) {
  [dir="rtl"] #sidebar.md\:translate-x-0 {
    transform: translateX(0) !important;
  }
}

/* Margin adjustments for user dashboard */
/* On tablet screens, apply margin when sidebar is visible */
@media (min-width: 768px) and (max-width: 1023px) {
  .lg\:ml-64 {
    margin-left: 16rem;
  }
  
  [dir="rtl"] .lg\:ml-64 {
    margin-left: 0;
    margin-right: 16rem;
  }
}

[dir="rtl"] .md\:ml-64 {
  margin-left: 0;
  margin-right: 16rem;
}

[dir="rtl"] .lg\:ml-64 {
  margin-left: 0;
  margin-right: 16rem;
}

[dir="rtl"] .ml-1 {
  margin-left: 0;
  margin-right: 0.25rem;
}

[dir="rtl"] .mr-1 {
  margin-right: 0;
  margin-left: 0.25rem;
}

[dir="rtl"] .mr-3 {
  margin-right: 0;
  margin-left: 0.75rem;
}

[dir="rtl"] .mr-4 {
  margin-right: 0;
  margin-left: 1rem;
}

[dir="rtl"] .pl-4 {
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .pr-4 {
  padding-right: 0;
  padding-left: 1rem;
}

[dir="rtl"] .text-right {
  text-align: left;
}

[dir="rtl"] .float-right {
  float: left;
}

[dir="rtl"] .float-left {
  float: right;
}

[dir="rtl"] .navbar-nav {
  padding-right: 0;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

[dir="rtl"] .dropdown-menu-right {
  right: auto;
  left: 0;
}

/* Sidebar overlay in RTL */
[dir="rtl"] #sidebar-overlay {
  left: auto;
  right: 0;
}

/* RTL sidebar positioning */
[dir="rtl"] #sidebar {
  left: auto;
  right: 0;
}

[dir="rtl"] #sidebar.md\:translate-x-0 {
  transform: translateX(0) !important;
}

#sidebar-overlay {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

#sidebar-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

[dir="rtl"] #sidebar-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

/* Navbar Styles */
#navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#navbar:hover {
  background: linear-gradient(to right, #ffffff, #ffeff0);
}

#navbar.scrolled {
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.25);
}

.navbar-brand {
  color: var(--primary-pink) !important;
  font-weight: 700;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-pink) !important;
}

.dropdown-menu {
  background-color: white;
  border: 1px solid var(--light-pink);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-item {
  color: var(--text-dark) !important;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--light-pink);
  color: var(--primary-pink) !important;
}

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Sidebar */
#sidebar {
  transition: transform 0.3s ease-in-out;
}

/* FAQ Accordion */
.faq-answer {
  transition: all 0.3s ease-in-out;
}

/* Form Styles */
input, select, textarea {
  border: 2px solid #d1d5db;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

.form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

/* Card Styles */
.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* New Card Styles for Service Boxes */
.service-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.service-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-pink);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-button {
  align-self: center;
  margin-top: auto;
}

/* Button Styles */
button {
  transition: all 0.3s ease;
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.3);
}

.btn-primary {
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink) !important;
  color: white !important;
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple)) !important;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--accent-pink) !important;
  border-color: var(--accent-pink) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, var(--accent-pink), var(--primary-pink)) !important;
}

.btn-outline-primary {
  border-color: var(--primary-pink) !important;
  color: white !important;
  background-color: rgba(255, 239, 240, 0.1) !important;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(255, 239, 240, 0.2);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-pink) !important;
  color: white !important;
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple)) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
}

.btn-light {
  background-color: var(--light-pink) !important;
  border-color: var(--light-pink) !important;
  color: var(--primary-pink) !important;
}

.btn-light:hover {
  background-color: var(--primary-pink) !important;
  border-color: var(--primary-pink) !important;
  color: white !important;
  background: linear-gradient(to right, var(--primary-pink), var(--primary-purple)) !important;
}

/* Special CTA buttons for gradient backgrounds */
.btn-cta-primary {
  background-color: white !important;
  border: 2px solid white !important;
  color: var(--primary-pink) !important;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
}

.btn-cta-primary:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: var(--accent-pink) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
  background-color: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: white !important;
  color: var(--primary-pink) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Style for Login Button */
.nav-login-btn {
  background-color: var(--primary-pink) !important;
  color: white !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(255, 105, 180, 0.3);
}

.nav-login-btn:hover {
  background-color: var(--accent-pink) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.4);
}

.nav-login-btn i {
  margin-right: 0.5rem;
}

/* Chart Container */
#CuteCareChart, #performanceChart {
  max-width: 100%;
  height: auto;
}

/* Stats Cards */
.stats-card {
  background: linear-gradient(135deg, var(--light-pink) 0%, white 100%);
  border-left: 4px solid var(--primary-pink);
  transition: all 0.3s ease;
}

.stats-card:hover {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-purple) 100%);
  transform: scale(1.02);
}

.stats-card .stats-value {
  color: var(--primary-pink);
  font-weight: 700;
}

/* Hero Sections */
.hero-section {
  color: var(--text-hero);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple)) !important;
  transition: background 0.5s ease;
}

.hero-section:hover {
  background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple)) !important;
}

.hero-section h1, .hero-section h2, .hero-section p {
  color: var(--text-hero);
}

.hero-section a {
  color: var(--text-hero);
  font-weight: 600;
}

/* Hero section image adjustment for better visual balance */
.hero-section img {
  max-height: 400px;
  object-fit: cover;
  width: auto;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  .hero-section img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section img {
    max-height: 250px;
  }
}

/* Tablet view adjustments for hero section alignment */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section img {
    max-height: 350px;
    margin-top: 2rem;
  }
}

/* Section Headers */
h2.section-title {
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

h2.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-pink);
  border-radius: 2px;
}

/* Responsive Adjustments */

/* Animation for dropdowns */
.dropdown-menu {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Transition Effect */
.bg-transition {
  background: linear-gradient(to right, #ffffff, #ffeff0);
  transition: all 0.5s ease;
}

.bg-transition:hover {
  background: linear-gradient(to right, #ffeff0, #f0e6ff);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 105, 180, 0.1);
}

/* Enhanced section spacing and visual separation */
section {
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e7eb;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

section:last-child {
  border-bottom: none;
}

section:hover {
  background: linear-gradient(to right, rgba(255, 239, 240, 0.3), rgba(240, 230, 255, 0.3));
}

/* Remove border for specific sections that shouldn't have it */
.hero-section,
.py-16.bg-gradient-to-r.from-pink-500.to-purple-400.hero-section,
footer {
  border-bottom: none;
}

/* Remove the old bg-green-transition styles since we're using a new approach */
.bg-green-transition {
  background: none;
  border-radius: 0;
}

.bg-green-transition:hover {
  background: none;
  transform: none;
  box-shadow: none;
}

/* Card styling for better visual hierarchy */
.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Alternate section backgrounds for better differentiation */
section:nth-child(even) {
  background-color: #ffffff;
}

section:nth-child(odd) {
  background-color: #f9fafb;
}

/* Override alternating backgrounds for specific sections */
.hero-section,
.py-16.bg-gradient-to-r.from-pink-500.to-purple-400.hero-section {
  background-color: transparent !important;
}

.py-16.bg-gray-50,
.py-16.bg-gray-100 {
  background-color: #f9fafb !important;
}

.py-16.bg-white {
  background-color: #ffffff !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll padding to account for fixed navbar */
html {
  scroll-padding-top: 4rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #cbd5e1;
}

.footer-heading {
  color: var(--primary-pink);
  font-weight: 600;
}

.footer-link {
  color: #cbd5e1;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

.footer-contact i {
  color: var(--primary-pink);
}

.footer-copyright {
  border-top: 1px solid #334155;
}

/* Print styles */
@media print {
  #navbar, #sidebar, footer {
    display: none;
  }
  
  main {
    margin-left: 0 !important;
  }
}

/* Hide sidebar completely on mobile and tablet views */
/* For admin dashboard (md breakpoint - 768px) */
@media (max-width: 767px) {
  #sidebar {
    display: none !important;
  }
  
  #sidebar-overlay {
    display: none !important;
  }
  
  [dir="rtl"] #sidebar {
    display: none !important;
  }
  
  [dir="rtl"] #sidebar-overlay {
    display: none !important;
  }
  
  .md\:ml-64 {
    margin-left: 0;
  }
  
  [dir="rtl"] .md\:ml-64 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .pt-24 {
    padding-top: 4rem;
  }
}

/* For user dashboard (lg breakpoint - 1024px) */
/* Hide sidebar only on mobile screens (below 768px) for user dashboard */
@media (max-width: 767px) {
  #sidebar {
    display: none !important;
  }
  
  #sidebar-overlay {
    display: none !important;
  }
  
  [dir="rtl"] #sidebar {
    display: none !important;
  }
  
  [dir="rtl"] #sidebar-overlay {
    display: none !important;
  }
  
  .lg\:ml-64 {
    margin-left: 0;
  }
  
  [dir="rtl"] .lg\:ml-64 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .pt-24 {
    padding-top: 4rem;
  }
}

/* Show sidebar on large screens */
/* For both admin and user dashboards */
@media (min-width: 768px) {
  #sidebar {
    display: block !important;
  }
  
  /* Fix for RTL sidebar visibility on tablet */
  [dir="rtl"] #sidebar {
    display: block !important;
    transform: translateX(0) !important;
  }
  
  /* Additional fix for RTL sidebar visibility on tablet */
  [dir="rtl"] #sidebar.md\:translate-x-0 {
    transform: translateX(0) !important;
  }
  
  /* Additional fix for RTL sidebar visibility on tablet for user dashboard */
  [dir="rtl"] #sidebar.lg\:translate-x-0 {
    transform: translateX(0) !important;
  }
}

/* Adorable Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-5deg);
  }
  20% {
    transform: rotateZ(3deg);
  }
  25% {
    transform: rotateZ(-3deg);
  }
  30% {
    transform: rotateZ(2deg);
  }
  35% {
    transform: rotateZ(-1deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Adorable Animation Classes */
.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-heartbeat {
  animation: heartBeat 1.5s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin 4s linear infinite;
}

.animate-wiggle {
  animation: wiggle 2s infinite;
}

/* Adorable Hover Effects */
.hover-heartbeat:hover {
  animation: heartBeat 0.5s;
}

.hover-wiggle:hover {
  animation: wiggle 0.5s;
}

/* Adorable Decorative Elements */
.heart-icon::before {
  content: "❤";
  color: var(--primary-pink);
}

.star-icon::before {
  content: "★";
  color: var(--primary-pink);
}

.sparkle-icon::before {
  content: "✨";
  color: var(--primary-pink);
}

.cute-border {
  border: 2px solid var(--primary-pink);
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
}

.cute-border::before {
  content: "✿";
  position: absolute;
  top: -12px;
  left: 10px;
  background: white;
  padding: 0 5px;
  color: var(--primary-pink);
}

.cute-border::after {
  content: "✿";
  position: absolute;
  top: -12px;
  right: 10px;
  background: white;
  padding: 0 5px;
  color: var(--primary-pink);
}