/* =====================================================
   AJIN Product Catalog Download Panel
   Path: ~/ajin-app/ajin-site/public/css/product-catalog.css
   Version: 20260711-1

   Product detail pages only
   - Catalog download panel
   - Catalog guide button
   - Responsive mobile layout
===================================================== */

.product-catalog-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 40px 0 54px;
  padding: 36px 40px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 88% 36%,
      rgba(56, 189, 248, 0.3),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e3a8a 56%,
      #075985 100%
    );
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
  color: #ffffff;
}

.product-catalog-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -135px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(186, 230, 253, 0.14);
}

.product-catalog-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.product-catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 7px 13px;
  border: 1px solid rgba(191, 219, 254, 0.42);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.3);
  color: #bae6fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-catalog-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.product-catalog-content p {
  margin: 13px 0 0;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.product-catalog-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 11px;
  min-width: 215px;
}

.product-catalog-button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.product-catalog-button:hover {
  transform: translateY(-2px);
}

.product-catalog-button.primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.25);
}

.product-catalog-button.primary:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.product-catalog-button.secondary {
  border: 1px solid rgba(219, 234, 254, 0.52);
  background: rgba(15, 23, 42, 0.24);
  color: #e0f2fe;
}

.product-catalog-button.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

@media (max-width: 820px) {
  .product-catalog-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 32px;
  }

  .product-catalog-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .product-catalog-button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .product-catalog-panel {
    margin: 32px 0 44px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .product-catalog-content h3 {
    font-size: 24px;
  }

  .product-catalog-content p {
    font-size: 15px;
  }

  .product-catalog-actions {
    flex-direction: column;
  }

  .product-catalog-button {
    width: 100%;
  }
}
