/* === mini product card === */
.mini-card {
    position: relative;
    width: 320px;
    height: 230px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
    padding: 18px 16px 16px;
    transition: transform .15s ease, box-shadow .15s ease;
    flex-shrink: 0
}

.mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .10)
}

.mini-card .thumb-wrap {
    position: absolute;
    top: -36px;
    left: -36px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}



.thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.mini-card:hover .thumb-wrap img {
    transform: rotate(15deg) scale(1.05)
}

.mini-card .rating {
    position: absolute;
    top: 12px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .9rem;
    color: #1f9d55
}

.mini-card .title {
    margin-top: 80px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px
}

.mini-card .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse
}

.mini-card .add-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600
}

.mini-card .add-pill .plus {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1
}

.mini-card .price {
    text-align: left;
    font-weight: 400;
    font-size: 1rem;
    color: #111827
}

.mini-card .price .value {
    font-weight: 700
}

.mini-card .unit {
    display: block;
    text-align: left;
    font-size: .85rem;
    color: #111827;
    font-weight: 700;
    margin-top: 2px
}

.mini-card .unit .label {
    font-weight: 400
}

/* strips */
.product-strip {
    gap: 50px;
    padding-left: 40px !important;
    /* force no left padding */
    padding-right: 20px;
    padding-top: 40px;
}


.product-strip::-webkit-scrollbar {
    display: none
}

.product-strip-wrapper {
  position: relative;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: #f3f4f6;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}
