/* Fancy Cart */

.fancy-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 26px;
  z-index: 1000;
}

.fancy-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: transparent !important;
  color: #2d5a3d;
  -webkit-transition: color 0.4s;
  -moz-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

.header-page-top-info-block-right-icon .fancy-cart-link,
.header-page-top-info-block-right-icon .fancy-cart-link:hover {
  background-color: transparent !important;
}

.header-page-top-info-block-right-icon a.fancy-cart-link {
  margin-left: 0;
}

.fancy-cart-link:hover {
  color: #7dc342;
}

.fancy-cart-icon {
  width: 20px;
  height: 19px;
}

.fancy-cart-badge {
  position: absolute;
  top: -9px;
  right: -12px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background-color: #7dc342;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.fancy-cart-badge.is-empty {
  display: none;
}

.fancy-cart-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  max-width: 80vw;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  -moz-transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.fancy-cart:hover .fancy-cart-dropdown,
.fancy-cart:focus-within .fancy-cart-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fancy-cart-caret {
  position: absolute;
  top: -6px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancy-cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}

.fancy-cart-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.fancy-cart-item:first-child {
  padding-top: 0;
}

.fancy-cart-item-thumb {
  flex: 0 0 26%;
  max-width: 26%;
  padding-right: 12px;
  box-sizing: border-box;
}

.fancy-cart-item-thumb img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.fancy-cart-item-info {
  flex: 1;
  min-width: 0;
}

.fancy-cart-item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2d5a3d;
  line-height: 1.35;
  text-decoration: none;
  margin-bottom: 6px;
  word-break: break-word;
}

.fancy-cart-item-name:hover {
  color: #7dc342;
}

.fancy-cart-item-line {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.fancy-cart-item-line strong {
  color: #333;
}

.fancy-cart-empty {
  margin: 0;
  padding: 18px 0 12px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.fancy-cart-footer {
  margin-top: 14px;
}

.fancy-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.fancy-cart-total-amount {
  color: #2d5a3d;
  font-weight: 700;
}

.fancy-cart-checkout {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background-color: #a8e07a;
  color: #1e3a20;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.fancy-cart-checkout:hover {
  background-color: #7dc342;
  color: #fff;
}

@media (max-width: 600px) {
  .fancy-cart-dropdown {
    right: -60px;
  }

  .fancy-cart-caret {
    right: 68px;
  }
}


.header-page-top-info-block-right-icon a.fancy-cart-item-name {
  margin-left: 0;
  background-color: transparent !important;
}

.header-page-top-info-block-right-icon a.fancy-cart-checkout {
  margin-left: 0;
  background-color: #a8e07a !important;
  color: #1e3a20 !important;
}

.header-page-top-info-block-right-icon a.fancy-cart-checkout:hover {
  background-color: #7dc342 !important;
  color: #fff !important;
}