.maxicart-cross-sells {
  margin: 20px 0;
}

.maxicart-cross-sells h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.maxicart-cross-sell-item:hover {
  filter: brightness(0.97);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.maxicart-cross-sell-item {
  background: white;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  flex-wrap: nowrap;
}

.maxicart-cross-sell-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid #222;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-inline: 10px;
  transition: all 0.1s ease-in-out;
  flex-shrink: 0;
}

/* Checkmark style */
.maxicart-cross-sell-checkbox:checked {
  background-color: #000;
  border-color: #000;
}

.maxicart-cross-sell-checkbox:checked::after {
  content: '';
  position: absolute;
  inset-inline-start: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.cross-sell-thumb {
  width: 60px;
  height: 60px;
  margin-inline-end: 10px;
  flex-shrink: 0;
}

.cross-sell-title {
  flex: 1 1 100%;
  font-weight: bold;
  line-height: 1.4;
}

.cross-sell-price {
  margin-inline-start: auto;
  font-weight: bold;
  padding-inline: 10px;
}

/* Optional: direction-aware alignment */
body.rtl .maxicart-cross-sell-item {
  direction: rtl;
  text-align: right;
}

body.ltr .maxicart-cross-sell-item {
  direction: ltr;
  text-align: left;
}
