body {
    font-family: "Arial", sans-serif;
    background-color: #f8f9fa;
}
.product-detail {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
}
.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.product-price {
    color: #e74c3c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.product-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.meta-item {
    margin-right: 30px;
    color: #7f8c8d;
}
.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}
.product-content {
    margin-bottom: 30px;
    line-height: 1.8;
}
.product-content h2, .product-content h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.product-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.related-products {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 30px;
}
.related-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.related-product-item {
    margin-bottom: 30px;
}
.related-product-image {
    height: 150px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.related-product-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.related-product-price {
    color: #e74c3c;
    font-weight: bold;
}
.back-link {
    margin-bottom: 20px;
}
