/** Shopify CDN: Minification failed

Line 72:14 Expected identifier but found whitespace
Line 136:0 Expected "}" to go with "{"

**/
/* ===============================
   Product Card - Figma Matching
   =============================== */
.qr-products {
  display: flex;
  flex-direction: column;
  gap: 8px; /* ბარათებს შორის სივრცე */
  padding-left: 8px;  /* გვერდებზე სივრცე */
  padding-right: 8px;
  box-sizing: border-box;
}

.product-card {
  width: calc(100% - 16px); /* გვერდების spacing გამო */
  background: white;
  border-radius: 11.31px;
  box-shadow: 0px 0px 3px #c6c6c6;
  border: none;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.product-card .thumb {
  width: 66px;
  height: 66px;
  border-radius: 11.31px;
  overflow: hidden;
  flex-shrink: 0; /* არ დაიჭიმოს */
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-card .info .title {
  font-family: 'MeamaLGV', sans-serif; /* ABeeZee → MeamaLGV */
  font-weight: 500; /* Medium */
  color: #494747;
  font-size: 14.4px;
  line-height: 16.6px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .info .price {
  font-family: 'MeamaSansLGV', sans-serif; /* Albert Sans → MeamaSansLGV */
  font-weight: 400;
  color: #0d6722;
  font-size: 11.9px;
  line-height:
/* Select Button */
.product-card .select-button {
  background: #010101;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'MeamaSansLGV', sans-serif; /* Albert Sans → MeamaSansLGV */
  font-weight: 400;
  font-size: 15px;
  line-height: 13.6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 75px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card .select-button:hover {
  background: rgba(1, 1, 1, 0.9);
}

/* ===============================
   Responsive Adjustments
   =============================== */
@media (max-width: 392px) {
  .product-card {
    padding: 12px;
  }
  
  .product-card .thumb {
    width: 56px;
    height: 56px;
  }
  
  .product-card .thumb img {
    width: 100%;
    height: 100%;
  }
  
  .product-card .info .title {
    font-size: 13px;
    font-family: 'MeamaLGV', sans-serif; /* Mobile ცვლილება */
  }
  
  .product-card .select-button {
    width: 65px;
    height: 26px;
    font-size: 13px;
    font-family: 'MeamaSansLGV', sans-serif; /* Mobile ცვლილება */
  }

  .qty-counter button {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    font-size: 14px;
    font-family: 'MeamaSansLGV', sans-serif; /* Mobile ცვლილება */
  }
}
