/**
 * Emergency Fix for Shop Now Button
 * This file ensures the Shop Now button is always clickable
 */

/* Force Shop Now button to be clickable */
.hero-section .hero-buttons a.btn-primary,
.hero-section .hero-buttons a:first-child.btn-primary,
.hero-section a[href*="products.php"].btn-primary {
    z-index: 99999 !important;
    position: relative !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

/* Ensure parent containers don't block */
.hero-section,
.hero-section .container,
.hero-section .row,
.hero-section .col-lg-6:first-child,
.hero-section .hero-content,
.hero-section .hero-buttons {
    pointer-events: auto !important;
    position: relative;
}

/* Ensure AOS doesn't interfere */
[data-aos="fade-right"] {
    pointer-events: auto !important;
}

[data-aos="fade-right"] * {
    pointer-events: auto !important;
}

/* Make sure no pseudo-elements block it */
.hero-section::before,
.hero-section::after {
    pointer-events: none !important;
}

.btn-primary::before,
.btn-primary::after {
    pointer-events: none !important;
}

