/* /var/www/html/style.css */
body { font-family: sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; }
header { background: #fff; padding: 10px 20px; border-bottom: 1px solid #ddd; display: flex; justify-content: space-between; align-items: center; }
header h1 { margin: 0; font-size: 24px; color: #007bff; }
nav a { margin-left: 15px; text-decoration: none; color: #333; font-weight: bold; }
.container { max-width: 1000px; margin: 20px auto; padding: 0 20px; }

/* Homepage Specific */
.hero-banner { width: 100%; height: auto; display: block; }
.product-grid { display: flex; gap: 20px; margin-top: 20px; }
.product-card { background: #fff; padding: 15px; border-radius: 8px; width: 48%; box-shadow: 0 2px 4px rgba(0,0,0,0.1); text-align: center; text-decoration: none; color: inherit; display: block; }
.product-card img { max-width: 100%; height: auto; border-radius: 4px; }
.product-card h3 { margin: 10px 0 5px; }
.product-card p { margin: 0; color: #666; }

/* Product Page Specific */
.product-page-layout { display: flex; gap: 30px; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.product-image-json { width: 50%; }
.product-details { width: 50%; }
.product-image-json img { max-width: 100%; height: auto; border-radius: 4px; }
button.add-to-cart { background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 4px; font-size: 16px; cursor: pointer; margin-top: 20px; }
button.add-to-cart:hover { background: #0056b3; }

/* Cart Specific */
.cart-summary { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.cart-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.purchase-btn { background: #28a745; color: white; border: none; padding: 10px 20px; border-radius: 4px; font-size: 16px; cursor: pointer; text-decoration: none; display: inline-block; margin-top: 20px; }
