.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: var(--size-1); }
.mb-2 { margin-bottom: var(--size-2); }
.mb-4 { margin-bottom: var(--size-4); }
.mb-8 { margin-bottom: var(--size-8); }
.mb-16 { margin-bottom: var(--size-16); }
.mb-32 { margin-bottom: var(--size-32); }
.mt-2 { margin-top: var(--size-2); }
.mt-16 { margin-top: var(--size-16); }
.mt-32 { margin-top: var(--size-32); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: var(--size-8); }
.mt-4 { margin-top: var(--size-4); }
.pr-2 { padding-right: var(--size-2); }
.pr-4 { padding-right: var(--size-4); }
.pt-8 { padding-top: var(--size-8); }
.grid { display: grid; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-1 { grid-template-columns: minmax(0, 1fr); }
.gap-4 { gap: var(--size-4); }
.gap-1 { gap: var(--size-1); }
.gap-8 { gap: var(--size-8); }
.w-8 { width: var(--size-8); }
.h-8 { height: var(--size-8); }
.place-items-center { place-items: center; }
.items-center { align-items: center; }
.items-end { align-items: end; }
.px-4 {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
}
.px-3 {
  padding-left: var(--size-3);
  padding-right: var(--size-3);
}
.py-8 {
  padding-top: var(--size-8);
  padding-bottom: var(--size-8);
}
.pb-20 { padding-bottom: var(--size-20); }
.pb-8 { padding-bottom: var(--size-8); }
.p-16 { padding: var(--size-16); }
.p-4 { padding: var(--size-4); }
.p-2 { padding: var(--size-2); }
.p-1 { padding: var(--size-1); }
.p-0 { padding: 0; }
.hidden { display: none; }
.border-tl-4 { border-top-left-radius: var(--size-4); }
.border-tr-4 { border-top-right-radius: var(--size-4); }
.border-tl-8 { border-top-left-radius: var(--size-8); }
.border-tr-8 { border-top-right-radius: var(--size-8); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-none { flex: none; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--size-2); }
.inline { display: inline; }
.inline-block { display: inline-block; }
.w-max { width: max-content; }
.border-r-1 { border-right: 1px solid #eeeeee; }
.w-full { width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-md { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 24px; }
.text-2xl { font-size: 32px; }
.text-3xl { font-size: 40px; }
.font-semibold { font-weight: 600; }
.text-gray { color: #333333; }
.whitespace-nowrap { white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.max-w-full { max-width: 100%; }
.overflow-hidden { overflow: hidden; }
.w-max { width: max-content; }
.w-4 { width: var(--size-4); }
.w-8 { width: var(--size-8); }
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.text-green { color: var(--color-success); }
.text-red { color: var(--color-danger-darker); }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }
.bg-white { background-color: white; }
.bg-gray { background-color: #dfdfdf; }
.h-4 { height: var(--size-4); }
.h-6 { height: var(--size-6); }
.w-5 { width: var(--size-5); }
.w-6 { width: var(--size-6); }
.h-full { height: 100%; }
.block { display: block; }
.rounded-xs { border-radius: var(--size-1) }
.rounded-full { border-radius: 9999px; }
.justify-end { justify-content: end; }
.mr-2 { margin-right: var(--size-2); }
.text-white { color: white; }
.relative { position: relative; }
.italic { font-style: italic; }
.font-semibold { font-weight: 600; }
.list-none { list-style: none; }
.pl-0 { padding-left: 0; }
.leading-loose { line-height: 1.5; }
.underline { text-decoration: underline; }
.mb-20 { margin-bottom: var(--size-20); }
.hidden-on-mobile {
  @media (max-width: 768px) {
    display: none;
  }
}
.hidden-on-desktop {
  @media (min-width: 48rem) {
    display: none;
  }
}
.my-4 {
  margin-top: var(--size-4);
  margin-bottom: var(--size-4);
}
.tilted {
	background-color: var(--color-primary);
	color: white;
	padding: 1px var(--size-2);
	border-radius: 4px;
	display: inline-block;
  transition:
    transform 0.2s ease-in-out,
    color 0.2s ease-in-out,
    scale 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

.tilted--left { transform: rotate(-1.5deg); }
.tilted--right { transform: rotate(1.5deg); }
.tilted--hoverable:hover {
  transform: rotate(0);
  color: var(--color-primary);
  background-color: transparent;
  scale: 1.1;
}
.bg-transparent { background-color: transparent; }
.border-b-0 { border-bottom: 0; }
.border-gray { border-top: 1px solid #dfdfdf; }
.border-none { border: none; }
.shadow-none { box-shadow: none; }

@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}

.progress-bar {
  animation: progressBar 1.25s ease-in-out;
  animation-fill-mode: both;
  border-radius: 9999px;
  height: 100%;
}

.plan-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--size-4);

  @media (width >= 64rem) {
    flex-direction: row;
  }
}

.border {
  border-width: 1px;
  border-color: var(--color-disabled);
}
.border-dashed { border-style: dashed; }
.cursor-pointer { cursor: pointer; }
.bg-transparent { background-color: transparent; }
.shadow-none { box-shadow: none; }
.m-0 { margin: 0; }
.w-1\/2 { width: 50%; }
.text-info { color: var(--color-info-text); }
.waving-hand {
  display: inline-block;
  animation: wave-animation 2s;
  transform-origin: 70% 70%;
  font-size: 3rem;
}

.social-media {
  display: flex;
  margin-top: var(--size-8);
  gap: var(--size-2);
  color: var(--color-primary);
  border-radius: 9999px;
  padding: var(--size-1);
  border: 1px solid #dfdfdf;
  width: max-content;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;

  & > a {
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-radius: 9999px;
    padding: var(--size-1) var(--size-3);
  }

  & > a:hover {
    background-color: var(--color-primary);
    color: white;
  }
}

.product-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--size-2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-image--cart {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 75px;
  height: 75px;
}
