/*
 * ENDOPEEL.SHOP — SAFE PHENITIA CSS
 * Temporary layout reset.
 * No HikaShop grid or structural positioning is modified.
 */

.phenitia-hidden-payment {
  display: none !important;
}

/* Proceed to checkout: visible pulse without moving the layout */
html.phenitia-it-flow a[href*="checkout"],
html.phenitia-it-flow .hikashop_cart_proceed_to_checkout,
html.phenitia-it-flow .hikashop_checkout_next_button {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00d3f1, #294cf2) !important;
  color: #fff !important;
  border: 1px solid rgba(113, 197, 241, 0.85) !important;
  box-shadow:
    0 0 0 0 rgba(0, 211, 241, 0.55),
    0 10px 25px rgba(41, 76, 242, 0.25) !important;
  animation: phenitia-safe-pulse 1.8s ease-in-out infinite !important;
}

@keyframes phenitia-safe-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0, 211, 241, 0.50),
      0 10px 25px rgba(41, 76, 242, 0.25);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(0, 211, 241, 0),
      0 14px 32px rgba(41, 76, 242, 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.phenitia-it-flow a[href*="checkout"],
  html.phenitia-it-flow .hikashop_cart_proceed_to_checkout,
  html.phenitia-it-flow .hikashop_checkout_next_button {
    animation: none !important;
  }
}
