/* Product Title Height Fix - Override all existing styles */

/* Desktop Product Titles */
.product-card .product-info h3,
.product-info h3,
h3.product-title {
    min-height: 75px !important;
    height: auto !important;
    max-height: 4.2em !important;
    line-height: 1.4 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
    margin-bottom: 15px !important;
}

/* Product Cards Height */
.product-card {
    min-height: 590px !important;
}

.product-info {
    padding: 25px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .product-card .product-info h3,
    .product-info h3 {
        min-height: 65px !important;
        max-height: 3.9em !important;
        -webkit-line-clamp: 3 !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .product-card {
        min-height: 440px !important;
    }
}

@media (max-width: 480px) {
    .product-card .product-info h3,
    .product-info h3 {
        min-height: 60px !important;
        max-height: 3.6em !important;
        -webkit-line-clamp: 3 !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .product-card {
        min-height: 410px !important;
    }
    
    .product-info {
        padding: 15px !important;
    }
}

@media (max-width: 360px) {
    .product-card .product-info h3,
    .product-info h3 {
        min-height: 55px !important;
        max-height: 3.3em !important;
        -webkit-line-clamp: 3 !important;
        font-size: 0.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 8px !important;
    }
    
    .product-card {
        min-height: 390px !important;
    }
}

/* Brand specific product cards if they exist */
.brand-product-card .product-content h3,
.brand-product-card h3 {
    min-height: 75px !important;
    max-height: 4.2em !important;
    -webkit-line-clamp: 3 !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

/* Override any conflicting styles */
.products-grid .product-card .product-info h3 {
    min-height: 75px !important;
    height: auto !important;
    max-height: 4.2em !important;
    -webkit-line-clamp: 3 !important;
}

/* Link styling */
.product-title-link {
    color: inherit !important;
    text-decoration: none !important;
    display: block !important;
}

.product-title-link:hover {
    color: #007bff !important;
    text-decoration: none !important;
}
