@import url('kitchenworktops_75_cache.css');

/* Quartz Page Custom Hero & Spec Highlights */
.kw-quartz-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border-bottom: 3px solid #6366f1;
}

.kw-slab-detail-card {
  background: #ffffff;
  border: 1px solid var(--xk-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.kw-slab-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}
.kw-slab-detail-img {
  height: 200px;
  background: #000;
  overflow: hidden;
}
.kw-slab-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.kw-slab-detail-card:hover .kw-slab-detail-img img {
  transform: scale(1.06);
}
.kw-slab-detail-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.kw-slab-detail-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: #0f172a;
  margin: 0 0 6px;
}
.kw-slab-detail-content p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 14px;
}
