/* ═══════════════════════════════════════════════════════════════════════════
   Cloe Coffee Builder — Front-End Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.cloe-coffee-builder-wrap {
  width: 100%;
  background: #1a1a1a;
  padding: 5rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloe-coffee-builder-container {
  max-width: 72rem;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

/* ─── Cup Section ─────────────────────────────────────────────────────────── */

.cloe-coffee-cup-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.cloe-coffee-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #c9a96e;
  margin: 0;
  text-align: center;
  font-style: italic;
  font-family: serif;
  letter-spacing: 0.02em;
}

.cloe-coffee-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #c9a96e;
  margin: 0.75rem auto 0;
  opacity: 0.5;
}

.cloe-coffee-cup-area {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -50px;
}

.cloe-glass-cup {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
  width: 380px;
  height: auto;
}

.cloe-coffee-info-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 22rem;
  box-sizing: border-box;
}

.cloe-coffee-name {
  font-size: 1.35rem;
  font-weight: 400;
  color: #c9a96e;
  margin: 0 0 0.75rem 0;
  text-align: center;
  font-style: italic;
  font-family: serif;
}

.cloe-coffee-percentages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cloe-coffee-percentage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cloe-coffee-percentage-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.cloe-coffee-percentage-label {
  flex: 1;
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.cloe-coffee-percentage-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ─── Buttons Section ─────────────────────────────────────────────────────── */

.cloe-coffee-buttons-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cloe-coffee-select-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #c9a96e;
  margin: 0 0 0.25rem 0;
  font-style: italic;
  font-family: serif;
}

.cloe-coffee-select-title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #c9a96e;
  margin-top: 0.5rem;
  opacity: 0.4;
}

.cloe-coffee-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cloe-coffee-btn {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
}

.cloe-coffee-btn.inactive {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.cloe-coffee-btn.inactive:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 169, 110, 0.25);
}

.cloe-coffee-btn.active {
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
  border-color: rgba(201, 169, 110, 0.5);
}

.cloe-coffee-btn:active {
  transform: scale(0.98);
}

.cloe-coffee-btn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cloe-coffee-btn-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.cloe-coffee-btn-indicators {
  display: flex;
  gap: 0.25rem;
}

.cloe-coffee-btn-indicator {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cloe-coffee-btn.active .cloe-coffee-btn-indicator {
  border-color: rgba(201, 169, 110, 0.35);
}

.cloe-coffee-btn-description {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  opacity: 0.5;
}

/* ─── Responsive Design ────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .cloe-coffee-builder-wrap {
    padding: 4rem 1.5rem;
  }

  .cloe-coffee-builder-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cloe-glass-cup {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .cloe-coffee-builder-wrap {
    padding: 3rem 1.5rem;
  }

  .cloe-coffee-builder-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cloe-coffee-title {
    font-size: 2rem;
  }

  .cloe-glass-cup {
    width: 300px;
  }

  .cloe-coffee-select-title {
    font-size: 1.25rem;
  }

  .cloe-coffee-info-panel {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cloe-coffee-builder-wrap {
    padding: 2.5rem 1rem;
  }

  .cloe-coffee-title {
    font-size: 1.75rem;
  }

  .cloe-glass-cup {
    width: 240px;
  }

  .cloe-coffee-btn {
    padding: 0.75rem;
  }

  .cloe-coffee-btn-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cloe-coffee-btn-indicators {
    width: 100%;
  }
}

/* ─── SVG Adjustments ─────────────────────────────────────────────────────── */

#cloe-coffee-svg {
  overflow: visible;
}
