.store-productline-section {
  padding-top: 12px;
  padding-bottom: 28px;
}
.store-wc-productline { margin-top: 8px; }
.store-wc-productline__loading,
.store-wc-productline__empty,
.store-wc-productline__error {
  margin: 0;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px dashed rgba(22,45,35,.16);
  color: #5f6f66;
  text-align: center;
}
.store-wc-productline__shell {
  position: relative;
}
.store-wc-productline__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}
.store-wc-productline__nav button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(22,45,35,.14);
  border-radius: 999px;
  background: #fff;
  color: #0f2a1f;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.store-wc-productline__nav button:hover:not(:disabled) {
  background: #0f2a1f;
  color: #fff;
  border-color: #0f2a1f;
}
.store-wc-productline__nav button:disabled {
  opacity: .35;
  cursor: default;
}
.store-wc-productline__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15,42,31,.25) transparent;
}
.store-wc-productline__track::-webkit-scrollbar { height: 8px; }
.store-wc-productline__track::-webkit-scrollbar-thumb {
  background: rgba(15,42,31,.22);
  border-radius: 999px;
}
.store-wc-productline-card {
  flex: 0 0 clamp(240px, 28vw, 300px);
  scroll-snap-align: start;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(22,45,35,.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(12,31,22,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-wc-productline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,146,63,.35);
  box-shadow: 0 18px 48px rgba(12,31,22,.11);
}
.store-wc-productline-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}
.store-wc-productline-card__media {
  position: relative;
  background: #eef2ee;
  overflow: hidden;
}
.store-wc-productline-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}
.store-wc-productline-card:hover .store-wc-productline-card__media img {
  transform: scale(1.04);
}
.store-wc-productline-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8efe9, #d7e4d9);
}
.store-wc-productline-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #c9923f;
  color: #0f2a1f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.store-wc-productline-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 18px;
  flex: 1;
}
.store-wc-productline-card__cat {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #1d5b37;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-wc-productline-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  line-height: 1.2;
  color: #0f2a1f;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-wc-productline-card__price {
  margin: auto 0 0;
  font-size: 15px;
  font-weight: 800;
  color: #c9923f;
}
.store-wc-productline-card__price del {
  color: #8a9a92;
  font-weight: 600;
  font-size: 13px;
  margin-right: 6px;
  text-decoration: line-through;
}
.store-wc-productline__foot {
  margin: 4px 0 0;
  text-align: center;
}
.store-wc-productline__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f2a1f;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}
.store-wc-productline__shop-link:hover { background: #1a3d2c; }
@media (max-width: 640px) {
  .store-wc-productline-card { flex-basis: 78vw; }
}
