/* JointWorld — filter panels, product grid, buy dialog, footer, custom pages. */

/* --------------------------------------------------------- panels ------- */

.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
  padding: 22px 0 0;
}

.panel {
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 26px 28px 28px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 700;
}

.panel-title svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 99px;
  background: var(--card-2);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.chip:hover {
  color: var(--text);
}

.chip-check {
  display: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.chip[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.13);
  color: var(--text);
}

.chip[aria-pressed="true"] .chip-check {
  display: block;
}

/* ----------------------------------------------------- product grid ----- */

.shop {
  padding: 34px 0 0;
}

.shop-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.shop-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.shop-count {
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--card-2);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted-2);
  font-size: 13px;
}

.badge-discount,
.badge-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 99px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.badge-discount {
  left: 14px;
  padding: 7px 13px;
  background: rgba(18, 20, 30, 0.86);
  color: var(--text);
  font-size: 13px;
}

.badge-label {
  right: 14px;
  max-width: calc(100% - 96px);
  padding: 7px 14px 7px 11px;
  background: rgba(58, 64, 84, 0.92);
  color: var(--text);
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 12px;
  padding: 18px 20px 20px;
}

.card-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.price-old {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  text-decoration: line-through;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-now {
  font-size: 19px;
  font-weight: 700;
}

.price-unit {
  color: var(--muted);
  font-size: 13px;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--card-2);
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.buy-btn svg {
  width: 19px;
  height: 19px;
}

.buy-btn:hover,
.buy-btn:focus-visible {
  background: var(--accent);
  color: #16181f;
}

.empty-state {
  padding: 70px 20px;
  border-radius: var(--radius);
  background: var(--card);
  color: var(--muted);
  text-align: center;
}

/* Falling-leaves overlay (the «Осень» site effect). Fixed, full viewport,
   click-through; below the buy dialog (z-60) so the form stays readable. */
.leaves-overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  overflow: hidden;
  pointer-events: none;
}

.leaves-overlay canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------- amount slider ------- */

/* Wide panel for the variable-amount product (рилики) above the grid.
   Mirrors the reference component: coin badge, custom drag slider with tick
   marks and a diamond thumb, Отдаете/Получаете columns, gradient button. */
.reliki {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.reliki-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Coin badge: gradient diamond with a lighter diamond behind it. */
.reliki-icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.reliki-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(240, 160, 32, 0.16);
  transform: rotate(45deg) scale(0.9);
}

