/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #01160C, #054C2C);
  color: #D0FBEA;
  line-height: 1.6;
  padding: 20px;
  animation: backgroundShift 10s ease infinite alternate;
}

/* Header */
header {
  background-color: #092D1B;
  color: #00FFAE;
  padding: 15px 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00FFAE66;
}

header h1 {
  font-size: 2rem;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #A6FFE0;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00FFAE;
}

/* Product Container */
.product-container, .item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Product Card */
.product-card, .order-item {
  background-color: #122D10;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 255, 174, 0.15);
  padding: 15px;
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
  color: #CFFFF3;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 255, 174, 0.3);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #00FFAE;
}

.product-card p {
  font-size: 0.9rem;
  color: #C0FFE7;
}

/* Buttons */
button {
  cursor: pointer;
  background-color: #00FFAE;
  border: none;
  color: #000;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #00E699;
}

button.remove-btn {
  background-color: #b71c1c;
  color: white;
}

button.remove-btn:hover {
  background-color: #ff4444;
}

/* Order form */
.order-section {
  background: #092D1B;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 255, 174, 0.15);
  color: #CFFFF3;
}

.order-section form input[type="text"],
.order-section form input[type="email"],
.order-section form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #00FFAE33;
  background-color: #01160C;
  color: #CFFFF3;
}

.order-section form button[type="submit"] {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px 10px;
  color: #77FFCC;
  font-size: 0.9rem;
}

footer .logo {
  width: 80px;
  margin-top: 10px;
}

footer a {
  display: inline-block;
  margin-top: 10px;
}

/* Animation */
@keyframes backgroundShift {
  0% {
    background: linear-gradient(135deg, #01160C, #054C2C);
  }
  100% {
    background: linear-gradient(135deg, #054C2C, #01160C);
  }
}
