/* Basic styles for Au Mobile Store */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
}

header {
    background: #0073e6;
    padding: 20px;
    color: #fff;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

main {
    padding: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    width: 260px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1em;
}

.description {
    font-size: 0.9em;
    height: 60px;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    margin-top: 5px;
}

.price-discount {
    color: #e60000;
    font-weight: bold;
    margin-bottom: 10px;
}

.add-to-cart-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.quantity-input {
    width: 50px;
    padding: 3px;
}

button {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}

footer {
    background: #f1f1f1;
    padding: 10px;
    text-align: center;
    font-size: 0.8em;
    color: #555;
}