/* Basic styles for Cards Inspired site. Feel free to customise further. */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background-color: #fdfdfd;
    color: #333;
}
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.5em; font-weight: bold; color: #333; }
nav ul.nav { list-style: none; display: flex; gap: 15px; margin: 0; padding: 0; }
nav ul li { margin: 0; }
.user-actions a { margin-left: 15px; }
.cart-icon { font-weight: bold; }
main { padding: 20px 0; }
.product-list { display: flex; flex-wrap: wrap; gap: 20px; }
.product-item { border: 1px solid #eee; background: #fff; padding: 10px; width: calc(25% - 20px); box-sizing: border-box; }
.product-item img { width: 100%; height: auto; }
.product-item h3 { margin: 10px 0; font-size: 1.1em; }
.product-item .price { font-weight: bold; margin-bottom: 10px; }
.sidebar { width: 200px; margin-right: 20px; }
.content-with-sidebar { display: flex; }
.contact-form input, .contact-form textarea, .checkout-form input, .checkout-form select { width: 100%; padding: 8px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 3px; }
.contact-form button, .checkout-form button { padding: 10px 20px; border: none; background: #0066cc; color: #fff; border-radius: 3px; cursor: pointer; }
.contact-form button:hover, .checkout-form button:hover { background: #004c99; }
footer { background: #f7f7f7; padding: 30px 0; border-top: 1px solid #eee; margin-top: 40px; }
.footer-links { display: flex; justify-content: space-between; margin-bottom: 20px; }
.footer-links .col { width: 30%; }
.footer-links h4 { margin-bottom: 10px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 5px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input[type="email"] { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 3px; }
.newsletter button { padding: 8px 15px; border: none; background: #0066cc; color: #fff; border-radius: 3px; cursor: pointer; }
.newsletter button:hover { background: #004c99; }
.copyright { text-align: center; font-size: 0.9em; color: #888; }