.single-product div.product .product_meta{
    margin-top: 30px;
}
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 4px;
}

.time-value {
    background-color: #ffffff;
    color: #333333;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 20px;
    min-width: 30px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.time-label {
    margin-top: 2px;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
}

.separator {
    font-size: 1.1em;
    color: #666666;
    margin: 0 2px;
    align-self: flex-start;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .comingSoonCounter {
        flex-wrap: wrap;
    }
    
    .time-block {
        margin: 2px;
    }
    
    .separator {
        display: none;
    }
}

/* Specific adjustments for WooCommerce Storefront theme */
.woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
}

.woocommerce-loop-product__title,
.price,
.button.add_to_cart_button {
    order: -1;
}

.comingSoonCounter {
    order: 1;
}




.notifyMeForm {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid  var(--notifyBtnBgColor);
    background-color: #f9f9f9;
}

.notifyMeForm h3 {
    margin-top: 0;
    font-weight: bold;
    text-align: center;
}

.notifyMeForm label {
    display: block;
    margin-bottom: 5px;

}

.notifyMeForm input[type="text"],
.notifyMeForm input[type="email"],
.notifyMeForm input[type="tel"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.notifyMeForm button {
    background-color: var(--notifyBtnBgColor);
    color: var(--notifyBtnTextColor);
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.notifyMeForm button:hover {
    background-color: #45a049;
}

#notify-me-message .success {
    color: green;
}

#notifyMeMessage .error {
    color: red;
}
.product-thumbnail-container {
    position: relative;
    display: inline-block;
}

.thumbnail-badge{
    position: absolute;
    width: auto; 
    height: auto;
    z-index: 1000;
    opacity: var(--badgeOpacity);
    padding: 6px;
    border: 1px solid var(--bgColorForBadge);
    background-color: var(--bgColorForBadge);
    color: var(--textColorForBadge);
    font-size: var(--badgeFontSize);
}

.product-badge{
   position: absolute;
   width: auto; 
   height: auto;
   z-index:1000; 
   opacity: var(--badgeOpacity);
   padding: 6px;
   border: 1px solid var(--bgColorForBadge);
   background-color: var(--bgColorForBadge);
   color: var(--textColorForBadge);
   font-size: var(--badgeFontSize);
}

