/* =====================================
   PLAQUES & BADGES – GRID
   ===================================== */

.plaques-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.25rem;
}

/* =====================================
   PLAQUES & BADGES – CARD BASE
   ===================================== */

.plaques-page .product-card {
  padding: 1.5rem;
}

/* Image area normalization */

.plaques-page .product-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.plaques-page .product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.plaques-page .product-title {
  margin-bottom: 0.4rem;
}

.plaques-page .product-desc {
  margin-bottom: 0.85rem;
}

/* =====================================
   PLAQUES & BADGES – SECTION FRAMING
   ===================================== */

.plaques-page .category-section {
  background: #f6f7f9; /* very light neutral */
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 14px;
  padding: 2.5rem 2.25rem;
  margin-bottom: 3rem;
  margin-top: 3px;
}

.plaques-page .category-section .section-header {
  margin-bottom: 2rem;
}

.plaques-page .category-section .product-card {
  background: #fff;
}

/* =====================================
   PLAQUES & BADGES – CARD HOVER
   Matches Accessories hover language
   ===================================== */

.plaques-page .product-card {
  border: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.plaques-page .product-card:hover {
  border-color: rgba(197, 21, 42, 0.28); /* subtle CDT red */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.plaques-page .product-card:hover {
  transform: translateY(-2px);
}

/* =====================================
   FLAG CASE PLAQUES – CARD CONTRAST FIX
   ===================================== */

.plaques-page .category-section:last-of-type .product-card {
  background: #fdfcf9; /* warm off-white */
}

.plaques-page .category-section:last-of-type .product-image {
  background: #f9f7f3;
  border-radius: 10px;
}

/* =====================================
   PLAQUES & BADGES – CTA HOVER HIGHLIGHT
   ===================================== */

.plaques-page .product-cta {
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.plaques-page .product-card:hover .product-cta {
  opacity: 1;
  color: #c5152a;           /* brand red */
  text-decoration: underline;
}
