/* ====================================
   HEMP BUNDLE SELECTOR - CSS
   Built a Pound - WordPress Integration
   Version: 2.0 - Updated with responsive improvements
   ==================================== */

/* Contenedor principal */
.bundle-selector-app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ========== PASO 1: GROWING METHOD ========== */

.grow-method-card {
  width: 310px;
  min-width: 310px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(225, 230, 237, 0.6);
  padding: 32px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #e4ebe6;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px 20px 10px;
}

.grow-method-card:hover {
  box-shadow: 0 8px 24px rgba(193, 229, 217, 0.8);
  border-color: #5a8f6a;
  transform: translateY(-4px);
}

.grow-method-icon {
  width: 104px;
  height: 104px;
  min-width: 104px;
  min-height: 104px;
  border-radius: 50%;
  background: #5a8f6a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.grow-method-icon img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.grow-method-label {
  font-weight: bold;
  font-size: 1.4em;
  color: #18442e;
  margin-bottom: 10px;
}

.grow-method-desc {
  color: #48546A;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}

/* ========== PASO 2: WEIGHT/BUNDLE SELECTION ========== */

.weight-card {
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(225, 230, 237, 0.6);
  padding: 24px 16px 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #e4ebe6;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px 20px 10px;
}

.weight-card:hover {
  box-shadow: 0 8px 24px rgba(193, 229, 217, 0.8);
  border-color: #5a8f6a;
  transform: translateY(-4px);
}

.weight-icon {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  background: #5a8f6a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  padding: 12px;
}

.weight-text {
  color: #ffffff;
  font-size: 1em;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
}

.weight-desc {
  color: #48546A;
  font-size: 0.9em;
  margin-top: 6px;
}

/* ========== BOTONES ========== */

.back-button {
  padding: 12px 30px;
  background: #5a8f6a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #4a7a5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 143, 106, 0.3);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .grow-method-card,
  .weight-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto;
  }
}
