.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.cat-product-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.cat-product-img {
  width: 120px;
  margin-right: 20px;
  position: relative;
}

.cat-product-img img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.photo-count {
  font-size: 12px;
  color: #007bff;
  margin-top: 5px;
  text-align: center;
}

.product-info {
  flex: 1;
}

.cat-product-name {
  font-size: var(--font-lg);
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
}

.cat-product-name a {
  color: var(--color-header);
  text-decoration: none;
}

.product-meta {
  color: #555;
}

.product-meta div {
  margin-bottom: 5px;
}

.product-meta div button,
.product-meta div button a {
  padding: 10px 20px;
  background-color: var(--color-pink);
  color: white;
}

/* Update your product-meta styles */
.product-meta {
  color: #555;
}

.product-meta div {
  margin-bottom: 5px;
}

.spec-flex {
  display: flex;
  flex-direction: column;
}

.mw-button-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.mw-button-line .cat-view-btn {
  border-radius: 10px;
  color: white;
  padding: 5px 20px;
  cursor: pointer;
}

.cat-view-btn.col-black {
  display: inline-block;
  color: var(--color-white);
  /* black text */
  background-color: var(--color-pink);
  /* white background */
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cat-view-btn.col-black:hover {
  background-color: var(--color-header);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .mw-button-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-view-btn {
    margin-top: 5px;
  }

  .cat-product-name {
    font-size: var(--font-md);
  }

  .cat-product-row {
    flex-direction: column;
    align-items: center;
  }

  .cat-product-img {
    margin-bottom: 10px;
  }
}
