.shop-product-card {
  border: 1px solid #e8ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  background: #fff;
}

.shop-product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
  transform: translateY(-5px);
}

.shop-product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
  padding-top: 75%;
}

.shop-product-card .product-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.shop-product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.shop-product-card .product-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c1;
  font-size: 2.5rem;
}

.shop-product-card .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  padding: 16px 12px 10px;
  opacity: 0;
  transition: opacity .25s ease;
  display: flex;
  gap: 6px;
}

.shop-product-card:hover .product-overlay {
  opacity: 1;
}

.shop-product-card .product-label-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.shop-product-card .product-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.shop-product-type-badge {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.shop-product-card .card-body {
  padding: 14px 16px 16px;
}

.shop-product-card .product-name {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-card .product-price,
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a7f4e;
}

.shop-product-card .product-price-old {
  font-size: .8rem;
  color: #9aa2ad;
  text-decoration: line-through;
}

.shop-product-card .product-desc {
  font-size: .80rem;
  color: #6c757d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 2.4em;
}

.shop-product-card .btn-add-cart,
.btn-add-cart {
  font-size: .82rem;
  padding: 5px 12px;
  border-radius: 20px;
}

.shop-product-list-card {
  border: 1px solid #e8ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.shop-product-list-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.shop-product-list-card .list-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.shop-sidebar .list-group-item {
  border-left: 3px solid transparent;
  font-size: .88rem;
  padding: 9px 14px;
  transition: background .15s, border-color .15s;
}

.shop-sidebar .list-group-item.active {
  background: #f0f7ff;
  border-left-color: #2563eb;
  color: #1d4ed8 !important;
  font-weight: 600;
}

.shop-sidebar .list-group-item:hover:not(.active) {
  background: #f8f9fa;
}

.shop-sidebar-heading {
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid #e8ecef;
}

.shop-sidebar-chevron {
  font-size: .75rem;
}

.shop-sidebar-subcategory {
  font-size: .84rem;
}

.shop-listing-search-group {
  min-width: 260px;
}

.shop-inline-gap {
  gap: 8px;
}

.shop-discount-badge {
  font-size: .75rem;
}

.shop-listing-target {
  position: relative;
}

.ajax-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 10px;
}