:root {
  --primary: #F4EFE7;
  --secondary: #C27E82;
  --accent: #7A6F63;
  --leaf: #8BAA78;
  --dark: #2F2F2F;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(47, 47, 47, 0.1);
  --shadow-md: 0 4px 8px rgba(47, 47, 47, 0.15);
  --shadow-lg: 0 8px 16px rgba(47, 47, 47, 0.2);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  color: var(--dark);
  background-color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(244, 239, 231, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  border-bottom: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  z-index: 1001;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--leaf));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  transform: rotate(-5deg);
  animation: gentleSway 4s ease-in-out infinite;
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--space-lg);
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: var(--dark);
  font-size: var(--font-size-base);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  display: block;
}

.nav-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-menu li a:hover::before {
  width: 80%;
}

.menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  font-size: var(--font-size-xl);
  color: white;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.menu-toggle.active {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0s 0.4s, opacity 0.4s;
  z-index: 1000;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  visibility: hidden;
  opacity: 0;
}

.mobile-menu.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0s, opacity 0.4s;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  list-style: none;
  padding: 0;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu li a {
  display: block;
  width: 100%;
  padding: var(--space-sm) 0;
  color: var(--dark);
  font-size: var(--font-size-base);
}

.mobile-menu .close-btn {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--secondary);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: var(--font-size-xl);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mobile-menu .close-btn:hover {
  transform: rotate(90deg);
  background: var(--accent);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../gallery/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 4rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244, 239, 231, 0.7) 0%, rgba(194, 126, 130, 0.2) 100%);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 170, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  color: var(--dark);
  margin-bottom: var(--space-md);
  animation: fadeIn 1.5s ease-out;
  text-shadow: 2px 2px 4px rgba(244, 239, 231, 0.8);
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: var(--dark);
  margin-bottom: var(--space-lg);
  animation: fadeIn 2s ease-out;
  max-width: 100%;
  text-shadow: 1px 1px 2px rgba(244, 239, 231, 0.8);
}

.hero-figure {
  position: absolute;
  width: 300px;
  height: 400px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.hero-figure svg {
  width: 100%;
  height: 100%;
}

.floral-figure-1 {
  top: 10%;
  left: 5%;
  animation: floatRotate 6s ease-in-out infinite;
}

.floral-figure-2 {
  bottom: 15%;
  right: 8%;
  animation: floatRotate 8s ease-in-out infinite reverse;
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-25px) rotate(3deg);
  }
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  animation: fadeIn 2.5s ease-out;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  font-size: var(--font-size-sm);
  color: var(--accent);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
  transition: all var(--transition);
}

.hero-tags span:nth-child(even) {
  transform: rotate(2deg);
}

.hero-tags span:hover {
  transform: rotate(0deg) scale(1.05);
  background: var(--secondary);
  color: white;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: white;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section:nth-child(even)::before {
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

.section-content {
  position: relative;
  z-index: 1;
}

.section-content > p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::before {
  content: '✦';
  position: absolute;
  left: calc(50% - 80px);
  top: calc(100% + 0.5rem);
  color: var(--secondary);
  font-size: var(--font-size-sm);
  opacity: 0.6;
}

.section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--leaf));
  margin: var(--space-md) auto 0;
  border-radius: 50px;
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: white;
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotate(-1deg);
}

.product-card:nth-child(even) {
  transform: rotate(1deg);
}

.product-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.product-info {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

.product-info p {
  color: var(--accent);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.product-price {
  font-size: var(--font-size-xl);
  color: var(--secondary);
  font-weight: 600;
  margin-top: auto;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}

.about-image {
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: all var(--transition);
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.contact-section {
  background: white;
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(194, 126, 130, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(122, 111, 99, 0.2);
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: border-color var(--transition);
  background: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(194, 126, 130, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: 30px 30px 30px 30px / 60% 60% 40% 40%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
  transition: all var(--transition);
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.map-container:hover {
  transform: rotate(0deg) scale(1.01);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-info {
  text-align: center;
  margin-top: var(--space-lg);
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.map-info p {
  margin-bottom: var(--space-sm);
  text-align: center;
}

.footer {
  background: var(--accent);
  color: white;
  padding: var(--space-xxl) 0 var(--space-xl);
  margin-top: var(--space-xxl);
  position: relative;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 12s ease-in-out infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  transition: all var(--transition);
  padding: var(--space-xs) 0;
  display: inline-block;
  position: relative;
  width: fit-content;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width var(--transition);
}

.footer-menu a:hover {
  color: white;
  padding-left: var(--space-sm);
}

.footer-menu a:hover::before {
  width: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: var(--space-lg);
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-xs);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: var(--space-lg);
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-popup.active {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-popup p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.cookie-popup-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-popup-buttons .btn {
  margin-top: 0;
  flex: 1;
  min-width: 120px;
}

.thank-you-page,
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  margin-top: 4rem;
}

.thank-you-page::before,
.error-page::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(194, 126, 130, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: floatBlob 10s ease-in-out infinite;
}

.thank-you-page p,
.error-page p {
  max-width: 100%;
  font-size: var(--font-size-lg);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
  margin-top: 4rem;
}

.legal-page h1 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.legal-page h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--leaf));
  border-radius: 50px;
}

.legal-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.legal-page h2::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.legal-page p {
  margin-bottom: var(--space-md);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: var(--secondary);
  color: white;
  border-radius: 50px 50px 50px 50px / 60% 60% 40% 40%;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.home-button:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: 30px 30px 30px 30px / 60% 60% 40% 40%;
  box-shadow: var(--shadow-sm);
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: white;
}

.table-wrapper th,
.table-wrapper td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(122, 111, 99, 0.2);
}

.table-wrapper th {
  background: var(--primary);
  font-weight: 600;
  color: var(--dark);
}

.table-wrapper tr:hover {
  background: rgba(194, 126, 130, 0.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }

  .hero-section {
    min-height: 80vh;
    margin-top: 3.5rem;
  }

  .hero-figure {
    width: 150px;
    height: 200px;
    opacity: 0.6;
  }

  .logo {
    font-size: var(--font-size-sm);
  }

  .logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    font-size: var(--font-size-base);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }

  .section::before {
    height: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-menu {
    align-items: center;
  }

  .footer-menu a {
    margin: 0 auto;
  }

  .thank-you-page,
  .error-page {
    margin-top: 3.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xxl: 2.5rem;
    --space-xl: 2rem;
  }

  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }

  .hero-content p {
    font-size: var(--font-size-base);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero-figure {
    display: none;
  }

  .logo {
    font-size: var(--font-size-xs);
  }

  .logo-icon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: var(--font-size-sm);
  }
}
