/* ===== SHOWCASE SECTION ===== */
.showcase-section {
  padding: 4rem 0;
  background: var(--bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* First 4 cards fill row 1 */
.showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-md);
  border-color: transparent;
}

/* Wide card spans full width on row 2 */
.showcase-card--wide {
  grid-column: 1 / -1;
}

/* 3:1 at every width, because the Tools image is padded to 3:1 at the source.
   Two different box shapes would mean it only fitted exactly at one of them. */
.showcase-card--wide .showcase-img {
  aspect-ratio: 3 / 1;
}

/* The category images are all different shapes — 2.35:1, 1.79:1, and one
   portrait 0.67:1. object-fit: cover fills the box by scaling up and slicing
   off whatever overflows, which cut the products out of their own photos.
   contain shows each image whole; the box background fills what's left. */
.showcase-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
  background: rgba(20, 20, 18, 0.45);
}

.showcase-cta {
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.showcase-card:hover .showcase-cta {
  opacity: 1;
  transform: translateY(0);
}

.showcase-label {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.showcase-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.showcase-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.showcase-cta-row {
  text-align: center;
  margin-top: 1rem;
}

/* ===== TRUST STRIP ===== */
.trust-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.trust-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== NAV SHOP BUTTON ===== */
.nav-shop-btn {
  background: var(--primary) !important;
  color: white !important;
  padding: 0.4rem 1rem !important;
  border-radius: var(--radius) !important;
}

.nav-shop-btn:hover {
  background: var(--primary-dark) !important;
}

/* ===== ABOUT BUTTON ===== */
.btn-about {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-about:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-card--wide {
    grid-column: 1 / -1;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .showcase-name { font-size: 0.95rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-icon { font-size: 1.4rem; }
}
/* Footer responsive rules moved to styles.css — the footer is shared with
   products.html, which does not load this file. */
