/* Kana Box Shop V6: quick community join buttons */

.kana-v3-order-notice > div:not(.kana-v3-order-notice__actions) {
  flex: 1 1 auto;
  min-width: 0;
}

.kana-v3-order-notice__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  margin-left: auto;
}

.kana-v3-community-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 4rem;
  padding: .75rem 1.15rem;
  color: #fff;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(54, 42, 65, .14);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.kana-v3-community-button:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(54, 42, 65, .2);
}

.kana-v3-community-button svg {
  display: block;
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kana-v3-community-button--line {
  background: #06c755;
}

.kana-v3-community-button--discord {
  background: #5865f2;
}

@media screen and (max-width: 1199px) {
  .kana-v3-order-notice {
    flex-wrap: wrap;
  }

  .kana-v3-order-notice__actions {
    flex: 1 0 100%;
    width: 100%;
    margin: .3rem 0 0 5rem;
  }
}

@media screen and (max-width: 749px) {
  .kana-v3-order-notice__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .kana-v3-community-button {
    min-width: 0;
    padding: .75rem .8rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 380px) {
  .kana-v3-order-notice__actions {
    grid-template-columns: 1fr;
  }
}
