/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7; /* light-light-grey */
  color: #000000; /* black text */
}

/* === LINKS === */
a {
  color: #00bfff; /* crystal blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #009acd; /* darker on hover */
}

/* === HEADER === */
header {
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav a {
  margin-left: 1rem;
  font-weight: bold;
}

/* === MAIN CONTENT AREA === */
main {
  padding: 2rem;
  display: block; /* or flex-direction: column if needed */
  min-height: 70vh;
  width: 100%;
  box-sizing: border-box;
}

/* Container for placeholder and button */
.placeholder-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* === PLACEHOLDER BLOCK === */
.placeholder {
  width: 100%;
  /* height: 300px;
  background-color: #e0e0e0;
  border: 2px dashed #ccc; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 1.2rem; */
  /* color: #555; */
  text-align: center;
}

/* === ORDER BUTTON === */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

button.order-btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #00bfff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button.order-btn:hover {
  background-color: #009acd;
  transform: scale(1.05);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 0.5rem;
  }

  nav a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .placeholder {
    height: 200px;
    font-size: 1rem;
  }

  button.order-btn {
    width: 100%;
    text-align: center;
  }
}





.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.product-card h3,
.product-card p {
  margin: 0 1rem;
}

.product-card h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: #333;
}

.product-card p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #555;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .product-card {
    width: 90%;
  }
}







/* === FORM ELEMENTS === */
input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  width: 100%;
  max-width: 600px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
  outline: none;
}

/* Textarea specific */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* Label styling (optional but useful) */
label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  input[type="text"],
  input[type="number"],
  textarea,
  select {
    width: 100%;
  }
}
