/* 
 * Tech Repair Service - Related Products Widget Styles
 */

/* Widget container */
body .tech-repair-related-products-widget {
    margin-bottom: 30px !important;
}

/* Products list */
body .tech-repair-products-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

/* Product item */
body .tech-repair-product-item {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #eee !important;
}

body .tech-repair-product-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Product link */
body .tech-repair-product-link {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #333 !important;
}

body .tech-repair-product-link:hover {
    text-decoration: none !important;
}

/* Product thumbnail */
body .tech-repair-product-thumb {
    flex: 0 0 80px !important;
    margin-right: 10px !important;
}

body .tech-repair-product-thumb img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

/* Product info */
body .tech-repair-product-info {
    flex: 1 !important;
}

/* Product title */
body .tech-repair-product-title {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    transition: color 0.2s !important;
}



/* Product price */
body .tech-repair-product-price {
    margin-bottom: 5px !important;
    font-weight: 500 !important;
    color: var(--tech-repair-main-color, #007bff) !important;
}

body .tech-repair-product-price del {
    color: #999 !important;
    font-weight: normal !important;
    margin-right: 5px !important;
}

body .tech-repair-product-price ins {
    text-decoration: none !important;
}

/* Product rating */
body .tech-repair-product-rating {
    font-size: 12px !important;
}

body .tech-repair-product-rating .star-rating {
    float: none !important;
    display: inline-block !important;
    margin-top: 2px !important;
}

/* View all link */
body .tech-repair-view-all-products {
    text-align: center !important;
    margin-top: 10px !important;
}

body .tech-repair-view-all-link {
    text-transform: uppercase;
    display: inline-block !important;
    padding: 5px 15px !important;
    color: #fff !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: background-color 0.2s !important;
    border: 2px solid #f2480c !important;
    background: #fff !important;
    color: #f2480c !important;
    font-weight: 500;
}

body .tech-repair-view-all-link:hover {
    background-color: var(--tech-repair-hover-color, #0069d9) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Responsive styles */
@media (max-width: 767px) {
    body .tech-repair-product-thumb {
        flex: 0 0 60px !important;
    }
    
    body .tech-repair-product-title {
        font-size: 14px !important;
    }
}
