/* ====== Booplesnoot Gifts and More — starter styles ====== */

:root {
  --accent: #e8c1e9;   /* lavender pink */
  --ink: #333333;      /* dark text */
  --paper: #faf9f7;    /* soft background */
  --card: #ffffff;     /* product card background */
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

header {
  background-color: var(--accent);
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0 0 6px 0;
  font-size: 28px;
}

nav a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

main, section {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 16px;
}

h2 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  margin-top: 24px;
}
.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h3 {
  margin: 10px 0 6px 0;
  font-size: 18px;
}

.product p {
  margin: 6px 0 10px 0;
}

input[type="submit"] {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

input[type="submit"]:hover {
  filter: brightness(0.95);
}

footer {
  text-align: center;
  color: #666;
  padding: 24px 12px 40px;
}
.logo {
  width: 15%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}
[ bunny ]  Booplesnoot Gifts and More
.header-row {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 20px;
}

.logo {
  width: 80px;
  height: auto;
}
#shop {
  max-width: 80%;
  margin: 20px auto;
  padding: 0 16px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}


.product {
  width: 220px;
  background: var(--card);
  border: 1px solid #e5e2dd;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h3 {
  margin: 10px 0 6px 0;
  font-size: 18px;
}

.product p {
  margin: 6px 0 10px 0;
}
.details-button {
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.details-button:hover {
  filter: brightness(0.95);
}
.detail-photo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}
#about {
max-width: 80%;
  margin: 20px auto;
  padding: 0 16px;
}
#contact {
max-width: 80%;
  margin: 20px auto;
  padding: 0 16px;
}
#cart-panel {
  background: #ffffff;
  border: 1px solid #e5e2dd;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

#cart-panel h3 {
  margin-top: 0;
}

#cart-items {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 12px 0;
  text-align: left;
}

#cart-items li {
  font-size: 14px;
}

#email-order[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
