/* ===========================================================
   PREMIUM PRODUCT GRID — WIN SKIN CO  
   Smooth shadows, luxury glow, floating button
   =========================================================== */

.winskinco-product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    overflow: hidden;
    position: relative;
    transition: all .35s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.winskinco-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12),
                0 0 25px rgba(255, 130, 180, 0.25);
}


/* ---------------------------------------------
   PRODUCT THUMB WITH HOVER-FADE SECONDARY IMAGE
---------------------------------------------- */

.winskinco-product-card .product-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.winskinco-product-card .product-thumb img {
    width: 100%;
    display: block;
    border-radius: 14px;
    pointer-events: none !important;
}

/* Secondary image overlay */
.winskinco-product-card .product-thumb .secondary-img {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity .4s ease;
}

.winskinco-product-card:hover .product-thumb .secondary-img {
    opacity: 1;
}


/* ---------------------------------------------
   PRODUCT TITLE + PRICE
---------------------------------------------- */

.winskinco-product-card h2.woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 14px 0 6px;
    color: #222;
    text-align: center;
}

.winskinco-product-card .price {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff5fa2;
    margin-bottom: 14px;
}


/* ---------------------------------------------
   FLOATING ADD TO CART BUTTON
---------------------------------------------- */

.winskinco-product-card .add_to_cart_button {
    display: inline-block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(120deg, #ff5fa2, #ff8bd1, #ffc6e8);
    color: white !important;
    font-weight: bold;
    transition: all .35s ease;
    box-shadow: 0 4px 12px rgba(255, 110, 160, 0.35);
    position: relative;
    z-index: 10;
}

.winskinco-product-card:hover .add_to_cart_button {
    transform: translateY(-4px);
    box-shadow: 0 12px 18px rgba(255, 110, 160, 0.45);
}



.winskinco-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(120deg, #ff8bd1, #ffc6e8, #ff5fa2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease;
}

.winskinco-product-card:hover::before {
    opacity: 1;
}



/* ---------------------------------------------
   CARD SPACING + ALIGNMENT
---------------------------------------------- */
.winskinco-product-card .product-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


/* ---------------------------------------------
   MOBILE RESPONSIVENESS
---------------------------------------------- */

@media (max-width: 768px) {
    .winskinco-product-card {
        padding: 14px;
    }

    .winskinco-product-card h2.woocommerce-loop-product__title {
        font-size: 1rem;
    }

    .winskinco-product-card .add_to_cart_button {
        width: 100%;
    }
}
