/* Product Details Page Styles */
.product-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    width: 100%;
}

.product-box {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    gap: 30px;
}

.product-image-box {
    flex: 1;
    text-align: center;
}

.product-image-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.product-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info-box h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 16px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.back-to-products {
    margin-top: 15px;
    background-color: #28a745;
}

.back-to-products:hover {
    background-color: #1e7e34;
}

/* Recommended Products Section */
.recommended-products {
    text-align: center;
    padding: 40px 0;
    background: #f8f9fa;
}

.recommended-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.recommended-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.recommended-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.recommended-item img {
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
}

.recommended-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.recommended-item p {
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
}

.recommended-item .btn {
    margin-top: 10px;
}
