/* =========================================================
   PREMIUM SINGLE PRODUCT PAGE — WIN SKIN CO LUXURY GLOW
   ========================================================= */

.winskinco-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .winskinco-single-product {
        grid-template-columns: 1fr;
    }
}

/* Fade animation shared with grid */
.fade-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .7s ease;
}
.fade-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE FRAME */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gallery-frame img {
    cursor: default !important;
    pointer-events: none; /* Ensures no click action */
}


.image-frame img {
    width: 100%;
    display: block;
}

.image-frame .secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .4s ease;
}

.image-frame:hover .secondary-img {
    opacity: 1;
}

/* TITLE */
.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* PRICE */
.price-block .price {
    font-size: 1.7rem;
    font-weight: bold;
    color: #e600a3;
    margin-bottom: 20px;
}

/* SHORT DESC */
.short-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ADD TO CART */
.add-to-cart-block button.single_add_to_cart_button {
    background: linear-gradient(45deg, #ff60c9, #ff9ae0);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(255,0,140,0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.add-to-cart-block button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,0,140,0.55);
}

/* TABS */
.winskinco-product-tabs {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Disable click + remove pointer */
.winskinco-single-product .image-frame img {
    pointer-events: none !important;
    cursor: default !important;
}


/* =========================================================
   STICKY ADD TO CART — Premium Glow Bar
   ========================================================= */

.winskinco-sticky-atc {
    position: fixed;
    bottom: -120px; /* hidden initially */
    left: 0;
    width: 100%;
    background: #ffffffee;
    backdrop-filter: blur(10px);
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -5px 25px rgba(0,0,0,.08);
    transition: bottom .4s ease, opacity .4s ease;
    z-index: 9999;
    padding: 12px 20px;
    opacity: 0;
}

.winskinco-sticky-atc.show {
    bottom: 0;
    opacity: 1;
}

.sticky-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0,0,0,.08);
}

.sticky-info .sticky-title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.sticky-info .sticky-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e600a3;
    margin-top: 3px;
}

.sticky-btn .single_add_to_cart_button {
    background: linear-gradient(45deg, #ff60c9, #ff9ae0);
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 6px 20px rgba(255,0,160,0.4);
    transition: 0.3s ease;
}

.sticky-btn .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,0,160,0.55);
}
