/* Parent must stretch full height so the sticky child has room to scroll */
.e-con.e-child:has(> .oc-trust-badges) {
  align-self: stretch !important;
  overflow: visible !important;
}
.e-con.e-parent:has(.oc-trust-badges),
.e-con.e-parent:has(.oc-trust-badges) > .e-con-inner {
  overflow: visible !important;
}

.oc-trust-badges {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px !important;
  z-index: 10;
}
.oc-trust-heading {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid #ED6F23;
}
.oc-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.oc-badge:last-child {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
}
.oc-badge-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #FFF5ED;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oc-badge-icon svg {
  width: 24px;
  height: 24px;
}
.oc-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.oc-badge-text strong {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.oc-badge-text span {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Items list inside the card */
.oc-items-section {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid #ED6F23;
}
.oc-items-heading {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
}
.oc-items-heading span {
  font-weight: 400;
}
.oc-items-desc {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.oc-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.oc-items-list li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.oc-items-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.oc-items-list li::before {
  content: "\2192";
  color: #ED6F23;
  font-weight: 700;
  margin-right: 10px;
}
.oc-items-list li a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.oc-items-list li a:hover {
  color: #ED6F23;
}

@media (max-width: 767px) {
  .oc-trust-badges {
    padding: 22px 18px;
    margin-top: 16px;
    position: static;
  }
  .oc-trust-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .oc-badge {
    padding: 10px 0;
  }
}
