a:link {
  color: #0000EE;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #551A8B;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #FF0000;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #FF0000;
  background-color: transparent;
  text-decoration: underline;
}

/* ====================== */
/* IMAGE COLUMN FIX       */
/* ====================== */
.product-image-col {
    flex: 0 0 auto; /* column width based on box */
    display: flex;
    justify-content: center;
}

/* ====================== */
/* FIXED IMAGE BOX        */
/* ====================== */
.product-image-box {
    width: 200px;
    height: 200px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff; /* white background */
    overflow: hidden;
}

/* IMAGE INSIDE BOX */
.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* MOBILE STACKING */
@media (max-width: 768px) {
    .flex-mobile-column {
        flex-direction: column !important; /* force stacking */
    }

    /* Ensure each column takes full width */
    .flex-mobile-column .gdoc-columns__content.flex-even {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Optional: center image in mobile */
    .product-image-box {
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto;
    }
}

.product-price {
    color: red;font-weight: bold; font-size: 16px;
}

.product-title{
    font-weight: bold; font-size: 20px;
}



