.heading-title {
  display: inline-flex;
  align-items: center;
  background: var(--bg-orange);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
  gap: 5px;
  color: white;
  margin-bottom: 20px;
}

.heading-title .icon {
  line-height: 0;
}

.heading-title .icon img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.hover-effect {
  position: relative;
  overflow: hidden;
  display: flex;
}

.hover-effect::after {
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}

.hover-effect:hover::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}

.common-arrow .slick-arrow {
  opacity: 0;
  z-index: 9;
}

.common-arrow .slick-arrow::before {
  display: none;
}

.common-arrow:hover .slick-arrow {
  opacity: 1;
}

.common-arrow .slick-arrow {
  background: var(--bg-orange);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transform: translateY(-50%);
}

.common-arrow .slick-arrow svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
/* Container */
#cart-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Popup item */
.cart-notification {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    display: flex;
    gap: 12px;
    padding: 12px;
    animation: slideIn 0.35s ease forwards;
    position: relative;
}

/* Image */
.cart-notification img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Info */
.cart-notification .info {
    flex: 1;
}

.cart-notification .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
    max-height: 40px;
    overflow: hidden;
}

/* Price */
.cart-notification .price {
    font-size: 15px;
    font-weight: 700;
    color: #e53935;
}

.cart-notification .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
}

/* View cart button */
.cart-notification .view-cart-btn {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.cart-notification .view-cart-btn:hover {
    text-decoration: underline;
}

/* Fade out */
.cart-notification.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}
.item-image {
    padding: 10px 0px;
}
.item-image img {
    height: 240px;
}
/* Mobile */



















@media (max-width: 480px) {
    #cart-notification-container {
        right: 10px;
        left: 10px;
    }

    .cart-notification {
        width: 100%;
    }
}

@media (max-width: 1200px) {
  .common-arrow .slick-arrow {
    width: 25px;
    height: 25px;
  }

  .common-arrow .slick-arrow svg {
    width: 15px;
    height: 15px;
  }

  .common-arrow .slick-prev {
    left: 0;
  }

  .common-arrow .slick-next {
    right: 0;
  }
}



/* news */

/*# sourceMappingURL=maps/module.css.map */