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

.cl-page {
  --cl-black: #111111;
  --cl-yellow: #f7cf04;
  --cl-muted: #6b7280;
}

.cl-hero {
  background: #111111;
  padding: 34px 0 30px;
}

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

.cl-hero-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f7cf04;
}

.cl-hero-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

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

.cl-hero-sub {
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.cl-products-section {
  background: #f5f5f5;
  padding: 24px 0 42px;
}

.cl-subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.cl-subcategory-chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cl-subcategory-chip:hover {
  border-color: #f7cf04;
  background: #fffbeb;
  text-decoration: none;
}

.cl-brand-bar-section {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}

.cl-brand-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.cl-brand-bar::-webkit-scrollbar {
  display: none;
}

.cl-brand-tab {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cl-brand-tab:hover {
  border-color: #f7cf04;
  background: #fffbeb;
  color: #111111;
  text-decoration: none;
}

.cl-brand-tab.is-active {
  background: #f7cf04;
  border-color: #e6bd00;
  color: #111111;
}

.cl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.cl-products-section .na-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.cl-products-section .na-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.cl-products-section .na-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--cl-yellow);
  color: var(--cl-black);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  line-height: 1;
}

.cl-products-section .na-badge--sold,
.cl-products-section .na-badge--soon {
  background: #bdbdbd;
  color: #ffffff;
}

.cl-products-section .na-img-link {
  display: block;
  text-decoration: none !important;
}

.cl-products-section .na-img-box {
  background: #f6f7f8;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

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

.cl-products-section .na-card:hover .na-img-box img {
  transform: scale(1.05);
}

.cl-products-section .na-body {
  padding: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cl-products-section .na-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.cl-products-section .na-name a,
.cl-products-section .na-name a:hover,
.cl-products-section .na-name a:visited,
.cl-products-section .na-name a:focus {
  color: var(--cl-black) !important;
  text-decoration: none !important;
}

.cl-products-section .na-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cl-products-section .na-price--old {
  font-size: 13px;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: 500;
}

.cl-products-section .na-price--new {
  font-size: 15px;
  font-weight: 800;
  color: var(--cl-black);
}

.cl-products-section .na-price--na {
  font-size: 13px;
  color: #aaaaaa;
  font-style: italic;
}

.cl-products-section .na-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px 14px;
  margin-top: auto;
}

.cl-products-section .na-actions .na-btn,
.cl-products-section .na-actions .buy-button {
  min-width: 0;
  height: 38px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-decoration: none !important;
  padding: 0 8px;
  box-sizing: border-box;
  appearance: none;
}

.cl-products-section .na-actions .na-btn--cart {
  background: var(--cl-black);
  color: #ffffff !important;
  border: 1.5px solid var(--cl-black);
}

.cl-products-section .na-actions .na-btn--cart:hover {
  background: #2c2c2c;
  border-color: #2c2c2c;
  color: var(--cl-yellow) !important;
}

.cl-products-section .na-actions .na-btn--buy,
.cl-products-section .na-actions .buy-button {
  background: #ffffff;
  color: var(--cl-black) !important;
  border: 1.5px solid #d0d0d0;
}

.cl-products-section .na-actions .na-btn--buy:hover,
.cl-products-section .na-actions .buy-button:hover {
  border-color: var(--cl-yellow);
  background: #fffbe6;
}

.cl-products-section .na-actions .na-btn--details,
.cl-products-section .na-actions .na-btn--soldout {
  grid-column: 1 / -1;
  height: 38px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.cl-products-section .na-actions .na-btn--details {
  background: var(--cl-black);
  color: #ffffff !important;
  border: 1.5px solid var(--cl-black);
}

.cl-products-section .na-actions .na-btn--soldout {
  background: transparent;
  color: #bbbbbb !important;
  border: 1.5px solid #e8e8e8;
  cursor: not-allowed;
}

.cl-products-section .na-actions--single {
  grid-template-columns: 1fr;
}

.cl-empty {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
}

.cl-empty h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #111111;
}

.cl-empty p {
  margin: 0 auto 20px;
  max-width: 520px;
  color: #6b7280;
  line-height: 1.6;
}

.cl-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: #f7cf04;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 700;
}

.cl-empty-btn:hover {
  background: #e6bd00;
}

.cl-pagination-wrap {
  margin-top: 28px;
}

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

.cl-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
}

.cl-pagination a.active,
.cl-pagination a:hover {
  background: #f7cf04;
  border-color: #f7cf04;
  color: #111111;
}

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

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

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