/* Hide dropdown arrows in main menu */
.main-menu ul li.menu-item-has-children > a:after {
    display: none;
}

/* Hide WooCommerce prices and Add to Cart buttons (shop + single) */
.woocommerce .price,
.woocommerce .button.add_to_cart_button,
.woocommerce a.button.product_type_simple,
.woocommerce a.add_to_cart_button,
.woocommerce .woocommerce-Price-amount,
.woocommerce div.product form.cart,
.woocommerce-page div.product form.cart,
.woocommerce ul.products li.product .button {
    display: none !important;
}

/* Truncate product title (2 lines max) */
.themeholy-product .product-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.5em;
    font-size: 15px;
    line-height: 1.4;
}

/* Product image card styling (landscape container layout) */
.themeholy-product .product-img {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make container image fully visible (no crop) */
.themeholy-product .product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Zoom on hover */
.themeholy-product .product-img:hover img {
    transform: scale(1.05);
}

/* Hide WooCommerce review link */
.summary-content .woocommerce-review-link,
.product-about .woocommerce-review-link {
    display: none;
}

/* Hide WooCommerce product tag display */
.themeholy-product .product-tag {
    display: none;
}
.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}
