.pcp-catalog {
  margin: 1.5rem 0;
}

.pcp-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pcp-filter-button {
  border: 1px solid #1b1b1b;
  background: #ffffff;
  color: #1b1b1b;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.pcp-filter-button.is-active {
  background: #1b1b1b;
  color: #ffffff;
}

.pcp-grid {
  display: grid;
  grid-template-columns: repeat(var(--pcp-cols-mobile, 2), minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .pcp-grid {
    grid-template-columns: repeat(var(--pcp-cols-tablet, 4), minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pcp-grid {
    grid-template-columns: repeat(var(--pcp-cols-desktop, 3), minmax(0, 1fr));
  }
}

.pcp-card {
  border: 1px solid #e5e5e5;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pcp-card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.pcp-card-placeholder {
  background: #f2f2f2;
  color: #666666;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.pcp-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pcp-card-title {
  font-size: 1.05rem;
  margin: 0;
}

.pcp-card-title a {
  color: inherit;
  text-decoration: none;
}

.pcp-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.pcp-card-categories {
  font-size: 0.85rem;
  color: #6b6b6b;
  margin: 0;
}

.pcp-card-excerpt {
  font-size: 0.9rem;
  color: #333333;
  margin: 0;
}

.pcp-card-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.pcp-pdf-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.pcp-pdf-links a {
  color: #c30000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.pcp-pdf-links a:hover {
  border-bottom-color: #c30000;
}

.pcp-button {
  border: 2px solid #c30000;
  background: #ffffff;
  color: #c30000;
  padding: 15px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pcp-button-secondary {
  background: #ffffff;
  color: #c30000;
}

.pcp-empty {
  padding: 1rem 0;
}

.pcp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pcp-modal.is-open {
  display: flex;
}

.pcp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.pcp-modal-content {
  position: relative;
  background: #ffffff;
  width: min(520px, 92vw);
  padding: 1.5rem;
  z-index: 2;
}

.pcp-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.pcp-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pcp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pcp-breadcrumb-link {
  color: inherit;
  text-decoration: none;
}

.pcp-breadcrumb-sep {
  opacity: 0.6;
}

.pcp-product-actions {
  margin-top: 1.5rem;
}

.pcp-product-page {
  padding: 2rem 0;
}

.pcp-product-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.pcp-product-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .pcp-product-hero {
    grid-template-columns: 1fr;
  }
}

.pcp-product-media img {
  width: 100%;
  height: auto;
  display: block;
}

.pcp-product-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin: 0 0 0.5rem;
}

.pcp-product-categories {
  font-size: 0.95rem;
  color: #6b6b6b;
  margin: 0 0 1rem;
}

.pcp-product-excerpt {
  font-size: 1rem;
  margin: 0 0 1.5rem;
  color: #333333;
}

.pcp-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pcp-product-content {
  font-size: 1rem;
  line-height: 1.6;
}

.pcp-section-title {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.pcp-product-gallery {
  margin-top: 2rem;
}

.pcp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 980px) {
  .pcp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pcp-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.pcp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pcp-field-hidden {
  position: absolute;
  left: -9999px;
}

.pcp-form-status {
  font-size: 0.9rem;
  margin: 0;
}
