/**
 * shop_section.css — cream BG, centered intro + 3-column product cards.
 */

.ncm-shop {
  padding: clamp(3.750rem, calc(-0.536rem + 8.929vw), 7.500rem) 0;
  background-color: var(--clr-bg-warm);
  color: var(--clr-text);
  min-height: 1145px;
  overflow: hidden;
  padding-bottom: 0;
}

.ncm-shop__inner {
  display: flex;
  flex-direction: column;
  gap: 90px;
  align-items: center;
}

.ncm-shop__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 720px;
}

.ncm-shop__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin: 0;
}

.ncm-shop__subtitle {
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--clr-text);
  margin: 0;
}

.ncm-shop__description {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: var(--clr-text);
}

.ncm-shop__description p {
  margin: 0 0 16px;
}

.ncm-shop__cta {
  margin-top: 16px;
}

/* Cards */
.ncm-shop__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  justify-content: center;
  width: 100%;
  padding-bottom: 120px;
  border-bottom: 1px solid #2F3E3480;
}

.ncm-shop__card-li {
  overflow: hidden;
}

.ncm-shop__card {
	position: relative;
}

.ncm-shop__card-button {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 1;
	background: var(--clr-bg-dark);
	color: #E9DDCE;
	font-family: var(--ff-primary);
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	padding: 14px 22px;
	border-radius: 4px;
	transition: background-color 0.2s, transform 0.2s;
	box-sizing: border-box;
}

.ncm-shop__card {
	position: relative;
	display: block;
	width: 100%;
	height: 515px;
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--clr-bg-dark);
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;

}

a.ncm-shop__card:hover,
a.ncm-shop__card:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(47, 62, 52, 0.18);
}

.ncm-shop__card-img {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ncm-shop__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 6%;
  display: block;
}

.ncm-shop__card-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 5;
	display: inline-block;
	padding: 11px 16px;
	border-radius: 4px;
	background-color: var(--clr-white);
	color: var(--clr-text);
	font-family: var(--ff-primary);
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.ncm-shop__card {
	aspect-ratio: 3 / 4;
	height: auto;
}

.ncm-shop__card-img,
.ncm-shop__card-img img {
	width: 100%;
	height: 100%;
}

@media (max-width: 1024px) {
  .ncm-shop {

    min-height: auto;
  }
  .ncm-shop__cards {
    grid-template-columns: 1fr 1fr;
  }
  .ncm-shop__card {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .ncm-shop__title {
    font-size: 32px;
    line-height: 38px;
  }
  .ncm-shop__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
  .ncm-shop__description {
    font-size: 17px;
    line-height: 24px;
  }
  .ncm-shop__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ncm-shop__card {
    width: 100%;
    height: 480px;
  }
  .ncm-shop__inner {
    gap: 56px;
  }
}

@media (max-width: 400px) {
	.ncm-shop__cards {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 600px) {
	.ncm-shop__card-badge {
		top: 10px;
		left: 10px;
		font-size: 12px;
		line-height: normal;
		padding: 7px 10px;
	}

	.ncm-shop__card-button {
		left: 15px;
		right: 15px;
		bottom: 15px;
		padding: 10px;
		font-size: 16px;
		line-height: normal;
	}
}