/* RESET */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f3f4f6;
}

/* HEADER */
h1 {
  background: linear-gradient(to right, #2563eb, #38bdf8);
  color: white;
  padding: 20px;
  margin: 0;
}

center p {
  color: #333;
  font-size: 15px;
}

/* MENU */
nav {
  background-color: #111827;
  padding: 12px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 12px;
}

nav a:hover {
  color: #38bdf8;
}

/* BANNER */
img {
  border-radius: 12px;
}

/* TITLE */
h2 {
  color: #2563eb;
  letter-spacing: 1px;
}

/* PRODUCT CARD */
center div {
  background-color: white;
  width: 42%;
  height: 360px;
  padding: 15px;
  margin: 15px;
  border-radius: 15px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}


center div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* PRODUCT IMAGE */
center div img {
  border-radius: 10px;
  height: 140px;
  object-fit: contain;
}

/* PRODUCT NAME */
h3 {
  color: #111827;
}

/* PRICE */
center div p {
  color: #dc2626;
  font-weight: bold;
  font-size: 16px;
}

/* BUTTON */
button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

button:hover {
  background-color: #1e40af;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
}

/* FORM */
form {
  background-color: white;
  width: 350px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* INPUT */
input,
select {
  width: 90%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

/* FORM TEXT */
form p {
  font-weight: bold;
  margin-bottom: 5px;
}

/* FOOTER */
footer {
  background-color: #111827;
  padding: 20px;
}

footer p {
  color: white;
  margin: 5px;
}

hr {
  display: none;
}