.product-title {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-title h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}

.product-title-link {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
}

/* Product card container */
.single-product-wrap {
    height: 300px;
    /* Fixed total height */
}

/* Image container */
.product-image {
    min-height: 180px;
    max-height: 180px;
}

/* Product title */
.product-title {
    /* min-height: 40px;
            max-height: 40px; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Show max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price section */
/* .product-price {
            min-height: 30px;
        } */

/* Make images fill their container */
.object-fit-cover {
    object-fit: cover;
}

.contact-fab {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .contact-fab {
        bottom: 100px;
    }
}


.fab-main {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ed1e54;
    color: white;
    border: none;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When active (visible) */
.fab-options.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.fab-btn.call {
    background-color: #28a745;
}

.fab-btn.whatsapp {
    background-color: #25D366;
}

.fab-btn.messenger {
    background-color: #0084FF;
}


.wishlist-btn {
    z-index: 9999;
}

.wishlist-remove-btn {
    z-index: 999;
}

.primary-color{
    background-color: #ed1e54;
}

/* --primary-font-color: #af270c; */