/* Value + Collections Module
   Standalone, reusable and responsive brand-value / collection-index panel. */

.value-collections {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

/* —— Left: value proposition —— */
.value-collections__value {
  position: relative;
  padding: 46px 48px;
  background: var(--gray-50);
  border-right: 1px solid var(--line);
}

.value-collections__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--cta);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.value-collections__eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--cta);
}

.value-collections__value h2 {
  max-width: 420px;
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 650;
  letter-spacing: -.015em;
  margin-bottom: 16px;
}

.value-collections__value p {
  max-width: 440px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.value-collections__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.value-collections__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-collections__point-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cta-tint);
  color: var(--cta);
}

.value-collections__point-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-collections__point span {
  padding-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--anthracite);
}

/* —— Right: collection index —— */
.value-collections__list {
  display: flex;
  flex-direction: column;
  padding: 30px 34px;
}

.value-collections__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.value-collections__list-head span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.value-collections__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease;
}

.value-collections__item:last-child { border-bottom: 0; }

.value-collections__item:hover {
  padding-left: 6px;
}

.value-collections__thumb {
  position: relative;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}

.value-collections__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.value-collections__item:hover .value-collections__thumb img {
  transform: scale(1.08);
}

.value-collections__body { min-width: 0; flex: 1; }

.value-collections__body h3 {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 4px;
}

.value-collections__body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.value-collections__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cta);
}

.value-collections__link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}

.value-collections__item:hover .value-collections__link svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .value-collections { grid-template-columns: 1fr; }
  .value-collections__value {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 38px 34px;
  }
  .value-collections__list { padding: 26px 34px; }
}

@media (max-width: 560px) {
  .value-collections__value { padding: 30px 24px; }
  .value-collections__list { padding: 22px 24px; }
  .value-collections__item { gap: 14px; }
  .value-collections__thumb { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .value-collections__item,
  .value-collections__thumb img,
  .value-collections__link svg {
    transition: none;
  }
}
