/* Clean Reset for Product Page */
.gsap-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    background: #f4f4f4; /* Light grey Webflow vibe */
    color: #1a1a1a;
    font-family: 'Inter', sans-serif; /* Use your preferred font */
}

/* LEFT COLUMN: Gallery */
.product-gallery-section {
    width: 60%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform-origin: center;
    /* Initial state for JS to grab */
    opacity: 0; 
    transform: scale(1.1);
}

/* RIGHT COLUMN: Sticky Info */
.product-info-section {
    width: 40%;
    position: relative;
    padding: 4rem;
    background: #ffffff;
}

.sticky-wrapper {
    position: sticky;
    top: 4rem; /* Sticks 4rem from top */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Typography & Elements */
.product-meta a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #888;
    text-decoration: none;
}

.product-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

.product-description {
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

/* WooCommerce Button Override */
button.single_add_to_cart_button {
    background-color: #000 !important;
    color: #fff !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease;
}

button.single_add_to_cart_button:hover {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gsap-product-wrapper {
        flex-direction: column;
    }
    .product-gallery-section, .product-info-section {
        width: 100%;
        padding: 1.5rem;
    }
    .sticky-wrapper {
        position: static;
    }
}