.reliki-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  transform: rotate(45deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.reliki-icon span {
  transform: rotate(-45deg);
  font-size: 34px;
  line-height: 1;
  user-select: none;
}

.reliki-content {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.reliki-title {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.reliki-slider-block {
  margin: 16px 0 24px;
}

/* Над дорожкой осталось только количество — держим его справа, как и было
   при подписи слева. */
.reliki-slider-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.reliki-label {
  color: var(--muted);
  font-size: 14px;
}

.reliki-value {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

/* The drag slider: track + gradient fill + ticks + diamond thumb. */
.reliki-track {
  position: relative;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.reliki-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.reliki-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(to right, #fb923c, #fbbf24);
}

.reliki-ticks {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  pointer-events: none;
}

.reliki-tick {
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
}

.reliki-thumb {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.15s ease;
  cursor: grab;
}

.reliki-track:hover .reliki-thumb,
.reliki-track.is-dragging .reliki-thumb {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
}

.reliki-track.is-dragging .reliki-thumb {
  cursor: grabbing;
}

.reliki-thumb span {
  transform: rotate(-45deg);
  font-size: 12px;
  line-height: 1;
  user-select: none;
}

.reliki-divider {
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
}

/* Отдаете / Получаете — two centered columns with a divider between. */
.reliki-exchange {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.reliki-cell {
  text-align: center;
}

.reliki-cell-bordered {
  border-left: 1px solid var(--line);
}

.reliki-cell-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.reliki-cell-value {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
}

/* Buy button + agreement text. */
.reliki-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-shrink: 0;
}

.reliki-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 12px;
  background: linear-gradient(to right, #f97316, #f59e0b);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.reliki-buy-btn:hover,
.reliki-buy-btn:focus-visible {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.reliki-buy-arrow {
  display: inline-flex;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.reliki-buy-arrow svg {
  width: 20px;
  height: 20px;
}

.reliki-legal {
  margin: 0;
  max-width: 320px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.reliki-legal a {
  color: var(--accent);
}

.reliki-legal a:hover,
.reliki-legal a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .reliki {
    padding: 32px;
  }

  .reliki-icon-wrap {
    width: 112px;
    height: 112px;
  }

  .reliki-title {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .reliki-inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .reliki-actions {
    align-items: flex-end;
    width: auto;
  }

  .reliki-buy-btn {
    width: auto;
  }

  .reliki-legal {
    text-align: right;
  }
}

/* --------------------------------------------------------- dialog ------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 12, 18, 0.72);
  backdrop-filter: blur(3px);
}

.modal[hidden] {
  display: none;
}

.modal-box {
  width: 100%;
  max-width: 452px;
  max-height: 92vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  box-shadow: var(--shadow);
  padding: 26px 28px 28px;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-head h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.modal-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--card);
  color: var(--muted);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.field-error {
  margin: 6px 0 0;
  color: var(--red);
  font-size: 12.5px;
}

.coupon-row {
  display: flex;
  gap: 10px;
}

.coupon-row input {
  flex: 1 1 auto;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  background: var(--card-2);
  font-size: 14.5px;
  font-weight: 700;
  transition: filter 0.15s ease, background 0.15s ease;
}

.btn:hover:not(:disabled) {
  filter: brightness(1.15);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent);
  color: #16181f;
}

.btn-block {
  width: 100%;
}

.summary {
  margin: 4px 0 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--card);
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13.5px;
}

.summary-row + .summary-row {
  margin-top: 8px;
}

/* Строку скидки скрывает JS через hidden. Без этого правила она всё равно
   видна: display: flex выше в каскаде, чем [hidden] из стилей браузера. */
.summary-row[hidden] {
  display: none;
}

.summary-row.is-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

/* ------------------------------------------------------- согласия ------- */

/* Две обязательные галочки перед кнопкой заказа. Настоящий чекбокс спрятан,
   но не выключен: он остаётся фокусируемым и доступным скринридеру, а рисуем
   квадратик рядом. */
.consents {
  margin: 0 0 18px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.consent + .consent {
  margin-top: 11px;
}

.consent input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.consent-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  color: transparent;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.consent-box svg {
  width: 13px;
  height: 13px;
  transform: scale(0.4);
  transition: transform 0.16s ease;
}

.consent:hover .consent-box {
  border-color: var(--accent);
}

.consent input:checked + .consent-box {
  border-color: var(--accent);
  background: var(--accent);
  color: #16181f;
}

.consent input:checked + .consent-box svg {
  transform: scale(1);
}

.consent input:focus-visible + .consent-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-text {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

/* ------------------------------------------------------- анимации ------- */

/* Окно заказа появляется вместе с итогом: сначала само окно, затем — со
   сдвигом — сумма, согласия и кнопка. Класс is-open вешает JS при открытии и
   снимает при закрытии, поэтому анимация проигрывается каждый раз заново. */
@keyframes jw-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes jw-modal-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.965); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes jw-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes jw-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.modal.is-open {
  animation: jw-modal-fade 0.2s ease backwards;
}

.modal.is-open .modal-box {
  animation: jw-modal-pop 0.3s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Заливка backwards, а не both: она держит начальный кадр до старта, но после
   анимации свойства снова берутся из обычных правил. С both кнопка навсегда
   оставалась бы с opacity: 1 и не бледнела бы в выключенном состоянии. */
.modal.is-open .summary {
  animation: jw-reveal 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}

.modal.is-open .consents {
  animation: jw-reveal 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.17s backwards;
}

.modal.is-open .btn-block {
  animation: jw-reveal 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.23s backwards;
}

/* Пересчёт итога (количество, промокод) — короткий рывок на самой сумме. */
#sum-total {
  display: inline-block;
  transform-origin: right center;
}

#sum-total.is-bump {
  animation: jw-bump 0.32s ease;
}

@media (prefers-reduced-motion: reduce) {
  .modal.is-open,
  .modal.is-open .modal-box,
  .modal.is-open .summary,
  .modal.is-open .consents,
  .modal.is-open .btn-block,
  #sum-total.is-bump {
    animation: none;
  }
}

.notice {
  margin: 0 0 16px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.notice-error {
  background: rgba(255, 95, 109, 0.13);
  color: #ffb3ba;
}

.notice-ok {
  background: rgba(62, 207, 142, 0.13);
  color: #9ce8c6;
}

/* --------------------------------------------------------- footer ------- */

.site-footer {
  padding: 46px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 26px 34px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13.5px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-legal {
  width: 100%;
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 12.5px;
}

/* Copyright, INN and the public-offer document — one line on desktop. */
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 22px;
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* The legal documents stack, so a third one can be added without a reflow. */
.footer-docs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  color: var(--muted-2);
  font-size: 12.5px;
}

.footer-inn {
  color: var(--muted-2);
}

.footer-doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-doc svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-doc:hover,
.footer-doc:focus-visible {
  color: var(--accent);
}

/* Подпись в том же столбце, что и документы. Не ссылка, поэтому без иконки
   и без реакции на наведение — иначе выглядела бы нажимаемой. */
.footer-doc-text {
  color: var(--muted);
  font-size: 12.5px;
}

/* --------------------------------------------------- custom pages ------- */

.page-shell {
  padding: 40px 0 20px;
}

.page-header {
  margin-bottom: 26px;
}

.page-header h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
}

.page-header p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}

.page-content {
  padding: clamp(22px, 3vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--card);
  font-size: 15.5px;
  line-height: 1.65;
}

.page-content > :first-child {
  margin-top: 0;
}

.page-content > :last-child {
  margin-bottom: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin: 1.6em 0 0.6em;
  font-weight: 800;
  line-height: 1.25;
}

.page-content h2 {
  font-size: 24px;
}

.page-content h3 {
  font-size: 19px;
}

.page-content p {
  margin: 0 0 1em;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

.page-content li {
  margin-bottom: 0.4em;
}

.page-content a {
  color: var(--accent-2);
  text-decoration: underline;
}

.page-content blockquote {
  margin: 0 0 1em;
  padding: 12px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
}

.page-content pre {
  margin: 0 0 1em;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #14171f;
  overflow-x: auto;
}

.page-content code {
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.92em;
}

.page-content table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
  font-size: 14.5px;
}

.page-content th,
.page-content td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.page-content th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.page-content hr {
  margin: 1.6em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.page-content img {
  border-radius: var(--radius-sm);
  margin: 0 0 1em;
}

.ta-left {
  text-align: left;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-justify {
  text-align: justify;
}

.loading {
  padding: 60px 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
