.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero ───────────────────────────────────────────── */
.cs-hero {
  background: #111111;
  padding: 34px 0 30px;
}

.cs-hero-inner {
  text-align: center;
}

.cs-hero-eyebrow {
  margin: 0 0 10px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f7cf04;
}

.cs-hero-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

.cs-hero-title span {
  color: #f7cf04;
}

.cs-hero-sub {
  margin: 14px auto 0;
  max-width: 720px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

/* ── Product section ─────────────────────────────────── */
.cs-products-section {
  background: #f5f5f5;
  padding: 28px 0 42px;
}

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

/* Shared card styles (matches category pages) */
.na-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.na-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.na-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #f7cf04;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 6px;
}

.cs-badge {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.na-img-link {
  display: block;
  text-decoration: none;
}

.na-img-box {
  background: #f6f7f8;
  aspect-ratio: 1 / 1;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.2s ease;
}

.na-card:hover .na-img-box {
  background: #f0f1f2;
}

.na-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

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

.na-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 14px 14px 6px;
}

.cs-card-body {
  text-align: left;
}

.na-name {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.na-name a,
.na-name a:link,
.na-name a:visited,
.na-name a:active {
  color: #111111;
  text-decoration: none;
}

.na-name a:hover {
  color: #2a2a2a;
}

.na-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  text-align: left;
}

.cs-card-price {
  min-height: 24px;
}

.cs-discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 5px;
  background: #f7cf04;
  color: #111111;
  font-size: 10px;
  font-weight: 800;
}

.na-price--old {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
}

.na-price--new {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.na-price--na {
  font-size: 13px;
  font-weight: 600;
  color: #888888;
}

/* Card countdown */
.cs-card-countdown {
  margin-top: 2px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  text-align: left;
}

.cs-card-countdown__label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92400e;
}

.cs-card-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.cs-card-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(252, 211, 77, 0.75);
}

.cs-card-countdown__num {
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  color: #111111;
  font-variant-numeric: tabular-nums;
}

.cs-card-countdown__lbl {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #92400e;
}

.cs-card-countdown__date {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
}

.cs-card-countdown.is-live .cs-card-countdown__grid,
.cs-card-countdown.is-live .cs-card-countdown__date {
  display: none;
}

.cs-card-countdown.is-live::after {
  content: "Launch day is here";
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #15803d;
}

/* Card animation when no date */
.cs-card-soon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  overflow: hidden;
}

.cs-card-soon__ring,
.cs-card-soon__ring--2 {
  position: absolute;
  left: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.35);
  animation: csCardRing 2.2s ease-out infinite;
}

.cs-card-soon__ring--2 {
  animation-delay: 1.1s;
}

@keyframes csCardRing {
  0% { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(1.8); opacity: 0; }
}

.cs-card-soon__dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
  animation: csCardDot 1.8s ease-in-out infinite;
}

@keyframes csCardDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.cs-card-soon__text {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
}

.cs-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 8px;
  background: #111111;
  color: #f7cf04 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cs-view-btn:link,
.cs-view-btn:visited,
.cs-view-btn:active {
  background: #111111 !important;
  color: #f7cf04 !important;
  text-decoration: none !important;
}

.cs-view-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.18);
  color: #f7cf04 !important;
}

.cs-view-btn--wide {
  max-width: 220px;
}

/* Empty state */
.cs-empty {
  text-align: center;
  padding: 48px 20px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
}

.cs-empty__icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.cs-empty h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #111111;
}

.cs-empty p {
  margin: 0 0 18px;
  color: #666666;
}

/* Pagination */
.cs-pagination-wrap {
  margin-top: 24px;
}

.cs-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.cs-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cs-pagination a:hover {
  border-color: #111111;
}

.cs-pagination a.active {
  background: #111111;
  border-color: #111111;
  color: #f7cf04;
}

@media (max-width: 1024px) {
  .cs-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cs-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .na-body {
    padding: 12px 12px 6px;
  }

  .cs-card-countdown__num {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cs-container {
    padding: 0 14px;
  }

  .cs-product-grid {
    grid-template-columns: 1fr;
  }
}
