.products-archive-shell {
  padding-top: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
}

.section-heading h2,
.cta-box h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -2.8px;
}

.text-link {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border: 1px solid #ececec;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card-link {
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.product-image-box {
  position: relative;
  background: linear-gradient(180deg, #f5efff 0%, #f8f8f8 100%);
}

.product-image-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.product-subtitle {
  min-height: 48px;
  color: #696969;
  font-size: 14px;
  line-height: 1.6;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.spec-list span {
  padding: 7px 10px;
  border-radius: 10px;
  background: #f6f6f6;
  color: #555;
  font-size: 11px;
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #ececec;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price small {
  color: #8a8a8a;
  font-size: 11px;
}

.product-footer strong {
  font-size: 22px;
  letter-spacing: -0.8px;
}

.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.cta-section {
  padding: 25px 0 110px;
}

.cta-box {
  padding: 65px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 40%, #3c1e66, transparent 30%),
    #101010;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-box .eyebrow {
  color: #c5a5ff;
}

.cta-box p {
  max-width: 530px;
  margin-top: 15px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
}

.cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 23px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-heading,
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .product-image-box img {
    height: 240px;
  }

  .cta-box {
    padding: 36px 24px;
  }

  .cta-btn,
  .small-btn {
    width: 100%;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
