.imow-adp-wrapper {
  width: 100%;
}

.imow-adp-product {
  display: none;
}

.imow-adp-product.is-active {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: imowAdpFadeIn 0.3s ease;
}

@keyframes imowAdpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.imow-adp-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ECEEE2;
  color: #111111;
  border-radius: 8px;
  padding: 16px 24px;
}

.imow-adp-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex: 0 0 auto;
}

.imow-adp-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.imow-adp-card-category {
  font-size: 0.875rem;
}

.imow-adp-card-name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.imow-adp-heading {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
}

.imow-adp-heading-specs {
  font-size: 0.875rem;
  font-weight: 600;
}

.imow-adp-desc {
  opacity: 0.85;
  line-height: 1.6;
}

.imow-adp-specs {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.imow-adp-specs-separated {
  border: none;
  border-radius: 0;
  overflow: visible;
  gap: 12px;
}

.imow-adp-specs-separated .imow-adp-spec {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.imow-adp-specs-separated .imow-adp-spec + .imow-adp-spec {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.imow-adp-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
}

.imow-adp-spec + .imow-adp-spec {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.imow-adp-spec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.imow-adp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C9F02C;
  flex: 0 0 auto;
}

.imow-adp-spec-value {
  text-align: right;
  font-weight: 600;
}

.imow-adp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  background-color: #C9F02C;
  color: #111111;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.imow-adp-button:hover {
  background-color: #D9F75A;
  color: #111111;
}

.imow-adp-button:active {
  transform: scale(0.99);
}

.imow-adp-button.imow-adp-button-auto {
  display: inline-flex;
  width: fit-content;
  align-self: flex-start;
}
