.proteines-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 24px 18px;
  background-color: #ffffff;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
}

.proteines-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
}

.proteines-subtitle {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.proteines-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.proteines-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proteines-label {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.proteines-input,
.proteines-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  transition: all 0.2s ease;
}

.proteines-input:focus,
.proteines-select:focus {
  outline: none;
  border-color: #000;
}

.proteines-button {
  background-color: #000;
  color: #FFFFFF !important;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  margin-top: 8px;
}

.proteines-button:hover {
  background-color: #333;
  color: #FFFFFF !important;
}

.proteines-result {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.proteines-result-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.proteines-result-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 22px;
  margin-top: 22px;
  color: #000;
  text-align: center !important;
}

.proteines-result-title h4 {
    text-align: center !important;
}

.proteines-result-value {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}

.proteines-complement {
  border-radius: 6px;
  padding: 14px 16px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 24px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.proteines-complement p {
  margin: 0;
}

.proteines-product {
  margin-bottom: 24px;
}

.proteines-product-card {
  background-color: #E9EAED;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: 0px !important;
  padding-right: 20px !important;
}

.proteines-product-image {
  max-width: 50%;
  width: 100%;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.proteines-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.proteines-product-title {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #000;
  margin: 0 !important;
  line-height: 1.4;
}

.proteines-product-button {
  font-family: "New Hero", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  color: #fff !important;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  outline: 0;
  padding: 18px 35px;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  transition: all 0.2s ease;
  display: inline-block;
}

.proteines-product-button:hover {
  background-color: #333;
  color: #FFFFFF !important;
}

.proteines-product-comment {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.proteines-precisions {
  padding-left: 10px !important;
  padding-right: 10px !important;
  background-color: #2b87da24;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.proteines-precisions p {
  margin: 0;
}

.proteines-sources {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

.proteines-sources p {
  margin: 0 0 8px 0;
  font-weight: 600;
}

.proteines-sources ul {
  margin: 0;
  padding-left: 20px;
}

.proteines-sources li {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .proteines-container {
    padding: 18px 14px;
  }
  
  .proteines-title {
    font-size: 18px;
  }
  
  .proteines-product-card {
    flex-direction: column;
    text-align: center;
  }
  
  .proteines-product-content {
    align-items: center;
    width: 100%;
  }
  
  .proteines-product-image {
    max-width: 50%;
    margin: 0 auto;
  }
  
  .proteines-product-button {
    width: 100%;
    text-align: center;
  }
}

