.woocommerce ul.products li.product {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}

.home .elementor-top-section:first-child,
.home .e-con:first-child {
    padding-top: 0 !important;
}

.home .e-con:first-child {
    background-position: center 80px !important;
}

.elementor-nav-menu--main .elementor-item-active {
    background-color: #ffcc00 !important;
    color: #000 !important;
    border-radius: 8px;
    padding: 10px 18px !important;
}

.product-quantity-label {
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}

/* Product-page order */
.single-product form.cart {
    display: flex !important;
    flex-direction: column !important;
}

.single-product form.cart .ppom-wrapper {
    display: contents !important;
}

.single-product form.cart .ppom-rendering-fields {
    order: 10;
}

.single-product form.cart .quantity {
    order: 20;
    align-self: flex-start;
    margin: 15px 0 !important;
}

.single-product form.cart #ppom-price-container {
    order: 30;
    width: 100%;
}

.single-product form.cart #ppom-error-container {
    order: 40;
}

.single-product form.cart .single_add_to_cart_button {
    order: 50;
}
.moving-fish {
    position: fixed !important;
    left: 0 !important;
    top: 5% !important;
    width: 250px !important;
    max-width: 45vw;
    z-index: 9999;
    pointer-events: none;
    animation: guppy-move 15s linear infinite !important;
    will-change: transform;
}

.moving-fish img {
    display: block;
    width: 100% !important;
    height: auto !important;
}

@keyframes guppy-move {
    from {
        transform: translateX(-300px);
    }

    to {
        transform: translateX(calc(100vw + 300px));
    }
}

@media (max-width: 767px) {
    .moving-fish {
        top: 5% !important;
        width: 160px !important;
        max-width: 55vw;
        animation-duration: 12s !important;
    }
}
.wobble-text-strip {
    width: 100%;
    overflow: hidden;
    background: #078fe3;
    color: #ffffff;
    padding: 14px 20px;
    text-align: center;
}

.wobble-text-strip span {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    transform-origin: center;
    animation: gentle-swing 2.5s ease-in-out infinite;
}

@keyframes gentle-swing {
    0% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(-2deg);
    }
}
/* Wobble only the Featured Products text */
.featured-wobble .elementor-heading-title {
    display: inline-block;
    transform-origin: center;
    animation: featured-text-wobble 2s ease-in-out infinite;
}

@keyframes featured-text-wobble {
    0% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-4px);
    }

    100% {
        transform: rotate(-2deg) translateY(0);
    }
}