/**
 * Cart block styles.
 */

html,
body {
  overflow-x: hidden;
}

/**
 * Cart dropdown styles.
 */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 16%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  width: 100%;
  max-width: 470px;
  background: #FFF;
  min-height: 770px;
  border: 1px solid #E4E4E4;
  padding: 40px;
  box-shadow: 12px 14px 19px 1px #D9D9D9;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
}


.cart-block.is-open .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cart-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.cart-dropdown__header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.cart-dropdown__close {
  width: 24px;
  height: 24px;
  background-image: url(/themes/custom/personalizado/img/cart_close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  cursor: pointer;
}

.cart-dropdown__close:hover {
  color: #000;
}

.cart-dropdown__wrap-items {
  flex: 1;
}

.cart-dropdown__items {
  
  overflow-y: auto;
  max-height: 60vh;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cart-dropdown__item {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-dropdown__item:last-child {
  border-bottom: none;
}


.cart-dropdown__item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown__item-image {
  min-width: 100px;
}

.cart-dropdown__item-title {
  font-size: 16px;
  margin-bottom: 16px;
}


.cart-dropdown__quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #9F9F9F;
  padding: 4px 8px;
}

.cart-dropdown__quantity-input {
  width: 40px;
  font-size: 16px;
  border-color: transparent;
  text-align: center;
  outline: none;
  box-shadow: none;
}
.cart-dropdown__quantity-input::-webkit-inner-spin-button,
.cart-dropdown__quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-dropdown__item-qty_total{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 15px 0;
}

.cart-dropdown__item-total {
  font-size: 12px;
  font-weight: 500;
}

.cart-dropdown__item-remove {
  min-width: 22px;
  height: 22px;
  background-image: url(/themes/custom/personalizado/img/remove.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}
.cart-dropdown__item-remove a{
  display: block;
  width: 22px;
  height: 22px;
}


.cart-dropdown__empty {
  padding: 30px 15px;
  text-align: center;
  color: #666;
}

.cart-dropdown__total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border-top: 1px solid #f5f5f5;
}

.cart-dropdown__actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #f5f5f5;
  padding-top: 16px;
}

.cart-dropdown__ver_carrito{
  text-align: center;
  border-top: 1px solid #f5f5f5;
  padding: 16px 0;
}
.cart-dropdown__ver_carrito a{
  text-decoration: underline !important;
  font-size: 14px;
}
.cart-dropdown__ver_carrito a:active{
  border: none !important;
}

/**
 * Loading and updating states.
 */
.cart-dropdown-content.loading,
.cart-dropdown-content.updating {
  position: relative;
  min-height: 100px;
}

.cart-dropdown-content.loading:before,
.cart-dropdown-content.updating:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0074bd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.cart-dropdown-content.loading:after,
.cart-dropdown-content.updating:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/**
 * Responsive styles.
 */
@media (max-width: 480px) {
  .cart-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 70vh;
    border-radius: 8px 8px 0 0;
  }

  .cart-dropdown__items {
    max-height: 50vh;
  }
}