.welcome {
    text-align: center;
    color: rgba(0, 0, 0, .7);
}

.welcome h1 {
    font-size: 2rem;
    margin: 0;
}

.welcome a {
    height: 2rem;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    margin: 2rem auto;
    text-decoration: none;
    color: inherit;
}

.welcome svg {
    height: 2rem;
    width: 2rem;
    margin-left: .5rem;
}

.goods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: 68rem;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
}

.good {
    box-sizing: border-box;
    width: 23%;
    display: inline-block;
    background-color: #fff;
    text-align: center;
    border-radius: .25rem;
    margin: 1rem auto;
}

@media all and (max-width: 68rem) {
    .good {
        width: 30%;
    }
}

@media all and (max-width: 50rem) {
    .good {
        width: 45%;
    }
}

@media all and (max-width: 40rem) {
    .good {
        width: 90%;
    }
}

.good__header {
    background-color: #efefef;
    padding: 1rem;
    line-height: 1;
    border-radius: .25rem .25rem 0 0;
}

.good__header h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1rem;
}

.good__header p {
    margin: .5rem 0 0;
    font-size: .875rem;
    color: rgba(0, 0, 0, .6);
}

.good__body {
    padding: 1rem;
}

.good img {
    width: 150px;
}

.good__price {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, .7);
    margin: 1rem 0;
}

.good button {
    border: none;
    padding: .75rem 1rem;
    text-transform: uppercase;
    font-family: inherit;
    font-size: .875rem;
    color: #fff;
    background-color: #ff6c86;
    border-radius: .25rem;
    width: 100%;
    cursor: pointer;
    outline: none;
    transition: opacity .2s;
}

.good button:hover {
    opacity: .85;
}

.good button:active {
    -ms-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
/* === FIX: нижняя полоска (copy) — ровно в ряд + адаптив === */
.copy .row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copy .col-sm-6 {
  flex: 1 1 50%;
}

.copy .col-sm-6:last-child {
  display: flex;
  justify-content: flex-end;
}

.copy .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  text-align: right;
}

.copy .footer-links .pol {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.copy .footer-links .pol:hover {
  text-decoration: underline;
}

/* Мобилка: копирайт сверху, ссылки ниже слева */
@media (max-width: 575px) {
  .copy .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .copy .col-sm-6 {
    flex: 1 1 100%;
  }

  .copy .col-sm-6:last-child {
    justify-content: flex-start;
  }

  .copy .footer-links {
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
  }
}