/* Frontend note: Shared primary CTA styles reused by storefront sections. */
/* Reusable primary CTA based on home page button style */
.u-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  background: #98bb3f;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: background-color 180ms ease;
}

.u-cta-primary:hover {
  background: #56633a;
  color: #fff;
}

.u-cta-primary::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 999px;
  display: inline-block;
}

/* Store hero override to match requested CTA behavior */
.hero__content .u-cta-primary {
  width: 140px;
  height: 30px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: #a2c84f;
  text-decoration: none;
  gap: 6px;
  box-shadow: none;
  position: relative;
}

.hero__content .u-cta-primary::before {
  display: none;
}

.hero__content .u-cta-primary::after {
  content: "";
  width: 0;
  height: 0;
  opacity: 0;
  transform: translateX(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    width 180ms ease,
    height 180ms ease;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M15 12H8' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10.5 9.5L8 12l2.5 2.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero__content .u-cta-primary:hover::after {
  width: 14px;
  height: 14px;
  opacity: 1;
  transform: translateX(0);
}
