.products__list-item--aroma {
  padding-bottom: 120px;
}

.products__list-composition {
  font-size: 14px;
  color: #999;
  margin: 5px 0;
}

.products__list-volume-wrapper {
  position: relative;
  display: inline-block;
  min-width: 100px;
}

.products__list-volume-wrapper::after {
  content: '';
  position: absolute;
  top: 56%;
  right: 2px;
  width: 22px;
  height: 22px;
  background-image: url('/storage/app/media/arrow-down.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.products__list-volume {
  margin-top: 8px;
  font-size: 16px;
  padding: 2px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: #231e1b;
  color: #fff;
  appearance: none;
  min-width: 100px;
  text-align: left;
}

.products__list-volume:focus {
  outline: none;
  border-color: #fff;
}

.products__list-volume option {
  padding: 2px 8px 2px 0;
}

.product__add-to-cart-btn {
  display: block;
  width: 90%;
  margin: 16px auto 0;
  padding: 18px 0;
  background-color: #ff6a00;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product__add-to-cart-btn:hover {
  background-color: #e65c00;
}

.product__add-to-cart-btn--soon,
.product__add-to-cart-btn--soon:hover {
  background-color: #4a433f;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.products__list-price--current {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.products__list-price--old {
  font-size: 36px;
  line-height: 1;
  color: #6f6f6f;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #767676;
  white-space: nowrap;
}

.products__list-divider {
  margin-top: -100px;
}

.products__list-actions {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .products__list-volume {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    font-size: 13px;
    min-height: 40px;
    margin-top: 6px;
  }
}

@media (max-width: 576px) {
  .products__list-item--aroma {
    padding-bottom: 128px !important;
  }

  .products__list-actions {
    right: 0;
    bottom: 10px;
    left: 0;
  }

  .products__list-img-wrapper {
    padding-top: 18px;
    box-sizing: border-box;
  }

  .products__list-composition {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 8px 12px 8px !important;
    overflow: hidden;
    line-height: 1.35;
    text-overflow: ellipsis;
    min-height: 0 !important;
    max-height: 4.05em !important;
  }

  .product__price-row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    margin: 2px 0 6px;
  }

  .products__list-volume {
    display: block;
    width: 90%;
    margin: 0 auto 8px;
    box-sizing: border-box;
    font-size: 13px;
    padding: 6px 12px;
    min-height: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    background-color: #231e1b;
    color: #fff;
  }

  .product__price-row span,
  .product__price {
    display: block;
    text-align: center;
  }

  .products__list-price--current {
    line-height: 1.15;
  }

  .products__list-price--old {
    font-size: 28px;
  }
}
