.product-container {
    width: 100%;
    margin: 32px 0;
}

.product-title {
    color: #ffffff;
    background-color: #007dbf;
    padding: 10px;
    margin: 0;
    text-align: center;
}

.product-container a .product-title {
    font-size: 1.1rem; /* Min: 0.8rem, Default: 1.1rem, Max: 1.5rem */
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add "..." if overflowed */
}


.product-container a:hover .product-title {
    text-decoration: underline;
}

.product-info {
    display: flex;
    align-items: flex-start;
    border: 1px solid #c0c0c0;
    border-top: 0;
    background: #ffffff;
    padding: 0;
    gap: 0;
}

.product-photo {
    flex-shrink: 0;
}

.product-photo img {
    background: #ffffff;
    padding: 10px;
    width: 125px;
    height: 125px;
    object-fit: contain;
}

.product-details {
    flex: 1;
    padding: 10px 30px 0px 10px;
    height: 115px;
    text-align: center; /* Center text horizontally */
    display: flex;
    flex-direction: column; /* Stack children vertically */
}

.product-details span.product-name {
    color: #000000;
    display: block;
    font-weight: bold;
    padding-top: 5px;
}

.product-details span.product-price {
    display: flex;
    flex-grow: 1; /* Fill remaining space */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    font-size: 2.5rem;
    font-weight: bold;
}   

.product-details span.product-disclaimer {
    color: #000000;
    display: block;
    font-size: 0.55rem;
    line-height: 0.55rem;
    font-style: italic;
}
