.adcl-container {
  --adcl-accent: var(--accent, #288157);
  --adcl-accent-dark: var(--accent-dark, #146d43);
  --adcl-line: var(--line, #e4e6eb);
  --adcl-row-alt: #f4f6f8;
  --adcl-price: #0b6e86;
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 16px;
  margin: 1.5rem 0 2rem;
}
.adcl-title { font-size: 22px; font-weight: bold; margin: 0 0 8px; }
.adcl-message { display: block; padding: 16px; }
.adcl-compare-list-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.13) 0 2px 6px 0;
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}
.adcl-compare-list { min-width: 0; padding: 0; list-style: none; margin: 0; }
.adcl-list-item {
  min-height: 60px;
  min-width: 0;
  border-bottom: 1px solid var(--adcl-line);
  background: #fff;
}
.adcl-list-item:nth-child(even) { background: var(--adcl-row-alt); }
.adcl-list-item:last-child { border-bottom: none; }
.adcl-list-item > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  min-width: 0;
  gap: 8px;
  padding: 0 8px;
}
.adcl-product-img { flex: 0 0 72px; padding-top: 10px; }
.adcl-product-img img { width: 60px; height: 60px; object-fit: contain; border: 0; }
.adcl-product-name { flex: 1.4; min-width: 0; overflow-wrap: anywhere; font-size: 0.9rem; text-align: left; padding: 8px 4px; }
.adcl-product-price, .adcl-product-link, .adcl-vendor { flex: 1; min-width: 0; }
.adcl-vendor img { display: block; max-width: 100%; height: 32px; margin: 0 auto; object-fit: contain; }
.adcl-product-price p {
  margin: 0;
  color: var(--adcl-price);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.adcl-button {
  display: inline-block;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  background: var(--adcl-accent);
  color: #fff;
  padding: 2px 42px;
  height: 32px;
  line-height: 28px;
  white-space: nowrap;
  cursor: pointer;
  animation: adcl-cta-pulse 2.6s ease-in-out infinite;
}
.adcl-button:hover { background: var(--adcl-accent-dark); animation: none; }

@keyframes adcl-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3, 196, 235, 0.38); }
  50% { box-shadow: 0 0 0 7px rgba(3, 196, 235, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .adcl-button { animation: none; }
}

@media (max-width: 640px) {
  .adcl-product-img { display: none; }
  .adcl-list-item > a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name name"
      "vendor price"
      "link link";
    gap: 8px 12px;
    padding: 12px;
    text-align: left;
  }
  .adcl-product-name { grid-area: name; padding: 0; font-size: 0.85rem; }
  .adcl-vendor { grid-area: vendor; width: auto; justify-self: start; font-size: 0.8rem; color: #555; }
  .adcl-product-price { grid-area: price; justify-self: end; flex: none; }
  .adcl-product-price p { white-space: nowrap; font-size: 1rem; }
  .adcl-product-link { grid-area: link; flex: none; }
  .adcl-button {
    width: 100%;
    height: auto;
    min-height: 36px;
    padding: 8px 12px;
    line-height: 1.2;
    text-align: center;
  }
}
