/* ======================================================
    Sticky Header
=======================================================*/
header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
    background: #eaedf2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

header.is-sticky .header-inner {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

header.is-sticky .main-navigation a,
header.is-sticky .header-right a,
header.is-sticky .cart-icon-btn {
    color: var(--text-color) !important;
}

header.is-sticky .header-right .btn {
    color: #ffffff !important;
}


/* ======================================================
    Button Ripple
=======================================================*/
.btn,
.checkout-pay-btn,
.form-submit-btn,
.cart-checkout-btn,
.product-add-to-cart {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transform: scale(0);
    animation: ripple-grow 0.55s linear forwards;
    pointer-events: none;
}

@keyframes ripple-grow {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* ======================================================
    Nav Link Hover Underline
=======================================================*/
.main-navigation a,
.mobile-nav-links a {
    position: relative;
}

.main-navigation a::after,
.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.25s ease;
}

.main-navigation a:hover::after,
.mobile-nav-links a:hover::after {
    width: 100%;
}


/* ======================================================
    Footer Link Hover Slide
=======================================================*/
.footer-links a {
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
}


/* ======================================================
    Smooth image hover scale (gallery, team)
=======================================================*/
.gallery-hero-image-wrap {
    overflow: hidden;
}

.gallery-hero-img {
    transition: transform 0.5s ease;
}

.gallery-hero-image-wrap:hover .gallery-hero-img {
    transform: scale(1.04);
}
