.new-arrived-content {
  background: var(--color-gray-100);
  border-bottom: 1.5px solid var(--color-gray-300);
}

.new-arrived-content-title {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2% 20px;
  box-sizing: border-box;
}

.new-arrived-content-title h2 {
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 3px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding-top: 10px;
}

.new-arrived-content-title h1,
.new-arrived-content-title .section-lead {
  font-weight: 700;
  color: var(--color-black);
  font-family: var(--font-body);
}

.new-arrived-content-button {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2% 20px;
  box-sizing: border-box;
}

.new-arrived-content-button a {
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-orange);
  font-size: small;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
}

.new-arrived-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;

}

.new-arrived-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.new-arrived-card {
  width: 285px;
  max-width: 100%;
  height: 370px;
  flex-shrink: 0;
  border: 1px solid var(--color-gray-300, #ccc);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}



.card-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.card-img img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.new-arrived-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  border-radius: 0px 0px 15px 15px;
  background-color: var(--color-white);
  height: 110px;
  z-index: 2;
}

.new-arrived-card-info h1,
.new-arrived-card-info h2 {
  font-weight: 700;
  font-size: 1.1rem;
}

.new-arrived-card-info label,
.new-arrived-card-info .card-brand {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gray-600);
}

.new-arrived-card-info p {
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

.card-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff6a00;
  padding: 3px 5px;
  color: var(--color-white);
  border-radius: 5px;
  z-index: 3;
}

.new-arrived-card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-color: #0a0a0a;
  transform: scale(1.05);
}

.new-arrived-card:hover .card-img img {
  transform: scale(1.1);
}

.link-card {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  align-items: center;
  z-index: 3;
}

.link-card label,
.link-card span {
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
}

.link-card:hover {
  color: var(--color-orange);
}

@media (max-width: 900px) {

  .new-arrived-content-title,
  .new-arrived-content-button {
    align-items: center;
    text-align: center;
  }
}