.related-product {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    max-width: 500px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.related-product h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.related-product-content {
    display: flex;
    align-items: center;
}

.related-product-image {
    flex: 0 0 120px;
    margin-right: 15px;
}

.related-product-image img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.related-product-info h4 {
    margin: 0 0 10px 0;
    color: #0066c0;
}

.related-product-info p {
    margin: 0 0 10px 0;
    color: #555555;
    line-height: 1.4;
}

.related-product-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #e53238;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.related-product-button:hover {
    background-color: #d12e34;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .related-product {
        margin: 20px 10px;
    }
    
    .related-product-content {
        flex-direction: column;
        text-align: center;
    }
    
    .related-product-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
} 