#osc-progress-container {
    padding: 0 20px;
}

/* Barrière grise */
#osc-progress-inner {
    background: #b4c7b2;
    border-radius: 4px;
    overflow: hidden;
    height: 8px;
    position: relative;
    margin-top: 15px;
}
/* Barre colorée */
#osc-progress-bar {
  background: #2e5a2d;
  height: 100%;
  width: 0;
  transition: width 0.3s ease;
}
/* Texte sous la barre */
#osc-progress-text {
    font-size: 11px;
    color: #2e5a2d;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: 'Inter';
}

/* État grisé du bouton tant que < 3 */
#osc-checkout-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#ecologie-block {
    background: #d9ebd9;
    padding: 15px 20px;
    border-radius: 8px;
    color: #2e5a2d;
    font-family: "EB Garamond", Sans-serif;
    font-size: 16px;
    line-height: 18px;
    flex-direction: column;
    display: flex;
}

a.ecologie {
    color: #2e5a2d !important;
    font-style: normal !important;
    font-size: 11px;
    margin-left: 15px;
    margin-top: 10px;
}

.ecologie-text {
  white-space: nowrap;
}

.ecologie-text span {
  font-size: 1.2em;
}

.ecologie {
  color: #4CAF50;
  text-decoration: none;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ecologie:hover {
  text-decoration: underline;
}

#osc-progress-container.complete #osc-progress-bar {
  background: #28a745;
}

#osc-progress-container.complete #osc-progress-text {
  color: #28a745;
  font-weight: bold;
}