/* Minimal CSS for Bot Product Pages - Optimized for SEO */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #212427; }
a { color: inherit; text-decoration: none; }
header { background: #fff; border-bottom: 1px solid #e5e5e5; padding: 1rem 2rem; }
header nav { display: flex; gap: 2rem; flex-wrap: wrap; }
header nav a { font-weight: 500; }
header nav a:hover { text-decoration: underline; }
footer { background: #f7f7f7; padding: 3rem 2rem; margin-top: 3rem; }
footer nav { display: flex; gap: 3rem; flex-wrap: wrap; }
footer nav div { flex: 1; min-width: 200px; }
footer nav h3 { font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
footer nav a { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.container { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.main-content { display: flex; gap: 3rem; flex-wrap: wrap; }
.image-section { flex: 1; min-width: 300px; max-width: 600px; }
.image-container { background: #f7f7f7; padding: 2rem; margin-bottom: 1rem; }
.product-image { width: 100%; height: auto; }
.details-list { margin-top: 2rem; }
.details-list ul { padding-left: 1.5rem; }
.details-list li { margin-bottom: 0.75rem; }
.info-section { flex: 1; min-width: 300px; max-width: 700px; }
.brand-name { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; }
.product-name { font-size: 1.5rem; font-weight: 300; margin-bottom: 1rem; }
.price { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.price-row { display: flex; align-items: center; gap: 1rem; }
.price-original { text-decoration: line-through; opacity: 0.6; }
.price-discount { color: #ff0000; }
.color-section, .sizes-section { margin-bottom: 1.5rem; }
.color-label, .sizes-label { font-size: 1.2rem; font-weight: 300; margin-bottom: 0.5rem; }
.color-display { display: flex; align-items: center; gap: 0.5rem; }
.color-swatch { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #ccc; }
.sizes-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-item { padding: 0.5rem 1rem; border: 1px solid #ccc; min-width: 80px; text-align: center; }
.size-unavailable { opacity: 0.5; text-decoration: line-through; }
.description-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #e5e5e5; }
.description-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.description-text { color: rgba(33, 36, 39, 0.8); }
.return-section { margin-top: 2rem; }
.return-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
@media (max-width: 768px) {
  .container { padding: 1rem; }
  .main-content { flex-direction: column; }
  header nav { gap: 1rem; }
  footer nav { flex-direction: column; }
  .brand-name, .product-name, .price { font-size: 1.2rem; }
}
