/* Wrapper */
.eusl-wrap {
  position: relative;
  font-family: inherit;
  margin: 10px 0;
  padding: 16px;
  background: transparent;
}
.eusl-checkmark {
    display: none !important;
}
.eusl-buttons {
    margin-top: 10px;
}
button.eusl-add {
    background-color: #c36;
    border: 1px solid #c36;
    color: #ffffff;
}
button.eusl-add:hover {
    background-color: #fff;
    border: 1px solid #c36;
    color: #c36;
}
button.eusl-buy {
    background-color: #c36;
    border: 1px solid #c36;
    color: #ffffff;
}
button.eusl-buy:hover {
    background-color: #fff;
    border: 1px solid #c36;
    color: #c36;
}
.eusl-totals {
    background: #ffffff;
}
.eusl-body {
    min-height: 104px;
}
.eusl-wrap {
    background-color: #efefef;
    border-radius: 10px;
}
.eusl-prices{
    padding-left: 10px;
}
.eusl-viewport {
  overflow: hidden;
}
.eusl-prices .eusl-save {
    display: none;
}

.eusl-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.eusl-item {
  min-width: 120px;
  box-sizing: border-box;
  /*flex: 0 0 auto;*/
}

.eusl-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0px;
  position: relative;
}

/* ✅ Fixed Checkbox */
.eusl-checkbox {
  position: absolute;
 top: -5px;
    left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  user-select: none;
  z-index: 10;
}

.eusl-checkbox input {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0;
  z-index: 2;
}
.eusl-checkbox input {
    display: block !important;
}
.eusl-checkmark {
display: none;
}

/* ✅ Checked State Works */
.eusl-checkbox input:checked + .eusl-checkmark {
  background: #222;
  color: #fff;
}

/* Image */
.eusl-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0px;
}

.eusl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eusl-title {
  font-size: 10px;
  margin: 0 0 0px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;
  padding-left: 10px;
  color: #000;
}

.eusl-price {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.eusl-regular {
  color: #999;
  text-decoration: line-through;
  font-size: 10px;
  display: inline-block;
  margin-right: 8px;
}

.eusl-save {
  background: #ff6b2d;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}

.eusl-variation {
        width: 100%;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 6px;
    font-size: 12px;
}
button.eusl-prev:hover i{
    background-color: transparent !important;
    color: #cc3366;
    opacity: .8;
}
button.eusl-next:hover i{
    background-color: transparent !important;
    color: #cc3366;
    opacity: .8;
}
button.eusl-prev:hover {
    background: transparent;
}
button.eusl-prev {
    background-color: transparent !important;
        color: #cc3366 !important;
}
button.eusl-next {
    background-color: transparent !important;
        color: #cc3366 !important;
}
button.eusl-next:hover {
    background: transparent;
}
.eusl-prev,
.eusl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 30px;
  line-height: 0;
}

.eusl-prev {
  left: -25px;
}

.eusl-next {
  right:15px;
}

.eusl-totals {
  background: #f3f3f3;
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.eusl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.eusl-regular-total {
  color: #999;
  text-decoration: line-through;
}

.eusl-savings {
  background: #ff6b2d;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

.eusl-grand {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.eusl-actions {
  display: flex;
  gap: 12px;
}

.eusl-actions button {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #222;
  background: transparent;
  cursor: pointer;
}

.eusl-actions .eusl-buy {
  background: #222;
  color: #fff;
  border-color: #222;
}

/* Responsive */
@media (max-width: 991px) {
  .eusl-item {
    min-width: 46%;
  }
}

@media (max-width: 767px) {
  .eusl-item {
    min-width: 86%;
  }
  .eusl-actions {
    flex-direction: column;
  }
}
