/* Equal height and crop blog post images */
.post-standard-image.wp-post-image {
    width: 100%;
    height: 250px; /* adjust height as needed */
    object-fit: cover; /* keeps aspect ratio and crops */
    display: block;
    border-radius: 6px; /* optional for styling */
}



/* Equal size & crop for blog/archive listing images */
.articles-card__img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

/* Reset single post featured image */
.single-post .post-standard-image {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 6 !important;
    max-width: 100% !important; /* keep responsive */
    display: block !important;
    margin: 0 auto; /* center align */
}




/* Hide Archive only on the shop page */
.woocommerce-shop h1.header-title.fl-font-style-bolt {
    font-size: 0 !important;
    position: relative;
}
.woocommerce-shop h1.header-title.fl-font-style-bolt::after {
    content: "Products";  /* Only shop shows Products */
    font-size: 64px;
    font-weight: bold;
}



/* ✅ Replace Footer Logo */
.footer-logotype-container img {
    content: url("https://zoamotorcycles.com/wp-content/uploads/2025/10/ZOA-HORIZONTAL-WHITE-scaled.png");
    max-width: 180px; /* adjust width */
    height: auto;
}

/* ✅ Replace Header Sidebar Logo */
.header-sidebar .site-logotype img,
.mobile-header .site-logotype img {
    content: url("https://zoamotorcycles.com/wp-content/uploads/2025/10/ZOA-HORIZONTAL-WHITE-scaled.png");
    max-width: 160px; /* adjust width */
    height: auto;
}




/* Default (Desktop / Laptop) */
.joinchat {
    bottom: 18px !important;
		right: 30px !important;
    z-index: 9999 !important;
}

.joinchat__button {
    width: 55px !important;
    height: 55px !important;
}

/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
    .joinchat {
        bottom: 18px !important;
        right: 18px !important;
    }
    .joinchat__button {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .joinchat {
        bottom: 18px !important;
        right: 18px !important;
    }
    .joinchat__button {
        width: 45px !important;
        height: 45px !important;
    }
}
