/* Professional club-shop layout — product data still comes from DOJO. */
.ljt-shop-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch;
}

.ljt-product {
  min-width: 0;
  border-radius: 16px !important;
  border-color: #d7e1e7 !important;
  box-shadow: 0 7px 22px rgba(16, 37, 58, .07) !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ljt-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(16, 37, 58, .11) !important;
}

.ljt-product-media {
  height: 225px !important;
  padding: 10px !important;
  border-bottom: 1px solid #e3eaee;
  background: linear-gradient(145deg, #fbfcfd, #f0f4f6) !important;
}

.ljt-product-media img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

.ljt-product-placeholder {
  width: 82px !important;
  height: 82px !important;
  font-size: 26px !important;
}

.ljt-product-body {
  padding: 8px 12px 10px !important;
  text-align: center;
}

.ljt-product-category {
  font-size: 10px !important;
}

.ljt-product h3 {
  min-height: 34px;
  margin: 3px 0 !important;
  display: grid;
  place-items: center;
  font-size: 15px !important;
  line-height: 1.25;
}

.ljt-product-desc {
  min-height: 0 !important;
  max-height: 34px;
  margin: 0 0 5px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.ljt-product-bottom {
  width: 100%;
  margin-top: auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 7px !important;
}

.ljt-product-price {
  font-size: 17px !important;
  text-align: center;
}

.ljt-add {
  width: 100% !important;
  min-height: 34px;
  border-radius: 8px !important;
  font-size: 13px;
}

#cartSection {
  border: 1px solid #dce5e9;
}

.ljt-cart-line {
  grid-template-columns: minmax(230px, 1.4fr) 100px 115px auto !important;
  align-items: center !important;
}

.ljt-cart-name img {
  width: 64px !important;
  height: 64px !important;
  padding: 4px;
  box-sizing: border-box;
}

@media (max-width: 1150px) {
  .ljt-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 860px) {
  .ljt-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .ljt-product-media { height: 205px !important; }
  .ljt-cart-line { grid-template-columns: 1fr 85px !important; align-items: start !important; }
}

@media (max-width: 540px) {
  .ljt-shop-grid { grid-template-columns: 1fr !important; }
  .ljt-product-media { height: 220px !important; }
  .ljt-product h3 { min-height: 0; }
  .ljt-product-desc { display: block !important; min-height: 0 !important; }
}
