@media (max-width: 767px) {
  html, body { overflow-x: clip; }

  .ck-buy { display: none !important; }

  .ck-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .ck-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
  }

  .ck-menu {
    position: absolute;
    z-index: 60;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    padding: 6px 12px 14px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  }

  .ck-menu.is-open { display: flex; }

  .ck-menu a {
    display: block;
    padding: 14px 10px;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  header nav { gap: 12px; }
}

@media (min-width: 768px) {
  .ck-burger,
  .ck-menu { display: none !important; }
}
