/* ===== Catalog Wrapper ===== */
.catalog {
  max-width: 1300px;
  margin: 120px auto 80px;
  padding: 0 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* ===== Catalog Header Full ===== */
.catalog-header-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 100%);
  text-align: center;
  padding: 90px 20px 65px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Inner content centered */
.catalog-header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.catalog-header h1 {
  font-size: 2.9rem;
  margin: 0;
  color: #B00F0F;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.catalog-header-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2a5d8f;
}

/* ===== Description ===== */
.catalog-description {
  text-align: center;
  margin: 26px auto 0;
  max-width: 900px;
  padding: 0 10px;
}

.catalog-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

.description-image {
  width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 20px auto 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Category Titles ===== */
.category-title {
  margin: 60px 0 25px;
  font-size: 2.5rem;
  color: #2a5d8f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

.category-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #B00F0F;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* ===== Grid ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== Product Card ===== */
.catalog-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #2a5d8f;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== Product Image ===== */
.product-thumb {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.catalog-card:hover .product-thumb {
  transform: scale(1.05);
}

/* ===== Card Wording ===== */
.card-wording {
  padding: 10px 5px 0;
  background-color: #f8f9fb;
  border-radius: 0 0 12px 12px;
}

.card-wording h3 {
  font-size: 1.2rem;
  color: #2a5d8f;
  margin-bottom: 8px;
}

.card-wording p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .catalog-header-full {
    padding: 65px 15px 45px;
  }

  .catalog-header h1 {
    font-size: 2.15rem;
  }

  .catalog-description {
    margin-top: 20px;
    padding: 0 4px;
  }

  .catalog-description p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .product-thumb {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .catalog-header h1 {
    font-size: 1.9rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .category-title {
    font-size: 2rem;
  }
}
