/* CCC Delay - delai de livraison sur fiche produit */
.ccc-dd-block{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
.ccc-dd-block::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #f59e0b;
}
.ccc-dd-block--stock::before{ background: #22c55e; }

.ccc-dd-headline{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.ccc-dd-icon-circle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.ccc-dd-block--stock .ccc-dd-icon-circle{ background: #22c55e; }

.ccc-dd-headline-text{
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  flex: 1;
  line-height: 1.4;
}
.ccc-dd-range{
  font-weight: 700;
  color: #1a1a1a;
}
.ccc-dd-ship-info{
  color: #475569;
  font-weight: 400;
  font-size: 13px;
}

.ccc-dd-max-date{
  font-size: 12.5px;
  color: #475569;
  padding-left: 32px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ccc-dd-max-date strong{ color: #1a1a1a; font-weight: 600; }
.ccc-dd-info{
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  cursor: help;
  margin-left: 2px;
}
.ccc-dd-info:hover{ color: #2fadce; }

.ccc-dd-bullets{
  list-style: none;
  margin: 0;
  padding: 0 0 0 32px;
}
.ccc-dd-bullet{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #475569;
  padding: 3px 0;
  line-height: 1.4;
}
.ccc-dd-tick{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #94a3b8;
  color: #fff;
  flex-shrink: 0;
}
.ccc-dd-bullet--ok .ccc-dd-tick{ background: #94a3b8; }
.ccc-dd-block--stock .ccc-dd-bullet--ok .ccc-dd-tick{ background: #22c55e; }

@media (max-width: 575px){
  .ccc-dd-block{ padding: 12px; }
  .ccc-dd-headline-text{ font-size: 13px; }
  .ccc-dd-ship-info{ display: block; margin-top: 2px; }
  .ccc-dd-max-date{ padding-left: 0; }
  .ccc-dd-bullets{ padding-left: 0; }
}

/* Remarques contextuelles */
.ccc-dd-remarks{
  margin: 8px 0 0;
  padding: 0 0 0 32px;
}
.ccc-dd-remark{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.45;
}
.ccc-dd-remark--info{
  background: #eff6ff;
  border-left: 3px solid #2fadce;
  color: #1e3a8a;
}
.ccc-dd-remark--warning{
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  color: #92400e;
}
.ccc-dd-remark-icon{
  flex-shrink: 0;
  margin-top: 1px;
}
.ccc-dd-remark-text{ flex: 1; }
@media (max-width: 575px){
  .ccc-dd-remarks{ padding-left: 0; }
}
