body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background: #fefefe;
  color: #2d1f15;
}

.spooncalc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px;
}

.spooncalc-header {
  margin-bottom: 30px;
}

.spooncalc-header-logo {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
}

.spooncalc-header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.spooncalc-divider {
  height: 4px;
  width: 60px;
  background: #dca67b;
  margin: 14px auto;
  border-radius: 2px;
}

.spooncalc-header-subtitle {
  font-size: 1rem;
  color: #5a4638;
  max-width: 700px;
  margin: 0 auto;
}

.spooncalc-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  width: 100%;
}

.spooncalc-controls select,
.spooncalc-controls input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  min-width: 180px;
}

#calculateBtn {
  background-color: #d3782c;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#calculateBtn:hover {
  background-color: #bb631f;
}

.spooncalc-result {
  background: #fff8f1;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 20px;
  width: 100%;
  max-width: 760px;
  margin-bottom: 40px;
  text-align: left;
}

#drinkImage img {
  max-width: 120px;
  margin-bottom: 14px;
}

.spooncalc-result-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a2b20;
}

.spooncalc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.spooncalc-buttons button {
  background: #eee;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: background 0.2s ease;
}

.spooncalc-buttons button:hover {
  background: #ddd;
}

.ad-space {
  background: #f2e6d8;
  border: 2px dashed #d9b18f;
  padding: 14px;
  text-align: center;
  font-size: 0.95rem;
  border-radius: 10px;
  color: #7c5d44;
}

.intro-text {
  text-align: center;
  padding: 20px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.intro-text h2 {
  font-size: 2.3em;
  margin-bottom: 14px;
}

.intro-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5a4638;
}

/* Responsive */
@media (max-width: 768px) {
  .spooncalc-controls {
    flex-direction: column;
    align-items: center;
  }

  .spooncalc-buttons {
    justify-content: center;
  }

  .spooncalc-result {
    text-align: center;
  }
}
