.abb-grid {
  display: grid;
  gap: 22px;
}

.abb-cols-1 { grid-template-columns: 1fr; }
.abb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.abb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.abb-cols-4 { grid-template-columns: repeat(4, 1fr); }

.abb-card {
  background: #fffdf8;
  border: 1px solid #e6dccd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.abb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.abb-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.abb-thumb-placeholder {
  width: 100%;
  padding-top: 75%;
  background: #f3eee6;
}

.abb-card-title {
  font-size: 18px;
  padding: 12px 14px 14px;
  margin: 0;
  text-align: center;
  color: #222;
}

.abb-single-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 14px;
}

.abb-wip-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 10px 0 20px;
}

.abb-wip-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e6dccd;
  background: #fff;
}

.abb-final {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #eee2d3;
}

.abb-buy-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #b71e1e;
  color: #fff;
  text-decoration: none;
}
