.ctiom-marketplace-card,
.ctiom-store-header {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: #151922;
}
.ctiom-marketplace-card h2,
.ctiom-store-header h1 { margin-top: 0; }
.ctiom-marketplace-card input[type="text"],
.ctiom-marketplace-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #f7f8fb;
  background: #0b0d12;
}
.ctiom-store-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.ctiom-store-avatar {
  display: grid;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg,#4d8dff,#7b4dff);
  font-size: 1.7rem;
  font-weight: 900;
}
.ctiom-store-header p { margin: 5px 0 0; color: #9da6b7; }
.ctiom-offer-manager { display: grid; gap: 22px; margin-top: 22px; }
.ctiom-offer-form { position: relative; }
.ctiom-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.ctiom-field-help { display: block; margin-top: 5px; color: #9da6b7; font-size: .82rem; }
.ctiom-card-search-wrap { position: relative; }
.ctiom-card-results {
  position: absolute;
  z-index: 20;
  top: calc(100% - 4px);
  right: 0;
  left: 0;
  display: none;
  overflow-y: auto;
  max-height: 360px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #10141d;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.ctiom-card-results.is-open { display: block; }
.ctiom-card-result {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  color: #f7f8fb;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.ctiom-card-result:hover { background: #1d2330; }
.ctiom-card-result img,
.ctiom-selected-card img { width: 42px; height: 60px; border-radius: 5px; object-fit: cover; }
.ctiom-card-result span,
.ctiom-selected-card div { min-width: 0; }
.ctiom-card-result small,
.ctiom-selected-card small { display: block; color: #9da6b7; }
.ctiom-selected-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(77,141,255,.3);
  border-radius: 13px;
  background: rgba(77,141,255,.08);
}
.ctiom-selected-card[hidden] { display: none; }
.ctiom-offer-list { display: grid; gap: 10px; }
.ctiom-vendor-offer {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.ctiom-vendor-offer:last-child { border-bottom: 0; }
.ctiom-vendor-offer small,
.ctiom-offer-numbers span { display: block; color: #9da6b7; }
.ctiom-offer-numbers { text-align: right; }
@media (max-width: 640px) {
  .ctiom-form-grid { grid-template-columns: 1fr; }
  .ctiom-vendor-offer { grid-template-columns: 1fr auto; }
  .ctiom-vendor-offer form { grid-column: 1 / -1; }
}
