/* Grid */
.angie-pg-grid-f79cb36d {
    display: grid;
    transition: opacity 0.3s;
}

/* Card */
.angie-pg-card-f79cb36d {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.angie-pg-card-link-f79cb36d {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Image Wrap & Hover Swap */
.angie-pg-img-wrap-f79cb36d {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.angie-pg-img-main-f79cb36d,
.angie-pg-img-hover-f79cb36d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.angie-pg-img-hover-f79cb36d {
    opacity: 0;
    transform: scale(1.05);
}
.angie-pg-card-f79cb36d:hover .angie-pg-img-hover-f79cb36d {
    opacity: 1;
    transform: scale(1);
}

/* Add to Cart Button Hover */
.angie-pg-add-to-cart-wrap-f79cb36d {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2; /* above link */
}
.angie-pg-card-f79cb36d:hover .angie-pg-add-to-cart-wrap-f79cb36d {
    bottom: 20px;
}
.angie-pg-add-to-cart-f79cb36d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.angie-pg-add-to-cart-f79cb36d:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.angie-pg-add-to-cart-f79cb36d.added {
    display: none; /* WC specific behavior */
}
.angie-pg-add-to-cart-f79cb36d.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: angie-spin 0.75s linear infinite;
}

@keyframes angie-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Content */
.angie-pg-content-f79cb36d {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.angie-pg-title-f79cb36d {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}
.angie-pg-price-f79cb36d {
    font-size: 16px;
    font-weight: 600;
}
.angie-pg-price-f79cb36d del {
    opacity: 0.5;
    font-weight: 400;
    margin-right: 5px;
}

/* Load More */
.angie-pg-load-more-wrap-f79cb36d {
    text-align: center;
    margin-top: 40px;
}
.angie-pg-load-more-btn-f79cb36d {
    background: transparent;
    color: inherit;
    border: 2px solid currentColor;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}
.angie-pg-load-more-btn-f79cb36d:hover {
    background: currentColor;
    color: #000;
}