.product-detail-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-left h1 {
    font-size: 2rem;
    color: #333;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-right {
    flex: 2;
}

.product-right .description {
    line-height: 1.8;
    color: #333;
}

.product-right .description img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.related-products {
    margin-bottom: 2rem;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h2 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #333;
}

.product-card .description {
    margin: 0 1rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }

    .product-left {
        align-items: center;
    }

    .product-image {
        max-width: 100%;
    }
}