@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1410;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.infographic {
  max-width: 1200px;
  width: 100%;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  color: #f5e6d3;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.subtitle {
  color: #c4a57b;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.coffee-card {
  background: #2a2118;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(196, 165, 123, 0.2);
}

.cup-illustration {
  width: 120px;
  height: 140px;
  margin: 0 auto 30px;
  position: relative;
}

.cup-body {
  width: 100%;
  height: 100%;
  background: #1a1410;
  border: 3px solid #f5e6d3;
  border-radius: 0 0 60px 60px;
  position: relative;
  overflow: hidden;
}

.cup-tall {
  height: 160px;
}

.cup-handle {
  position: absolute;
  right: -25px;
  top: 20px;
  width: 30px;
  height: 40px;
  border: 3px solid #f5e6d3;
  border-left: none;
  border-radius: 0 50% 50% 0;
}

.coffee-layer {
  position: absolute;
  width: 100%;
}

.espresso {
  background: #3d2817;
  z-index: 1;
}

.steamed-milk {
  background: #c4a57b;
  z-index: 2;
}

.milk-foam {
  background: #f5e6d3;
  z-index: 3;
}

.water {
  background: #6b8a9e;
  z-index: 2;
}

.coffee-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  color: #f5e6d3;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.coffee-description {
  color: #c4a57b;
  font-size: 0.95em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.ingredients {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ingredient-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ingredient-label {
  font-size: 0.75em;
  color: #8a7a6a;
  width: 80px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ingredient-visual {
  flex: 1;
  height: 8px;
  border-radius: 10px;
  background: rgba(138, 122, 106, 0.2);
}

.ingredient-fill {
  height: 8px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5em;
  }

  .coffee-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 60px;
  }
}