/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff8f0;
  color: #222;
  padding: 20px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffd700;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header img {
  height: 80px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #d2691e;
}

/* Welcome Section */
.welcome {
  margin-top: 30px;
  text-align: center;
}

.welcome img {
  margin-top: 20px;
  border-radius: 10px;
}

/* Gallery Section */
.gallery {
  margin-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Reviews Section */
.reviews {
  margin-top: 40px;
  background-color: #fff0cc;
  padding: 20px;
  border-radius: 10px;
}

.review {
  margin-bottom: 15px;
  font-style: italic;
}

/* News Section */
.news {
  margin-top: 40px;
}

.news ul {
  list-style-type: square;
  margin-left: 20px;
}

/* Contact Form */
.contact {
  margin-top: 40px;
  background-color: #ffe6b3;
  padding: 20px;
  border-radius: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form input[type="submit"] {
  background-color: #d2691e;
  color: white;
  border: none;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background-color: #a0522d;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9em;
  color: #777;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  border-radius: 8px;
  max-height: 200px;
  object-fit: cover;
}

.product h3 {
  margin: 10px 0 5px;
}

.product input[type="number"] {
  width: 60px;
  margin: 5px;
}

.product button {
  background-color: #d2691e;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product button:hover {
  background-color: #a0522d;
}
#cart-items p {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

#cart-items button {
  margin-left: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

#checkoutBtn {
  margin-top: 20px;
  background-color: #28a745;
  color: white;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#checkoutBtn:hover {
  background-color: #218838;
}
.add-to-cart {
  background-color: #ff7f00;  /* Orange color */
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.add-to-cart:hover {
  background-color: #e67300;  /* Darker orange on hover */
}
.product {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 15px;
  width: 250px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.product-image {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.price {
  font-weight: bold;
  margin: 8px 0;
}

.quantity {
  width: 50px;
  margin-left: 5px;
}

.add-to-cart {
  background-color: #ff7f00; /* orange */
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.add-to-cart:hover {
  background-color: #e67300;
}
/* Responsive Layout Improvements */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.gallery-grid img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Contact Form */
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Buttons */
form input[type="submit"],
#cookie-banner button {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
form input[type="submit"]:hover {
  background-color: #45a049;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  header, nav, .welcome, .contact, .reviews, .news {
    padding: 10px;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 5px 10px;
  }
}
