:root {
    --modulaire-blue: #184277;
    --modulaire-gold: #e1c575;
    --modulaire-green: #3F7D20;
    --modulaire-grey: #EFEFEF;
    --modulaire-red: #D32F2F;
    --modulaire-black: rgba(0, 0, 0, 0.8);
}

.submit-contact-form {
    border: 1px solid var(--modulaire-blue) !important;
    border-radius: 5px !important;
    width: 100% !important;
}

.submit-contact-form:hover {
    border-color: var(--modulaire-gold) !important;
    background-color: var(--modulaire-gold) !important;
    color: var(--modulaire-blue) !important;
}

/* Ensure post entry content has consistent spacing */
.dt-owl-item .post-entry-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.dt-owl-item .entry-title {
    height: 100px !important;
}

.dt-owl-item .entry-meta {
    margin-bottom: 10px !important;
}

.dt-owl-item .entry-excerpt {
    height: 100px !important;
}

.dt-owl-item .post-details {
    margin-top: auto !important;
}

.blog-shortcode .wf-cell {
    border: 2px solid !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure post entry content for PROJECT sections has consistent spacing */
.blog-shortcode .wf-cell  .post-entry-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.blog-shortcode .wf-cell .entry-title {
    height: 80px !important;

}

.blog-shortcode .wf-cell .entry-excerpt {
    height: 100px !important;
}



/* Ensure post entry content for category pages has consistent spacing */
.wf-cell.iso-item  .post-entry-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}


.wf-cell.iso-item  .entry-title {
    height: 60px !important;

}

.wf-cell.iso-item .product .price {
    margin-top: 20px !important;
}

.related-product .product-title {
    height: 80px !important;
}




.woocommerce div.product div.summary > .price {
    margin-bottom: 20px !important;
}

/* Ensure the parent container has relative positioning */
.woocommerce div.product {
    position: relative;
}

del {
    color: var(--modulaire-red) !important;
    text-decoration-thickness: 2px;
}

.single-product .woocommerce-Price-amount bdi::after {
    display: none !important;
}

.excl-btw {
    font-size: 12px !important;
}

.showroom-link {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 8px; /* Gap only between icon and the text wrapper */
}

.showroom-link-text {
    color: var(--modulaire-blue) !important;
    text-decoration: underline !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

.showroom-link-text:hover {
    color: var(--modulaire-gold) !important;
    text-decoration: none !important;
}

/* New wrapper for the text */
.showroom-text-wrapper {
    display: inline; /* Keeps text inline without extra gaps */
}


.mobile-footer {
    display: none;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1B2D59;
    padding: 10px 0;
    z-index: 9999;
    justify-content: space-around; /* Adjusted for evenly spaced buttons */;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .mobile-footer {
        display: flex;
    }
}

.mobile-footer .call-us-btn,
.mobile-footer .email-us-btn {
    display: inline-block;
    padding: 8px 40px 8px 50px;
    width: 45%;
    margin: 0 10px;
    color: black;
    background-color: #fad70c ;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    position: relative;
    font-family: 'Poppins';
}

.mobile-footer .call-us-btn::before,
.mobile-footer .email-us-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px; /* Adjust icon position */
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.mobile-footer .call-us-btn::before {
    content: "\f095"; /* Phone icon */
}

.mobile-footer .email-us-btn::before {
    content: "\f0e0"; /* Envelope icon */
}






