/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
/**
 * Button Hover Animations - Frontend Styles
 * Clean background overlay animation system
 */
/* ==========================================================================
   BASE STYLES
   ========================================================================== */
.wp-block-button.has-hover-animation .wp-block-button__link {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color var(--animation-duration, 0.4s) var(--animation-easing, ease-in-out);
  /* Hardware acceleration */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.wp-block-button.has-hover-animation .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hover-background-color, #e74c3c);
  z-index: -1;
  transition: transform var(--animation-duration, 0.4s) var(--animation-easing, ease-in-out);
}

/* ==========================================================================
   SLIDE ANIMATIONS
   ========================================================================== */
/* Slide Right (from left) */
.wp-block-button.animation-slide-right .wp-block-button__link::before {
  transform: translateX(-100%);
}

.wp-block-button.animation-slide-right:hover .wp-block-button__link::before,
.wp-block-button.animation-slide-right .wp-block-button__link:hover::before {
  transform: translateX(0);
}

/* Slide Down (from top) */
.wp-block-button.animation-slide-down .wp-block-button__link::before {
  transform: translateY(-100%);
}

.wp-block-button.animation-slide-down:hover .wp-block-button__link::before,
.wp-block-button.animation-slide-down .wp-block-button__link:hover::before {
  transform: translateY(0);
}

/* Slide Left (from right) */
.wp-block-button.animation-slide-left .wp-block-button__link::before {
  transform: translateX(100%);
}

.wp-block-button.animation-slide-left:hover .wp-block-button__link::before,
.wp-block-button.animation-slide-left .wp-block-button__link:hover::before {
  transform: translateX(0);
}

/* Slide Up (from bottom) */
.wp-block-button.animation-slide-up .wp-block-button__link::before {
  transform: translateY(100%);
}

.wp-block-button.animation-slide-up:hover .wp-block-button__link::before,
.wp-block-button.animation-slide-up .wp-block-button__link:hover::before {
  transform: translateY(0);
}

/* Diagonal Slide */
.wp-block-button.animation-diagonal .wp-block-button__link::before {
  transform: translate(-100%, -100%);
}

.wp-block-button.animation-diagonal:hover .wp-block-button__link::before,
.wp-block-button.animation-diagonal .wp-block-button__link:hover::before {
  transform: translate(0, 0);
}

/* ==========================================================================
   SCALE ANIMATIONS
   ========================================================================== */
/* Bounce Effect */
.wp-block-button.animation-bounce .wp-block-button__link::before {
  transform: scale(0);
  transition: transform var(--animation-duration, 0.5s) cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wp-block-button.animation-bounce:hover .wp-block-button__link::before,
.wp-block-button.animation-bounce .wp-block-button__link:hover::before {
  transform: scale(1);
}

/* Split Horizontal */
.wp-block-button.animation-split-h .wp-block-button__link::before {
  transform: scaleX(0);
}

.wp-block-button.animation-split-h:hover .wp-block-button__link::before,
.wp-block-button.animation-split-h .wp-block-button__link:hover::before {
  transform: scaleX(1);
}

/* Split Vertical */
.wp-block-button.animation-split-v .wp-block-button__link::before {
  transform: scaleY(0);
}

.wp-block-button.animation-split-v:hover .wp-block-button__link::before,
.wp-block-button.animation-split-v .wp-block-button__link:hover::before {
  transform: scaleY(1);
}

/* ==========================================================================
   OPACITY ANIMATIONS
   ========================================================================== */
/* Fade */
.wp-block-button.animation-fade .wp-block-button__link::before {
  opacity: 0;
  transition: opacity var(--animation-duration, 0.4s) var(--animation-easing, ease-in-out);
}

.wp-block-button.animation-fade:hover .wp-block-button__link::before,
.wp-block-button.animation-fade .wp-block-button__link:hover::before {
  opacity: 1;
}

/* ==========================================================================
   HOVER COLORS & ICONS
   ========================================================================== */
.wp-block-button.has-hover-colors:hover .wp-block-button__link,
.wp-block-button.has-hover-colors .wp-block-button__link:hover {
  color: var(--hover-text-color, #ffffff) !important;
}

.wp-block-button.has-button-icon .wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wp-block-button.has-button-icon .wp-block-button__link svg {
  color: currentColor;
  fill: currentColor;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .wp-block-button.has-hover-animation .wp-block-button__link::before {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
  .wp-block-button.has-hover-animation:hover .wp-block-button__link::before,
  .wp-block-button.has-hover-animation .wp-block-button__link:hover::before {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Focus states */
.wp-block-button.has-hover-animation .wp-block-button__link:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .wp-block-button.has-hover-animation .wp-block-button__link::before {
    border: 1px solid currentColor;
  }
}
/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .wp-block-button.has-hover-animation .wp-block-button__link::before {
    display: none;
  }
  .wp-block-button.has-hover-animation .wp-block-button__link {
    -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
  }
}

/*# sourceMappingURL=style-index.css.map*/