.catalog-page {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.hero-text {
  max-width: 600px;
}

.pre-title {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent-orange);
}

.hero-desc {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 132, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.018);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 122, 26, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.1), rgba(0, 0, 0, 0.24) 58%, rgba(255, 122, 26, 0.1));
  color: #fff;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 4rem;
  box-shadow: 0 0 36px rgba(255, 98, 0, 0.22), 0 0 90px rgba(255, 98, 0, 0.08), inset 0 0 38px rgba(255, 122, 26, 0.14);
}

.hero-image-placeholder::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: catalogRotate 20s linear infinite;
}

.featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid var(--border-color-strong);
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.035), rgba(14, 9, 7, 0.94)), var(--bg-card);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.015), 0 20px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.fc-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 132, 24, 0.16);
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.018);
  color: var(--accent-gold);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.1rem;
}

.fc-badge {
  margin-bottom: 8px;
  color: var(--accent-gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fc-title {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

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

.fc-right {
  flex-shrink: 0;
  text-align: right;
}

.fc-price {
  margin-bottom: 4px;
  color: var(--accent-orange);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.5rem;
}

.fc-stock {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid rgba(255, 132, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.012);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-btn.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-orange), #ff9632);
  color: #140902;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  height: 330px;
  overflow: hidden;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 132, 24, 0.075);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.022), rgba(255, 122, 26, 0.006)), var(--bg-card-soft);
  cursor: pointer;
  opacity: 0;
  animation: cardFadeUp 0.55s ease forwards;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.018);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.26);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34), 0 0 24px rgba(255, 122, 26, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 52px;
  height: 52px;
  padding: 7px;
  border: 1px solid rgba(255, 132, 24, 0.12);
  border-radius: 14px;
  background: #f6f0e8;
  object-fit: contain;
}

.card-tags {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  padding-top: 2px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 132, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  color: var(--accent-orange-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.card-tag-muted {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 132, 24, 0.08);
}

.card-price {
  color: var(--accent-orange);
  font-size: 1.1rem;
  font-weight: 700;
}

.card-stock {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.card-buy-btn {
  width: 100%;
  margin-top: 15px;
}

@keyframes catalogRotate {
  to { transform: rotate(360deg); }
}

@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .catalog-page {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .hero {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .features {
    justify-content: center;
  }

  .hero-image-placeholder {
    width: 190px;
    height: 190px;
    font-size: 3rem;
  }

  .featured-card {
    flex-direction: column;
    text-align: center;
  }

  .fc-left {
    flex-direction: column;
  }

  .fc-right {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 132, 24, 0.08);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-placeholder::after,
  .card {
    animation: none;
    opacity: 1;
  }
}
