a[data-static-disabled="true"],
button[data-static-disabled="true"] {
  cursor: not-allowed !important;
  opacity: 0.75;
}

[data-static-add-to-cart="true"] {
  cursor: pointer;
}

.cart-fly-item {
  position: fixed;
  z-index: 9999;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(59, 35, 19, 0.24);
  pointer-events: none;
  transform: translate(0, 0) scale(1);
  opacity: 1;
  transition:
    transform 0.72s cubic-bezier(0.18, 0.84, 0.3, 1),
    opacity 0.72s ease,
    border-radius 0.72s ease;
  will-change: transform, opacity;
}

.cart-fly-item--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 44px;
  padding: 0 14px;
  background: linear-gradient(135deg, #e7c98f 0%, #d6b56e 100%);
  color: #4a2d18;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cart-bump {
  animation: cart-bump 0.48s ease;
}

.cart-count-badge--visible {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(142, 43, 36, 0.28);
}

.cart-count-pop {
  animation: cart-count-pop 0.4s ease;
}

.is-added-to-cart {
  animation: add-to-cart-feedback 0.68s ease;
}

.static-form-note {
  margin-top: 1rem;
  color: #7a5c46;
  font-size: 0.95rem;
}

.site-footer-advanced {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

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

.site-footer-menu-column {
  width: 100%;
  max-width: 180px;
}

.site-footer-brand-copy > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.site-footer-menu-column > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}

.site-footer-contact > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.25rem;
}

.site-footer-contact-copy > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.site-footer-heading {
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.site-footer-menu-list {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.site-footer-label {
  display: block;
  font-size: 11px;
  line-height: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer-contact p {
  font-size: 0.875rem;
  line-height: 1.75rem;
}

@media (min-width: 640px) {
  .site-footer-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .site-footer-advanced {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .site-footer-advanced {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
  }

  .site-footer-brand {
    grid-column: span 1 / span 1;
  }

  .site-footer-menus {
    grid-column: span 4 / span 4;
  }

  .site-footer-contact {
    grid-column: span 1 / span 1;
  }

  .site-footer-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
  }
}

@keyframes cart-bump {
  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.12);
  }

  65% {
    transform: scale(0.96);
  }
}

@keyframes add-to-cart-feedback {
  0%,
  100% {
    transform: translateY(0);
  }

  35% {
    transform: translateY(-2px) scale(1.03);
  }

  70% {
    transform: translateY(0) scale(0.98);
  }
}

@keyframes cart-count-pop {
  0%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.22);
  }

  70% {
    transform: scale(0.92);
  }
}
