/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.logo {
    max-height: 50px;
}

nav a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

h1, h2 {
    color: #444;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.product-card .price {
    font-size: 1.3em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background: #0056b3;
}

.product-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.product-detail img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-detail h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-detail .price {
    font-size: 1.5em;
    color: #28a745;
    margin-bottom: 20px;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.order-form h2 {
    margin-bottom: 20px;
}

.order-form form {
    display: flex;
    flex-direction: column;
}

.order-form input[type="text"],
.order-form input[type="tel"],
.order-form input[type="number"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.order-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.order-form p {
    font-size: 1.2em;
    margin: 15px 0;
}

.order-form button {
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

.order-form button:hover {
    background: #218838;
}

@media (max-width: 600px) {
    .product-detail img {
        max-width: 100%;
    }
}