/* ================================================
   PINGGALAXY PRODUCT PAGE - Galaxy Blue Theme
   PingGalaxy Product Page
   ================================================ */


.pg-product-page {
    background: var(--pg-bg-page);
    min-height: 100vh;
    padding-bottom: 120px;
}

/* Hide WordPress footer on product pages to avoid z-index conflicts */
.single-product .site-footer,
.single-product footer#colophon {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Ensure product page has proper padding for sticky footer */
body.single-product {
    padding-bottom: 80px !important;
}

/* ================================================
   TWO COLUMN LAYOUT
   ================================================ */

.pg-product-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1024px) {
    .pg-product-container {
        padding-top: 20px;
    }
}

/* Back Navigation */
.pg-product-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--pg-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.pg-product-back:hover {
    color: var(--pg-galaxy);
}

.pg-product-back svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .pg-product-back {
        font-size: 13px;
    }
}

.pg-product-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .pg-product-columns {
        flex-direction: row;
        gap: 80px;
        align-items: flex-start;
    }
}

