/* css/emboss.css */

/* ─── HERO ─── */
.emb-hero {
  background: var(--surface);
  padding: 40px 0;
}

.emb-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.emb-hero__body {
  flex: 1 1 0;
  min-width: 0;
}

.emb-hero__img-wrap {
  flex: 0 0 54%;
  max-width: 580px;
}

.emb-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.emb-hero__title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.emb-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.emb-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emb-hero__list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.emb-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.emb-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── ПРОЦЕСС ─── */
.emb-process {
  padding: 0 0 40px;
}

.emb-process__card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background-image: url('/myimage/maticabossed.png');
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.emb-process__overlay {
  width: 100%;
  padding: 40px 56px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.10) 100%
  );
}

.emb-process__title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.emb-process__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 640px;
}

/* ─── ВИДЫ И ЦВЕТА ─── */
.emb-types {
  padding: 0 0 40px;
}

.emb-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.emb-types__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}


.emb-types__font-img {
  width: auto;
  height: 125px;
  display: block;
  margin-bottom: 16px;
}

.emb-types__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.emb-types__note {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: var(--surface);
  border-radius: 6px;
  padding: 4px 10px;
}

/* Карточка цветов окраски */
.emb-types__colors-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.emb-types__swatches {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.emb-swatch {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emb-swatch__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.emb-swatch--gold   .emb-swatch__dot { background: linear-gradient(135deg, #f5c842, #b8860b); }
.emb-swatch--silver .emb-swatch__dot { background: linear-gradient(135deg, #e8e8e8, #9e9e9e); }
.emb-swatch--black  .emb-swatch__dot { background: #1a1a1a; }
.emb-swatch--none   .emb-swatch__dot { background: var(--surface); border: 2px dashed #bbb; }

.emb-swatch__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .emb-hero__card       { padding: 36px 32px; gap: 32px; flex-direction: column; }
  .emb-hero__img-wrap   { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .emb-process__overlay { padding: 32px 32px; }
}

@media (max-width: 860px) {
  .emb-types__grid {
    grid-template-columns: 1fr 1fr;
  }

  .emb-types__card--colors {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .emb-hero__card       { padding: 28px 24px; flex-direction: column; }
  .emb-hero__img-wrap   { flex: none; width: 100%; max-width: 300px; margin: 0 auto; }
  .emb-process__overlay { padding: 28px 24px; }

  .emb-hero__btns { flex-direction: column; }
  .emb-hero__btns .btn { width: 100%; text-align: center; }

  .emb-types__grid { grid-template-columns: 1fr; }
  .emb-types__card--colors { grid-column: auto; }
}
