/*
 Theme Name:   Phlox Child
 Description:  A child theme for Phlox
 Template:     phlox
 Version:      1.0.0
 Text Domain:  phlox-child
*/


/* =====================================
   NAVIGATION ROW
===================================== */

.stamps-navigation-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 35px;
    padding-top: 5px;
    clear: both;
    overflow: visible; /* Prevent cropping */
}

.stamp-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* 90x90 thumbnail */
.stamp-photo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
}

/* Navy label */
.stamp-label {
    color: #000080;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    line-height: 1;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {
    .stamp-photo {
        width: 60px;
        height: 60px;
    }

    .stamp-label {
        font-size: 14px;
    }
}


/* =====================================
   PRODUCT TITLE SIZE
===================================== */

.single-product .product_title,
.woocommerce-loop-product__title {
    font-size: 120%;
}


/* =====================================
   PRICE STYLE (NAVY + BOLD)
===================================== */

.price,
.amount,
.woocommerce-Price-amount.amount,
.price ins,
.price bdi {
    color: #000080;
    font-size: 100%;
    font-weight: bold;
}