.cs-newarrivals {
  border: 1px solid #CBCBCB;
  background: #FFFFFF;
}

.cs-newarrivals-header {
  background: var(--cs-primary, #1B5FAE);
  padding: 14px 16px;
}

.cs-newarrivals-title {
  display: block;
  font-family: var(--cs-heading-font, 'Montserrat', sans-serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cs-newarrivals-list {
  display: flex;
  flex-direction: column;
}

.cs-newarrivals-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #EDEDED;
  text-decoration: none;
  transition: background-color .15s ease;
}

.cs-newarrivals-item:last-child {
  border-bottom: 0;
}

.cs-newarrivals-item:hover {
  background-color: #F5F8FC;
}

.cs-newarrivals-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid #CBCBCB;
  background: #F8F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cs-newarrivals-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cs-newarrivals-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cs-newarrivals-name {
  font-size: 13px;
  line-height: 1.35;
  color: var(--cs-gray, #4B4B4B);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-newarrivals-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--cs-accent, #F5821F);
}

.cs-newarrivals-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 15px;
  background: var(--cs-accent, #F5821F);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background-color .15s ease;
}

.cs-newarrivals-all:hover {
  background: var(--cs-accent-hover, #D66C0F);
  color: #FFFFFF;
}

.cs-newarrivals-arrow {
  font-size: 15px;
  line-height: 1;
}
